Class: Aws::SNS::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SNS::Types::TagResourceRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sns/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The ARN of the topic to which to add tags.
-
#tags ⇒ Array<Types::Tag>
The tags to be added to the specified topic.
Instance Attribute Details
#resource_arn ⇒ String
The ARN of the topic to which to add tags.
2957 2958 2959 2960 2961 2962 |
# File 'lib/aws-sdk-sns/types.rb', line 2957 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The tags to be added to the specified topic. A tag consists of a required key and an optional value.
2957 2958 2959 2960 2961 2962 |
# File 'lib/aws-sdk-sns/types.rb', line 2957 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |