class Amazonite::Ssm::FailureDetails

Overview

Information about an Automation failure.

Included Modules

Defined in:

ssm/failure_details.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(failure_stage : String | Nil = nil, failure_type : String | Nil = nil, details : Hash(String, Array(String)) | 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 details : Hash(String, Array(String)) | Nil #

Detailed information about the Automation step failure.


[View source]
def details=(details : Hash(String, Array(String)) | Nil) #

Detailed information about the Automation step failure.


[View source]
def failure_stage : String | Nil #

The stage of the Automation execution when the failure occurred. The stages include the following: InputValidation, PreVerification, Invocation, PostVerification.


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

The stage of the Automation execution when the failure occurred. The stages include the following: InputValidation, PreVerification, Invocation, PostVerification.


[View source]
def failure_type : String | Nil #

The type of Automation failure. Failure types include the following: Action, Permission, Throttling, Verification, Internal.


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

The type of Automation failure. Failure types include the following: Action, Permission, Throttling, Verification, Internal.


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

See Object#hash(hasher)


def validate! : Nil #

[View source]