class Amazonite::Iam::AccessKeyMetadata

Overview

Contains information about an Amazon Web Services access key, without its secret key.

This data type is used as a response element in the ListAccessKeys operation.

Defined in:

iam/access_key_metadata.cr

Constructors

Instance Method Summary

Constructor Detail

def self.from_xml(node : XML::Node) : self #

[View source]
def self.new(user_name : String | Nil = nil, access_key_id : String | Nil = nil, status : StatusType | Nil = nil, create_date : Time | Nil = nil) #

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

The ID for this access key.


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

The ID for this access key.


[View source]
def create_date : Time | Nil #

The date when the access key was created.


[View source]
def create_date=(create_date : Time | Nil) #

The date when the access key was created.


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

See Object#hash(hasher)


def status : StatusType | Nil #

The status of the access key. Active means that the key is valid for API calls; Inactive means it is not.


[View source]
def status=(status : StatusType | Nil) #

The status of the access key. Active means that the key is valid for API calls; Inactive means it is not.


[View source]
def to_query_params(prefix : String) : Array(Tuple(String, String)) #

[View source]
def user_name : String | Nil #

The name of the IAM user that the key is associated with.


[View source]
def user_name=(user_name : String | Nil) #

The name of the IAM user that the key is associated with.


[View source]
def validate! : Nil #

[View source]