Class: Aws::KMS::Types::GetKeyRotationStatusRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-kms/types.rb

Overview

Note:

When making an API call, you may pass GetKeyRotationStatusRequest data as a hash:

{
  key_id: "KeyIdType", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#key_idString

A unique identifier for the customer master key. This value can be a globally unique identifier or the fully specified ARN to a key.

  • Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012

  • Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012

Returns:

  • (String)


1035
1036
1037
1038
# File 'lib/aws-sdk-kms/types.rb', line 1035

class GetKeyRotationStatusRequest < Struct.new(
  :key_id)
  include Aws::Structure
end