Class: Aws::AlexaForBusiness::Types::RoomSkillParameter

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb

Overview

A skill parameter associated with a room.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#parameter_keyString

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

Returns:

  • (String)


3789
3790
3791
3792
3793
3794
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 3789

class RoomSkillParameter < Struct.new(
  :parameter_key,
  :parameter_value)
  SENSITIVE = []
  include Aws::Structure
end

#parameter_valueString

The parameter value of a room skill parameter.

Returns:

  • (String)


3789
3790
3791
3792
3793
3794
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 3789

class RoomSkillParameter < Struct.new(
  :parameter_key,
  :parameter_value)
  SENSITIVE = []
  include Aws::Structure
end