Class: Aws::EFS::Types::ListTagsForResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EFS::Types::ListTagsForResourceRequest
- Defined in:
- gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
(Optional) Specifies the maximum number of tag objects to return in the response.
-
#next_token ⇒ String
(Optional) You can use
NextToken
in a subsequent request to fetch the next page of access point descriptions if the response payload was paginated. -
#resource_id ⇒ String
Specifies the EFS resource you want to retrieve tags for.
Instance Attribute Details
#max_results ⇒ Integer
(Optional) Specifies the maximum number of tag objects to return in the response. The default value is 100.
1735 1736 1737 1738 1739 1740 1741 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1735 class ListTagsForResourceRequest < Struct.new( :resource_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
(Optional) You can use NextToken
in a subsequent request to fetch
the next page of access point descriptions if the response payload
was paginated.
1735 1736 1737 1738 1739 1740 1741 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1735 class ListTagsForResourceRequest < Struct.new( :resource_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#resource_id ⇒ String
Specifies the EFS resource you want to retrieve tags for. You can retrieve tags for EFS file systems and access points using this API endpoint.
1735 1736 1737 1738 1739 1740 1741 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1735 class ListTagsForResourceRequest < Struct.new( :resource_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |