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
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.
584 585 586 587 588 589 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 584 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.
584 585 586 587 588 589 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 584 class CreateTagsRequest < Struct.new( :file_system_id, :tags) SENSITIVE = [] include Aws::Structure end |