Class: Aws::SNS::Types::DeleteTopicInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SNS::Types::DeleteTopicInput
- Defined in:
- gems/aws-sdk-sns/lib/aws-sdk-sns/types.rb
Overview
Note:
When making an API call, you may pass DeleteTopicInput data as a hash:
{
topic_arn: "topicARN", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#topic_arn ⇒ String
The ARN of the topic you want to delete.
Instance Attribute Details
#topic_arn ⇒ String
The ARN of the topic you want to delete.
473 474 475 476 477 |
# File 'gems/aws-sdk-sns/lib/aws-sdk-sns/types.rb', line 473 class DeleteTopicInput < Struct.new( :topic_arn) SENSITIVE = [] include Aws::Structure end |