class Amazonite::Kms::XksProxyAuthenticationCredentialType

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.

Included Modules

Defined in:

kms/xks_proxy_authentication_credential_type.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(access_key_id : String, raw_secret_access_key : String) #

[View source]
def self.new(pull : JSON::PullParser) #

[View source]
def self.new(*, __pull_for_json_serializable pull : JSON::PullParser) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def access_key_id : String #

A unique identifier for the raw secret access key.


[View source]
def access_key_id=(access_key_id : String) #

A unique identifier for the raw secret access key.


[View source]
def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def raw_secret_access_key : String #

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


[View source]
def raw_secret_access_key=(raw_secret_access_key : String) #

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


[View source]
def validate! : Nil #

[View source]