Class: Aws::States::Types::TagResourceInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::TagResourceInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) for the Step Functions state machine or activity.
-
#tags ⇒ Array<Types::Tag>
The list of tags to add to a resource.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) for the Step Functions state machine or activity.
3960 3961 3962 3963 3964 3965 |
# File 'lib/aws-sdk-states/types.rb', line 3960 class TagResourceInput < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The list of tags to add to a resource.
Tags may only contain Unicode letters, digits, white space, or these symbols: ‘_ . : / = + - @`.
3960 3961 3962 3963 3964 3965 |
# File 'lib/aws-sdk-states/types.rb', line 3960 class TagResourceInput < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |