Class: Aws::KMS::Types::XksProxyAuthenticationCredentialType

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

Overview

KMS uses the authentication credential to sign requests that it sends to the external key store proxy (XKS proxy) on your behalf. You establish these credentials on your external key store proxy and report them to KMS.

The ‘XksProxyAuthenticationCredential` includes two required elements.

Constant Summary collapse

SENSITIVE =
[:access_key_id, :raw_secret_access_key]

Instance Attribute Summary collapse

Instance Attribute Details

#access_key_idString

A unique identifier for the raw secret access key.

Returns:

  • (String)


6359
6360
6361
6362
6363
6364
# File 'lib/aws-sdk-kms/types.rb', line 6359

class XksProxyAuthenticationCredentialType < Struct.new(
  :access_key_id,
  :raw_secret_access_key)
  SENSITIVE = [:access_key_id, :raw_secret_access_key]
  include Aws::Structure
end

#raw_secret_access_keyString

A secret string of 43-64 characters. Valid characters are a-z, A-Z, 0-9, /, +, and =.

Returns:

  • (String)


6359
6360
6361
6362
6363
6364
# File 'lib/aws-sdk-kms/types.rb', line 6359

class XksProxyAuthenticationCredentialType < Struct.new(
  :access_key_id,
  :raw_secret_access_key)
  SENSITIVE = [:access_key_id, :raw_secret_access_key]
  include Aws::Structure
end