Class: Aws::SWF::Types::ResourceTag
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::ResourceTag
- Defined in:
- gems/aws-sdk-swf/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
-
#key ⇒ String
The key of a tag.
-
#value ⇒ String
The value of a tag.
Instance Attribute Details
#key ⇒ String
The key of a tag.
4107 4108 4109 4110 4111 4112 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 4107 class ResourceTag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of a tag.
4107 4108 4109 4110 4111 4112 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 4107 class ResourceTag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |