Class: Aws::SNS::Types::Tag

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sns/types.rb

Overview

The list of tags to be added to the specified topic.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The required key portion of the tag.

Returns:

  • (String)


2913
2914
2915
2916
2917
2918
# File 'lib/aws-sdk-sns/types.rb', line 2913

class Tag < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The optional value portion of the tag.

Returns:

  • (String)


2913
2914
2915
2916
2917
2918
# File 'lib/aws-sdk-sns/types.rb', line 2913

class Tag < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end