Class: Aws::Chime::Types::MeetingNotificationConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Chime::Types::MeetingNotificationConfiguration
- Defined in:
- gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb
Overview
Note:
When making an API call, you may pass MeetingNotificationConfiguration data as a hash:
{
sns_topic_arn: "Arn",
sqs_queue_arn: "Arn",
}
The resource target configurations for receiving Amazon Chime SDK
meeting and attendee event notifications. The Amazon Chime SDK
supports resource targets located in the US East (N. Virginia) AWS
Region (us-east-1
).
Constant Summary collapse
- SENSITIVE =
[:sns_topic_arn, :sqs_queue_arn]
Instance Attribute Summary collapse
-
#sns_topic_arn ⇒ String
The SNS topic ARN.
-
#sqs_queue_arn ⇒ String
The SQS queue ARN.
Instance Attribute Details
#sns_topic_arn ⇒ String
The SNS topic ARN.
7516 7517 7518 7519 7520 7521 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 7516 class MeetingNotificationConfiguration < Struct.new( :sns_topic_arn, :sqs_queue_arn) SENSITIVE = [:sns_topic_arn, :sqs_queue_arn] include Aws::Structure end |
#sqs_queue_arn ⇒ String
The SQS queue ARN.
7516 7517 7518 7519 7520 7521 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 7516 class MeetingNotificationConfiguration < Struct.new( :sns_topic_arn, :sqs_queue_arn) SENSITIVE = [:sns_topic_arn, :sqs_queue_arn] include Aws::Structure end |