Class: Aws::Chime::Types::CreateMeetingRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Chime::Types::CreateMeetingRequest
- Defined in:
- gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb
Overview
When making an API call, you may pass CreateMeetingRequest data as a hash:
{
client_request_token: "ClientRequestToken", # required
external_meeting_id: "ExternalMeetingIdType",
meeting_host_id: "ExternalUserIdType",
media_region: "String",
tags: [
{
key: "TagKey", # required
value: "TagValue", # required
},
],
notifications_configuration: {
sns_topic_arn: "Arn",
sqs_queue_arn: "Arn",
},
}
Constant Summary collapse
- SENSITIVE =
[:client_request_token, :external_meeting_id, :meeting_host_id]
Instance Attribute Summary collapse
-
#client_request_token ⇒ String
The unique identifier for the client request.
-
#external_meeting_id ⇒ String
The external meeting ID.
-
#media_region ⇒ String
The Region in which to create the meeting.
-
#meeting_host_id ⇒ String
Reserved.
-
#notifications_configuration ⇒ Types::MeetingNotificationConfiguration
The configuration for resource targets to receive notifications when meeting and attendee events occur.
-
#tags ⇒ Array<Types::Tag>
The tag key-value pairs.
Instance Attribute Details
#client_request_token ⇒ String
The unique identifier for the client request. Use a different token for different meetings.
A suitable default value is auto-generated. You should normally not need to pass this option.
2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 2573 class CreateMeetingRequest < Struct.new( :client_request_token, :external_meeting_id, :meeting_host_id, :media_region, :tags, :notifications_configuration) SENSITIVE = [:client_request_token, :external_meeting_id, :meeting_host_id] include Aws::Structure end |
#external_meeting_id ⇒ String
The external meeting ID.
2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 2573 class CreateMeetingRequest < Struct.new( :client_request_token, :external_meeting_id, :meeting_host_id, :media_region, :tags, :notifications_configuration) SENSITIVE = [:client_request_token, :external_meeting_id, :meeting_host_id] include Aws::Structure end |
#media_region ⇒ String
The Region in which to create the meeting. Default: us-east-1
.
Available values: af-south-1
, ap-northeast-1
, ap-northeast-2
, ap-south-1
, ap-southeast-1
, ap-southeast-2
,
ca-central-1
, eu-central-1
, eu-north-1
, eu-south-1
,
eu-west-1
, eu-west-2
, eu-west-3
, sa-east-1
, us-east-1
, us-east-2
, us-west-1
, us-west-2
.
2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 2573 class CreateMeetingRequest < Struct.new( :client_request_token, :external_meeting_id, :meeting_host_id, :media_region, :tags, :notifications_configuration) SENSITIVE = [:client_request_token, :external_meeting_id, :meeting_host_id] include Aws::Structure end |
#meeting_host_id ⇒ String
Reserved.
2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 2573 class CreateMeetingRequest < Struct.new( :client_request_token, :external_meeting_id, :meeting_host_id, :media_region, :tags, :notifications_configuration) SENSITIVE = [:client_request_token, :external_meeting_id, :meeting_host_id] include Aws::Structure end |
#notifications_configuration ⇒ Types::MeetingNotificationConfiguration
The configuration for resource targets to receive notifications when meeting and attendee events occur.
2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 2573 class CreateMeetingRequest < Struct.new( :client_request_token, :external_meeting_id, :meeting_host_id, :media_region, :tags, :notifications_configuration) SENSITIVE = [:client_request_token, :external_meeting_id, :meeting_host_id] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The tag key-value pairs.
2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 2573 class CreateMeetingRequest < Struct.new( :client_request_token, :external_meeting_id, :meeting_host_id, :media_region, :tags, :notifications_configuration) SENSITIVE = [:client_request_token, :external_meeting_id, :meeting_host_id] include Aws::Structure end |