AlexaForBusiness / Client / get_room_skill_parameter

get_room_skill_parameter#

AlexaForBusiness.Client.get_room_skill_parameter(**kwargs)#

Gets room skill parameter details by room, skill, and parameter key ARN.

Danger

This operation is deprecated and may not function as expected. This operation should not be used going forward and is only kept for the purpose of backwards compatiblity.

See also: AWS API Documentation

Request Syntax

response = client.get_room_skill_parameter(
    RoomArn='string',
    SkillId='string',
    ParameterKey='string'
)
Parameters:
  • RoomArn (string) – The ARN of the room from which to get the room skill parameter details.

  • SkillId (string) –

    [REQUIRED]

    The ARN of the skill from which to get the room skill parameter details. Required.

  • ParameterKey (string) –

    [REQUIRED]

    The room skill parameter key for which to get details. Required.

Return type:

dict

Returns:

Response Syntax

{
    'RoomSkillParameter': {
        'ParameterKey': 'string',
        'ParameterValue': 'string'
    }
}

Response Structure

  • (dict) –

    • RoomSkillParameter (dict) –

      The details of the room skill parameter requested. Required.

      • ParameterKey (string) –

        The parameter key of a room skill parameter. ParameterKey is an enumerated type that only takes “DEFAULT” or “SCOPE” as valid values.

      • ParameterValue (string) –

        The parameter value of a room skill parameter.

Exceptions