Class: Aws::FSx::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::TagResourceRequest
- Defined in:
- gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb
Overview
Note:
When making an API call, you may pass TagResourceRequest data as a hash:
{
resource_arn: "ResourceARN", # required
tags: [ # required
{
key: "TagKey", # required
value: "TagValue", # required
},
],
}
The request object for the TagResource
operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the Amazon FSx resource that you want to tag.
-
#tags ⇒ Array<Types::Tag>
A list of tags for the resource.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the Amazon FSx resource that you want to tag.
7470 7471 7472 7473 7474 7475 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 7470 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of tags for the resource. If a tag with a given key already exists, the value is replaced by the one specified in this parameter.
7470 7471 7472 7473 7474 7475 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 7470 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |