class Amazonite::Ssm::MaintenanceWindowExecutionTaskIdentity

Overview

Information about a task execution performed as part of a maintenance window execution.

Included Modules

Defined in:

ssm/maintenance_window_execution_task_identity.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(window_execution_id : String | Nil = nil, task_execution_id : String | Nil = nil, status : MaintenanceWindowExecutionStatus | Nil = nil, status_details : String | Nil = nil, start_time : Time | Nil = nil, end_time : Time | Nil = nil, task_arn : String | Nil = nil, task_type : MaintenanceWindowTaskType | Nil = nil, alarm_configuration : AlarmConfiguration | Nil = nil, triggered_alarms : Array(AlarmStateInformation) | 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 alarm_configuration : AlarmConfiguration | Nil #

The details for the CloudWatch alarm applied to your maintenance window task.


[View source]
def alarm_configuration=(alarm_configuration : AlarmConfiguration | Nil) #

The details for the CloudWatch alarm applied to your maintenance window task.


[View source]
def end_time : Time | Nil #

The time the task execution finished.


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

The time the task execution finished.


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

See Object#hash(hasher)


def start_time : Time | Nil #

The time the task execution started.


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

The time the task execution started.


[View source]
def status : MaintenanceWindowExecutionStatus | Nil #

The status of the task execution.


[View source]
def status=(status : MaintenanceWindowExecutionStatus | Nil) #

The status of the task execution.


[View source]
def status_details : String | Nil #

The details explaining the status of the task execution. Not available for all status values.


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

The details explaining the status of the task execution. Not available for all status values.


[View source]
def task_arn : String | Nil #

The Amazon Resource Name (ARN) of the task that ran.


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

The Amazon Resource Name (ARN) of the task that ran.


[View source]
def task_execution_id : String | Nil #

The ID of the specific task execution in the maintenance window execution.


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

The ID of the specific task execution in the maintenance window execution.


[View source]
def task_type : MaintenanceWindowTaskType | Nil #

The type of task that ran.


[View source]
def task_type=(task_type : MaintenanceWindowTaskType | Nil) #

The type of task that ran.


[View source]
def triggered_alarms : Array(AlarmStateInformation) | Nil #

The CloudWatch alarm that was invoked by the maintenance window task.


[View source]
def triggered_alarms=(triggered_alarms : Array(AlarmStateInformation) | Nil) #

The CloudWatch alarm that was invoked by the maintenance window task.


[View source]
def validate! : Nil #

[View source]
def window_execution_id : String | Nil #

The ID of the maintenance window execution that ran the task.


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

The ID of the maintenance window execution that ran the task.


[View source]