2019/08/20 - Alexa For Business - 4 updated api methods
Changes Update alexaforbusiness client to latest version
{'Locale': 'string'}
Creates a new room profile with the specified details.
See also: AWS API Documentation
Request Syntax
client.create_profile( ProfileName='string', Timezone='string', Address='string', DistanceUnit='METRIC'|'IMPERIAL', TemperatureUnit='FAHRENHEIT'|'CELSIUS', WakeWord='ALEXA'|'AMAZON'|'ECHO'|'COMPUTER', Locale='string', ClientRequestToken='string', SetupModeDisabled=True|False, MaxVolumeLimit=123, PSTNEnabled=True|False )
string
[REQUIRED]
The name of a room profile.
string
[REQUIRED]
The time zone used by a room profile.
string
[REQUIRED]
The valid address for the room.
string
[REQUIRED]
The distance unit to be used by devices in the profile.
string
[REQUIRED]
The temperature unit to be used by devices in the profile.
string
[REQUIRED]
A wake word for Alexa, Echo, Amazon, or a computer.
string
The locale of the room profile.
string
The user-specified token that is used during the creation of a profile.
This field is autopopulated if not provided.
boolean
Whether room profile setup is enabled.
integer
The maximum volume limit for a room profile.
boolean
Whether PSTN calling is enabled.
dict
Response Syntax
{ 'ProfileArn': 'string' }
Response Structure
(dict) --
ProfileArn (string) --
The ARN of the newly created room profile in the response.
{'Profile': {'Locale': 'string'}}
Gets the details of a room profile by profile ARN.
See also: AWS API Documentation
Request Syntax
client.get_profile( ProfileArn='string' )
string
The ARN of the room profile for which to request details. Required.
dict
Response Syntax
{ 'Profile': { 'ProfileArn': 'string', 'ProfileName': 'string', 'IsDefault': True|False, 'Address': 'string', 'Timezone': 'string', 'DistanceUnit': 'METRIC'|'IMPERIAL', 'TemperatureUnit': 'FAHRENHEIT'|'CELSIUS', 'WakeWord': 'ALEXA'|'AMAZON'|'ECHO'|'COMPUTER', 'Locale': 'string', 'SetupModeDisabled': True|False, 'MaxVolumeLimit': 123, 'PSTNEnabled': True|False, 'AddressBookArn': 'string' } }
Response Structure
(dict) --
Profile (dict) --
The details of the room profile requested. Required.
ProfileArn (string) --
The ARN of a room profile.
ProfileName (string) --
The name of a room profile.
IsDefault (boolean) --
Retrieves if the profile is default or not.
Address (string) --
The address of a room profile.
Timezone (string) --
The time zone of a room profile.
DistanceUnit (string) --
The distance unit of a room profile.
TemperatureUnit (string) --
The temperature unit of a room profile.
WakeWord (string) --
The wake word of a room profile.
Locale (string) --
The locale of a room profile.
SetupModeDisabled (boolean) --
The setup mode of a room profile.
MaxVolumeLimit (integer) --
The max volume limit of a room profile.
PSTNEnabled (boolean) --
The PSTN setting of a room profile.
AddressBookArn (string) --
The ARN of the address book.
{'Profiles': {'Locale': 'string'}}
Searches room profiles and lists the ones that meet a set of filter criteria.
See also: AWS API Documentation
Request Syntax
client.search_profiles( NextToken='string', MaxResults=123, Filters=[ { 'Key': 'string', 'Values': [ 'string', ] }, ], SortCriteria=[ { 'Key': 'string', 'Value': 'ASC'|'DESC' }, ] )
string
An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults.
integer
The maximum number of results to include in the response. If more results exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.
list
The filters to use to list a specified set of room profiles. Supported filter keys are ProfileName and Address. Required.
(dict) --
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.
Key (string) -- [REQUIRED]
The key of a filter.
Values (list) -- [REQUIRED]
The values of a filter.
(string) --
list
The sort order to use in listing the specified set of room profiles. Supported sort keys are ProfileName and Address.
(dict) --
An object representing a sort criteria.
Key (string) -- [REQUIRED]
The sort key of a sort object.
Value (string) -- [REQUIRED]
The sort value of a sort object.
dict
Response Syntax
{ 'Profiles': [ { 'ProfileArn': 'string', 'ProfileName': 'string', 'IsDefault': True|False, 'Address': 'string', 'Timezone': 'string', 'DistanceUnit': 'METRIC'|'IMPERIAL', 'TemperatureUnit': 'FAHRENHEIT'|'CELSIUS', 'WakeWord': 'ALEXA'|'AMAZON'|'ECHO'|'COMPUTER', 'Locale': 'string' }, ], 'NextToken': 'string', 'TotalCount': 123 }
Response Structure
(dict) --
Profiles (list) --
The profiles that meet the specified set of filter criteria, in sort order.
(dict) --
The data of a room profile.
ProfileArn (string) --
The ARN of a room profile.
ProfileName (string) --
The name of a room profile.
IsDefault (boolean) --
Retrieves if the profile data is default or not.
Address (string) --
The address of a room profile.
Timezone (string) --
The timezone of a room profile.
DistanceUnit (string) --
The distance unit of a room profile.
TemperatureUnit (string) --
The temperature unit of a room profile.
WakeWord (string) --
The wake word of a room profile.
Locale (string) --
The locale of a room profile.
NextToken (string) --
The token returned to indicate that there is more data available.
TotalCount (integer) --
The total number of room profiles returned.
{'Locale': 'string'}
Updates an existing room profile by room profile ARN.
See also: AWS API Documentation
Request Syntax
client.update_profile( ProfileArn='string', ProfileName='string', IsDefault=True|False, Timezone='string', Address='string', DistanceUnit='METRIC'|'IMPERIAL', TemperatureUnit='FAHRENHEIT'|'CELSIUS', WakeWord='ALEXA'|'AMAZON'|'ECHO'|'COMPUTER', Locale='string', SetupModeDisabled=True|False, MaxVolumeLimit=123, PSTNEnabled=True|False )
string
The ARN of the room profile to update. Required.
string
The updated name for the room profile.
boolean
Sets the profile as default if selected. If this is missing, no update is done to the default status.
string
The updated timezone for the room profile.
string
The updated address for the room profile.
string
The updated distance unit for the room profile.
string
The updated temperature unit for the room profile.
string
The updated wake word for the room profile.
string
The updated locale for the room profile.
boolean
Whether the setup mode of the profile is enabled.
integer
The updated maximum volume limit for the room profile.
boolean
Whether the PSTN setting of the room profile is enabled.
dict
Response Syntax
{}
Response Structure
(dict) --