Class: Aws::KMS::Types::XksProxyAuthenticationCredentialType
- Inherits:
-
Struct
- Object
- Struct
- Aws::KMS::Types::XksProxyAuthenticationCredentialType
- Defined in:
- gems/aws-sdk-kms/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
-
#access_key_id ⇒ String
A unique identifier for the raw secret access key.
-
#raw_secret_access_key ⇒ String
A secret string of 43-64 characters.
Instance Attribute Details
#access_key_id ⇒ String
A unique identifier for the raw secret access key.
6782 6783 6784 6785 6786 6787 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 6782 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_key ⇒ String
A secret string of 43-64 characters. Valid characters are a-z, A-Z, 0-9, /, +, and =.
6782 6783 6784 6785 6786 6787 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 6782 class XksProxyAuthenticationCredentialType < Struct.new( :access_key_id, :raw_secret_access_key) SENSITIVE = [:access_key_id, :raw_secret_access_key] include Aws::Structure end |