Class: Aws::KMS::Types::ListResourceTagsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::KMS::Types::ListResourceTagsResponse
- Defined in:
- gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_marker ⇒ String
When
Truncated
is true, this element is present and contains the value to use for theMarker
parameter in a subsequent request. -
#tags ⇒ Array<Types::Tag>
A list of tags.
-
#truncated ⇒ Boolean
A flag that indicates whether there are more items in the list.
Instance Attribute Details
#next_marker ⇒ String
When Truncated
is true, this element is present and contains the
value to use for the Marker
parameter in a subsequent request.
Do not assume or infer any information from this value.
4853 4854 4855 4856 4857 4858 4859 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 4853 class ListResourceTagsResponse < Struct.new( :tags, :next_marker, :truncated) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of tags. Each tag consists of a tag key and a tag value.
4853 4854 4855 4856 4857 4858 4859 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 4853 class ListResourceTagsResponse < Struct.new( :tags, :next_marker, :truncated) SENSITIVE = [] include Aws::Structure end |
#truncated ⇒ Boolean
A flag that indicates whether there are more items in the list. When
this value is true, the list in this response is truncated. To get
more items, pass the value of the NextMarker
element in this
response to the Marker
parameter in a subsequent request.
4853 4854 4855 4856 4857 4858 4859 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 4853 class ListResourceTagsResponse < Struct.new( :tags, :next_marker, :truncated) SENSITIVE = [] include Aws::Structure end |