Class: Aws::EFS::Types::CreateTagsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EFS::Types::CreateTagsRequest
- Defined in:
- gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb
Overview
Note:
When making an API call, you may pass CreateTagsRequest data as a hash:
{
file_system_id: "FileSystemId", # required
tags: [ # required
{
key: "TagKey", # required
value: "TagValue", # required
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_system_id ⇒ String
The ID of the file system whose tags you want to modify (String).
-
#tags ⇒ Array<Types::Tag>
An array of
Tag
objects to add.
Instance Attribute Details
#file_system_id ⇒ String
The ID of the file system whose tags you want to modify (String). This operation modifies the tags only, not the file system.
649 650 651 652 653 654 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 649 class CreateTagsRequest < Struct.new( :file_system_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.
649 650 651 652 653 654 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 649 class CreateTagsRequest < Struct.new( :file_system_id, :tags) SENSITIVE = [] include Aws::Structure end |