Skip to main content

sip_media_application_alexa_skill_configurations

Creates, updates, deletes, gets or lists a sip_media_application_alexa_skill_configurations resource.

Overview

Namesip_media_application_alexa_skill_configurations
TypeResource
Idaws.chime_sdk_voice.sip_media_application_alexa_skill_configurations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
alexa_skill_idsarrayThe ID of the Alexa Skill configuration.
alexa_skill_statusstringThe status of the Alexa Skill configuration. (ACTIVE, INACTIVE)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_sip_media_application_alexa_skill_configurationselectsip_media_application_id, regionGets the Alexa Skill configuration for the SIP media application. Due to changes made by the Amazon Alexa service, this API is no longer available for use. For more information, refer to the Alexa Smart Properties page.
put_sip_media_application_alexa_skill_configurationreplacesip_media_application_id, regionUpdates the Alexa Skill configuration for the SIP media application. Due to changes made by the Amazon Alexa service, this API is no longer available for use. For more information, refer to the Alexa Smart Properties page.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
sip_media_application_idstringThe SIP media application ID.

SELECT examples

Gets the Alexa Skill configuration for the SIP media application. Due to changes made by the Amazon Alexa service, this API is no longer available for use. For more information, refer to the Alexa Smart Properties page.

SELECT
alexa_skill_ids,
alexa_skill_status
FROM aws.chime_sdk_voice.sip_media_application_alexa_skill_configurations
WHERE sip_media_application_id = '{{ sip_media_application_id }}' -- required
AND region = '{{ region }}' -- required
;

REPLACE examples

Updates the Alexa Skill configuration for the SIP media application. Due to changes made by the Amazon Alexa service, this API is no longer available for use. For more information, refer to the Alexa Smart Properties page.

REPLACE aws.chime_sdk_voice.sip_media_application_alexa_skill_configurations
SET
SipMediaApplicationAlexaSkillConfiguration = '{{ SipMediaApplicationAlexaSkillConfiguration }}'
WHERE
sip_media_application_id = '{{ sip_media_application_id }}' --required
AND region = '{{ region }}' --required
RETURNING
sip_media_application_alexa_skill_configuration;