Class: Aws::MemoryDB::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MemoryDB::Types::TagResourceRequest
- Defined in:
- gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the resource to which the tags are to be added.
-
#tags ⇒ Array<Types::Tag>
A list of tags to be added to this resource.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the resource to which the tags are to be added
2943 2944 2945 2946 2947 2948 |
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 2943 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
2943 2944 2945 2946 2947 2948 |
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 2943 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |