Class: Aws::KMS::Types::EnableKeyRequest

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 EnableKeyRequest 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)


634
635
636
637
# File 'lib/aws-sdk-kms/types.rb', line 634

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