class Amazonite::Ssm::OpsItemDataValue

Overview

An object that defines the value of the key and its type in the OperationalData map.

Included Modules

Defined in:

ssm/ops_item_data_value.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(value : String | Nil = nil, type : OpsItemDataType | 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 hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def type : OpsItemDataType | Nil #

The type of key-value pair. Valid types include SearchableString and String.


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

The type of key-value pair. Valid types include SearchableString and String.


[View source]
def validate! : Nil #

[View source]
def value : String | Nil #

The value of the OperationalData key.


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

The value of the OperationalData key.


[View source]