class Amazonite::Kms::ListKeysResponse

Included Modules

Defined in:

kms/list_keys_response.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pull : JSON::PullParser) #

[View source]
def self.new(keys : Array(KeyListEntry) | Nil = nil, next_marker : String | Nil = nil, truncated : Bool | 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 hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def keys : Array(KeyListEntry) | Nil #

A list of KMS keys.


[View source]
def keys=(keys : Array(KeyListEntry) | Nil) #

A list of KMS keys.


[View source]
def next_marker : String | Nil #

When Truncated is true, this element is present and contains the value to use for the Marker parameter in a subsequent request.


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

When Truncated is true, this element is present and contains the value to use for the Marker parameter in a subsequent request.


[View source]
def truncated : Bool | Nil #

A flag that indicates whether there are more items in the list. When this value is true, the list in this response is truncated. To get more items, pass the value of the NextMarker element in this response to the Marker parameter in a subsequent request.


[View source]
def truncated=(truncated : Bool | Nil) #

A flag that indicates whether there are more items in the list. When this value is true, the list in this response is truncated. To get more items, pass the value of the NextMarker element in this response to the Marker parameter in a subsequent request.


[View source]
def validate! : Nil #

[View source]