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
NextTokenin 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.
1971 1972 1973 1974 1975 1976 1977 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1971 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.
1971 1972 1973 1974 1975 1976 1977 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1971 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.
1971 1972 1973 1974 1975 1976 1977 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1971 class ListTagsForResourceRequest < Struct.new( :resource_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |