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
Truncatedis true, this element is present and contains the value to use for theMarkerparameter 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.
5115 5116 5117 5118 5119 5120 5121 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 5115 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.
5115 5116 5117 5118 5119 5120 5121 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 5115 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.
5115 5116 5117 5118 5119 5120 5121 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 5115 class ListResourceTagsResponse < Struct.new( :tags, :next_marker, :truncated) SENSITIVE = [] include Aws::Structure end |