Class: Aws::EFS::Types::DescribeTagsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::EFS::Types::DescribeTagsResponse
- Defined in:
- gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#marker ⇒ String
If the request included a
Marker
, the response returns that value in this field. -
#next_marker ⇒ String
If a value is present, there are more tags to return.
-
#tags ⇒ Array<Types::Tag>
Returns tags associated with the file system as an array of
Tag
objects.
Instance Attribute Details
#marker ⇒ String
If the request included a Marker
, the response returns that value
in this field.
1091 1092 1093 1094 1095 1096 1097 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1091 class DescribeTagsResponse < Struct.new( :marker, :tags, :next_marker) SENSITIVE = [] include Aws::Structure end |
#next_marker ⇒ String
If a value is present, there are more tags to return. In a
subsequent request, you can provide the value of NextMarker
as the
value of the Marker
parameter in your next request to retrieve the
next set of tags.
1091 1092 1093 1094 1095 1096 1097 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1091 class DescribeTagsResponse < Struct.new( :marker, :tags, :next_marker) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
Returns tags associated with the file system as an array of Tag
objects.
1091 1092 1093 1094 1095 1096 1097 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1091 class DescribeTagsResponse < Struct.new( :marker, :tags, :next_marker) SENSITIVE = [] include Aws::Structure end |