Class: Aws::SWF::Types::ResourceTag

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

Overview

Tags are key-value pairs that can be associated with Amazon SWF state machines and activities.

Tags may only contain unicode letters, digits, whitespace, or these symbols: ‘_ . : / = + - @`.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key of a tag.

Returns:

  • (String)


4077
4078
4079
4080
4081
4082
# File 'lib/aws-sdk-swf/types.rb', line 4077

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

#valueString

The value of a tag.

Returns:

  • (String)


4077
4078
4079
4080
4081
4082
# File 'lib/aws-sdk-swf/types.rb', line 4077

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