Class: Aws::PinpointSMSVoiceV2::Types::SnsDestination
- Inherits:
-
Struct
- Object
- Struct
- Aws::PinpointSMSVoiceV2::Types::SnsDestination
- Defined in:
- gems/aws-sdk-pinpointsmsvoicev2/lib/aws-sdk-pinpointsmsvoicev2/types.rb
Overview
Note:
When making an API call, you may pass SnsDestination data as a hash:
{
topic_arn: "SnsTopicArn", # required
}
An object that defines an Amazon SNS destination for events. You can use Amazon SNS to send notification when certain events occur.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#topic_arn ⇒ String
The Amazon Resource Name (ARN) of the Amazon SNS topic that you want to publish events to.
Instance Attribute Details
#topic_arn ⇒ String
The Amazon Resource Name (ARN) of the Amazon SNS topic that you want to publish events to.
3554 3555 3556 3557 3558 |
# File 'gems/aws-sdk-pinpointsmsvoicev2/lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 3554 class SnsDestination < Struct.new( :topic_arn) SENSITIVE = [] include Aws::Structure end |