Class: Aws::KMS::Types::RotationsListEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::KMS::Types::RotationsListEntry
- Defined in:
- gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb
Overview
Contains information about completed key material rotations.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key_id ⇒ String
Unique identifier of the key.
-
#rotation_date ⇒ Time
Date and time that the key material rotation completed.
-
#rotation_type ⇒ String
Identifies whether the key material rotation was a scheduled [automatic rotation][1] or an [on-demand rotation][2].
Instance Attribute Details
#key_id ⇒ String
Unique identifier of the key.
5751 5752 5753 5754 5755 5756 5757 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 5751 class RotationsListEntry < Struct.new( :key_id, :rotation_date, :rotation_type) SENSITIVE = [] include Aws::Structure end |
#rotation_date ⇒ Time
Date and time that the key material rotation completed. Formatted as Unix time.
5751 5752 5753 5754 5755 5756 5757 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 5751 class RotationsListEntry < Struct.new( :key_id, :rotation_date, :rotation_type) SENSITIVE = [] include Aws::Structure end |
#rotation_type ⇒ String
Identifies whether the key material rotation was a scheduled automatic rotation or an on-demand rotation.
5751 5752 5753 5754 5755 5756 5757 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 5751 class RotationsListEntry < Struct.new( :key_id, :rotation_date, :rotation_type) SENSITIVE = [] include Aws::Structure end |