Class: Aws::SMS::Types::Tag

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

Overview

Key/value pair that can be assigned to an application.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The tag key.

Returns:

  • (String)


1959
1960
1961
1962
1963
1964
# File 'lib/aws-sdk-sms/types.rb', line 1959

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

#valueString

The tag value.

Returns:

  • (String)


1959
1960
1961
1962
1963
1964
# File 'lib/aws-sdk-sms/types.rb', line 1959

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