Class: Aws::AlexaForBusiness::Types::MeetingSetting

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

Overview

Note:

When making an API call, you may pass MeetingSetting data as a hash:

{
  require_pin: "YES", # required, accepts YES, NO, OPTIONAL
}

The values that indicate whether a pin is always required (YES), never required (NO), or OPTIONAL.

  • If YES, Alexa will always ask for a meeting pin.

  • If NO, Alexa will never ask for a meeting pin.

  • If OPTIONAL, Alexa will ask if you have a meeting pin and if the customer responds with yes, it will ask for the meeting pin.

Instance Attribute Summary collapse

Instance Attribute Details

#require_pinString

The values that indicate whether the pin is always required.

Returns:

  • (String)


2389
2390
2391
2392
# File 'lib/aws-sdk-alexaforbusiness/types.rb', line 2389

class MeetingSetting < Struct.new(
  :require_pin)
  include Aws::Structure
end