Class: Aws::KMS::Types::ListKeyRotationsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::KMS::Types::ListKeyRotationsResponse
- 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. -
#rotations ⇒ Array<Types::RotationsListEntry>
A list of completed key material rotations.
-
#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.
4906 4907 4908 4909 4910 4911 4912 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 4906 class ListKeyRotationsResponse < Struct.new( :rotations, :next_marker, :truncated) SENSITIVE = [] include Aws::Structure end |
#rotations ⇒ Array<Types::RotationsListEntry>
A list of completed key material rotations. When the optional input
parameter IncludeKeyMaterial
is specified with a value of
ALL_KEY_MATERIAL
, this list includes the first key material and
any imported key material pending rotation.
4906 4907 4908 4909 4910 4911 4912 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 4906 class ListKeyRotationsResponse < Struct.new( :rotations, :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.
4906 4907 4908 4909 4910 4911 4912 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 4906 class ListKeyRotationsResponse < Struct.new( :rotations, :next_marker, :truncated) SENSITIVE = [] include Aws::Structure end |