class Amazonite::SecretsManager::SecretValueEntry

Overview

A structure that contains the secret value and other details for a secret.

Included Modules

Defined in:

secrets_manager/secret_value_entry.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(arn : String | Nil = nil, name : String | Nil = nil, version_id : String | Nil = nil, secret_binary : Bytes | Nil = nil, secret_string : String | Nil = nil, version_stages : Array(String) | Nil = nil, created_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 arn : String | Nil #

The Amazon Resource Name (ARN) of the secret.


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

The Amazon Resource Name (ARN) of the secret.


[View source]
def created_date : Time | Nil #

The date the secret was created.


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

The date the secret was created.


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

See Object#hash(hasher)


def name : String | Nil #

The friendly name of the secret.


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

The friendly name of the secret.


[View source]
def secret_binary : Bytes | Nil #

The decrypted secret value, if the secret value was originally provided as binary data in the form of a byte array. The parameter represents the binary data as a base64-encoded string.


[View source]
def secret_binary=(secret_binary : Bytes | Nil) #

The decrypted secret value, if the secret value was originally provided as binary data in the form of a byte array. The parameter represents the binary data as a base64-encoded string.


[View source]
def secret_string : String | Nil #

The decrypted secret value, if the secret value was originally provided as a string or through the Secrets Manager console.


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

The decrypted secret value, if the secret value was originally provided as a string or through the Secrets Manager console.


[View source]
def validate! : Nil #

[View source]
def version_id : String | Nil #

The unique version identifier of this version of the secret.


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

The unique version identifier of this version of the secret.


[View source]
def version_stages : Array(String) | Nil #

A list of all of the staging labels currently attached to this version of the secret.


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

A list of all of the staging labels currently attached to this version of the secret.


[View source]