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.
1145 1146 1147 1148 1149 1150 1151 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1145 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.
1145 1146 1147 1148 1149 1150 1151 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1145 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.
1145 1146 1147 1148 1149 1150 1151 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1145 class DescribeTagsResponse < Struct.new( :marker, :tags, :next_marker) SENSITIVE = [] include Aws::Structure end |