send_announcement
(**kwargs)¶Triggers an asynchronous flow to send text, SSML, or audio announcements to rooms that are identified by a search or filter.
See also: AWS API Documentation
Request Syntax
response = client.send_announcement(
RoomFilters=[
{
'Key': 'string',
'Values': [
'string',
]
},
],
Content={
'TextList': [
{
'Locale': 'en-US',
'Value': 'string'
},
],
'SsmlList': [
{
'Locale': 'en-US',
'Value': 'string'
},
],
'AudioList': [
{
'Locale': 'en-US',
'Location': 'string'
},
]
},
TimeToLiveInSeconds=123,
ClientRequestToken='string'
)
[REQUIRED]
The filters to use to send an announcement to a specified list of rooms. The supported filter keys are RoomName, ProfileName, RoomArn, and ProfileArn. To send to all rooms, specify an empty RoomFilters list.
A filter name and value pair that is used to return a more specific list of results. Filters can be used to match a set of resources by various criteria.
The key of a filter.
The values of a filter.
[REQUIRED]
The announcement content. This can contain only one of the three possible announcement types (text, SSML or audio).
The list of text messages.
The text message.
The locale of the text message. Currently, en-US is supported.
The value of the text message.
The list of SSML messages.
The SSML message. For more information, see SSML Reference.
The locale of the SSML message. Currently, en-US is supported.
The value of the SSML message in the correct SSML format. The audio tag is not supported.
The list of audio messages.
The audio message. There is a 1 MB limit on the audio file input and the only supported format is MP3. To convert your MP3 audio files to an Alexa-friendly,
required codec version (MPEG version 2) and bit rate (48 kbps), you might use converter software. One option for this is a command-line tool, FFmpeg. For more information, see FFmpeg. The following command converts the provided <input-file> to an MP3 file that is played in the announcement:
ffmpeg -i <input-file> -ac 2 -codec:a libmp3lame -b:a 48k -ar 16000 <output-file.mp3>
The locale of the audio message. Currently, en-US is supported.
The location of the audio file. Currently, S3 URLs are supported. Only S3 locations comprised of safe characters are valid. For more information, see Safe Characters.
[REQUIRED]
The unique, user-specified identifier for the request that ensures idempotency.
This field is autopopulated if not provided.
dict
Response Syntax
{
'AnnouncementArn': 'string'
}
Response Structure
(dict) --
AnnouncementArn (string) --
The identifier of the announcement.
Exceptions
AlexaForBusiness.Client.exceptions.LimitExceededException
AlexaForBusiness.Client.exceptions.AlreadyExistsException