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)


6589
6590
6591
6592
6593
6594
# File 'lib/aws-sdk-kms/types.rb', line 6589

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)


6589
6590
6591
6592
6593
6594
# File 'lib/aws-sdk-kms/types.rb', line 6589

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