Class: Aws::EFS::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EFS::Types::TagResourceRequest
- Defined in:
- gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb
Overview
Note:
When making an API call, you may pass TagResourceRequest data as a hash:
{
resource_id: "ResourceId", # required
tags: [ # required
{
key: "TagKey", # required
value: "TagValue", # required
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_id ⇒ String
The ID specifying the EFS resource that you want to create a tag for.
-
#tags ⇒ Array<Types::Tag>
An array of
Tag
objects to add.
Instance Attribute Details
#resource_id ⇒ String
The ID specifying the EFS resource that you want to create a tag for.
2744 2745 2746 2747 2748 2749 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 2744 class TagResourceRequest < Struct.new( :resource_id, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
An array of Tag
objects to add. Each Tag
object is a key-value
pair.
2744 2745 2746 2747 2748 2749 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 2744 class TagResourceRequest < Struct.new( :resource_id, :tags) SENSITIVE = [] include Aws::Structure end |