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.
5039 5040 5041 5042 5043 5044 5045 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 5039 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.
5039 5040 5041 5042 5043 5044 5045 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 5039 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.
5039 5040 5041 5042 5043 5044 5045 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 5039 class ListResourceTagsResponse < Struct.new( :tags, :next_marker, :truncated) SENSITIVE = [] include Aws::Structure end |