class Amazonite::Ssm::Parameter

Overview

An Amazon Web Services Systems Manager parameter in Parameter Store.

Included Modules

Defined in:

ssm/parameter.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(name : String | Nil = nil, type : ParameterType | Nil = nil, value : String | Nil = nil, version : Int64 | Nil = nil, selector : String | Nil = nil, source_result : String | Nil = nil, last_modified_date : Time | Nil = nil, arn : String | Nil = nil, data_type : String | Nil = nil) #

[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 arn : String | Nil #

The Amazon Resource Name (ARN) of the parameter.


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

The Amazon Resource Name (ARN) of the parameter.


[View source]
def data_type : String | Nil #

The data type of the parameter, such as text or aws:ec2:image. The default is text.


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

The data type of the parameter, such as text or aws:ec2:image. The default is text.


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

See Object#hash(hasher)


def last_modified_date : Time | Nil #

Date the parameter was last changed or updated and the parameter version was created.


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

Date the parameter was last changed or updated and the parameter version was created.


[View source]
def name : String | Nil #

The name of the parameter.


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

The name of the parameter.


[View source]
def selector : String | Nil #

Either the version number or the label used to retrieve the parameter value. Specify selectors by using one of the following formats:

parameter_name:version

parameter_name:label


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

Either the version number or the label used to retrieve the parameter value. Specify selectors by using one of the following formats:

parameter_name:version

parameter_name:label


[View source]
def source_result : String | Nil #

Applies to parameters that reference information in other Amazon Web Services services. SourceResult is the raw result or response from the source.


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

Applies to parameters that reference information in other Amazon Web Services services. SourceResult is the raw result or response from the source.


[View source]
def type : ParameterType | Nil #

The type of parameter. Valid values include the following: String, StringList, and SecureString.

If type is StringList, the system returns a comma-separated string with no spaces between commas in the Value field.


[View source]
def type=(type : ParameterType | Nil) #

The type of parameter. Valid values include the following: String, StringList, and SecureString.

If type is StringList, the system returns a comma-separated string with no spaces between commas in the Value field.


[View source]
def validate! : Nil #

[View source]
def value : String | Nil #

The parameter value.

If type is StringList, the system returns a comma-separated string with no spaces between commas in the Value field.


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

The parameter value.

If type is StringList, the system returns a comma-separated string with no spaces between commas in the Value field.


[View source]
def version : Int64 | Nil #

The parameter version.


[View source]
def version=(version : Int64 | Nil) #

The parameter version.


[View source]