class Amazonite::Ssm::Credentials

Overview

The temporary security credentials, which include an access key ID, a secret access key, and a security (or session) token.

Included Modules

Defined in:

ssm/credentials.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(access_key_id : String, secret_access_key : String, session_token : String, expiration_time : Time) #

[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 #

The access key ID that identifies the temporary security credentials.


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

The access key ID that identifies the temporary security credentials.


[View source]
def expiration_time : Time #

The datetime on which the current credentials expire.


[View source]
def expiration_time=(expiration_time : Time) #

The datetime on which the current credentials expire.


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

See Object#hash(hasher)


def secret_access_key : String #

The secret access key that can be used to sign requests.


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

The secret access key that can be used to sign requests.


[View source]
def session_token : String #

The token that users must pass to the service API to use the temporary credentials.


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

The token that users must pass to the service API to use the temporary credentials.


[View source]
def validate! : Nil #

[View source]