Class: Aws::DynamoDB::Types::TagResourceInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::TagResourceInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dynamodb/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
Identifies the Amazon DynamoDB resource to which tags should be added.
-
#tags ⇒ Array<Types::Tag>
The tags to be assigned to the Amazon DynamoDB resource.
Instance Attribute Details
#resource_arn ⇒ String
Identifies the Amazon DynamoDB resource to which tags should be added. This value is an Amazon Resource Name (ARN).
9033 9034 9035 9036 9037 9038 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 9033 class TagResourceInput < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The tags to be assigned to the Amazon DynamoDB resource.
9033 9034 9035 9036 9037 9038 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 9033 class TagResourceInput < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |