class Amazonite::Ssm::CommandInvocation

Overview

An invocation is a copy of a command sent to a specific managed node. A command can apply to one or more managed nodes. A command invocation applies to one managed node. For example, if a user runs SendCommand against three managed nodes, then a command invocation is created for each requested managed node ID. A command invocation returns status and detail information about a command you ran.

Included Modules

Defined in:

ssm/command_invocation.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(command_id : String | Nil = nil, instance_id : String | Nil = nil, instance_name : String | Nil = nil, comment : String | Nil = nil, document_name : String | Nil = nil, document_version : String | Nil = nil, requested_date_time : Time | Nil = nil, status : CommandInvocationStatus | Nil = nil, status_details : String | Nil = nil, trace_output : String | Nil = nil, standard_output_url : String | Nil = nil, standard_error_url : String | Nil = nil, command_plugins : Array(CommandPlugin) | Nil = nil, service_role : String | Nil = nil, notification_config : NotificationConfig | Nil = nil, cloud_watch_output_config : CloudWatchOutputConfig | 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 cloud_watch_output_config : CloudWatchOutputConfig | Nil #

Amazon CloudWatch Logs information where you want Amazon Web Services Systems Manager to send the command output.


[View source]
def cloud_watch_output_config=(cloud_watch_output_config : CloudWatchOutputConfig | Nil) #

Amazon CloudWatch Logs information where you want Amazon Web Services Systems Manager to send the command output.


[View source]
def command_id : String | Nil #

The command against which this invocation was requested.


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

The command against which this invocation was requested.


[View source]
def command_plugins : Array(CommandPlugin) | Nil #

Plugins processed by the command.


[View source]
def command_plugins=(command_plugins : Array(CommandPlugin) | Nil) #

Plugins processed by the command.


[View source]
def comment : String | Nil #

User-specified information about the command, such as a brief description of what the command should do.


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

User-specified information about the command, such as a brief description of what the command should do.


[View source]
def document_name : String | Nil #

The document name that was requested for execution.


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

The document name that was requested for execution.


[View source]
def document_version : String | Nil #

The Systems Manager document (SSM document) version.


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

The Systems Manager document (SSM document) version.


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

See Object#hash(hasher)


def instance_id : String | Nil #

The managed node ID in which this invocation was requested.


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

The managed node ID in which this invocation was requested.


[View source]
def instance_name : String | Nil #

The fully qualified host name of the managed node.


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

The fully qualified host name of the managed node.


[View source]
def notification_config : NotificationConfig | Nil #

Configurations for sending notifications about command status changes on a per managed node basis.


[View source]
def notification_config=(notification_config : NotificationConfig | Nil) #

Configurations for sending notifications about command status changes on a per managed node basis.


[View source]
def requested_date_time : Time | Nil #

The time and date the request was sent to this managed node.


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

The time and date the request was sent to this managed node.


[View source]
def service_role : String | Nil #

The Identity and Access Management (IAM) service role that Run Command, a tool in Amazon Web Services Systems Manager, uses to act on your behalf when sending notifications about command status changes on a per managed node basis.


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

The Identity and Access Management (IAM) service role that Run Command, a tool in Amazon Web Services Systems Manager, uses to act on your behalf when sending notifications about command status changes on a per managed node basis.


[View source]
def standard_error_url : String | Nil #

The URL to the plugin's StdErr file in Amazon Simple Storage Service (Amazon S3), if the S3 bucket was defined for the parent command. For an invocation, StandardErrorUrl is populated if there is just one plugin defined for the command, and the S3 bucket was defined for the command.


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

The URL to the plugin's StdErr file in Amazon Simple Storage Service (Amazon S3), if the S3 bucket was defined for the parent command. For an invocation, StandardErrorUrl is populated if there is just one plugin defined for the command, and the S3 bucket was defined for the command.


[View source]
def standard_output_url : String | Nil #

The URL to the plugin's StdOut file in Amazon Simple Storage Service (Amazon S3), if the S3 bucket was defined for the parent command. For an invocation, StandardOutputUrl is populated if there is just one plugin defined for the command, and the S3 bucket was defined for the command.


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

The URL to the plugin's StdOut file in Amazon Simple Storage Service (Amazon S3), if the S3 bucket was defined for the parent command. For an invocation, StandardOutputUrl is populated if there is just one plugin defined for the command, and the S3 bucket was defined for the command.


[View source]
def status : CommandInvocationStatus | Nil #

Whether or not the invocation succeeded, failed, or is pending.


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

Whether or not the invocation succeeded, failed, or is pending.


[View source]
def status_details : String | Nil #

A detailed status of the command execution for each invocation (each managed node targeted by the command). StatusDetails includes more information than Status because it includes states resulting from error and concurrency control parameters. StatusDetails can show different results than Status. For more information about these statuses, see Understanding command statuses in the Amazon Web Services Systems Manager User Guide. StatusDetails can be one of the following values:

  • Pending: The command hasn't been sent to the managed node.

  • In Progress: The command has been sent to the managed node but hasn't reached a terminal state.

  • Success: The execution of the command or plugin was successfully completed. This is a terminal state.

  • Delivery Timed Out: The command wasn't delivered to the managed node before the delivery timeout expired. Delivery timeouts don't count against the parent command's MaxErrors limit, but they do contribute to whether the parent command status is Success or Incomplete. This is a terminal state.

  • Execution Timed Out: Command execution started on the managed node, but the execution wasn't complete before the execution timeout expired. Execution timeouts count against the MaxErrors limit of the parent command. This is a terminal state.

  • Failed: The command wasn't successful on the managed node. For a plugin, this indicates that the result code wasn't zero. For a command invocation, this indicates that the result code for one or more plugins wasn't zero. Invocation failures count against the MaxErrors limit of the parent command. This is a terminal state.

  • Cancelled: The command was terminated before it was completed. This is a terminal state.

  • Undeliverable: The command can't be delivered to the managed node. The managed node might not exist or might not be responding. Undeliverable invocations don't count against the parent command's MaxErrors limit and don't contribute to whether the parent command status is Success or Incomplete. This is a terminal state.

  • Terminated: The parent command exceeded its MaxErrors limit and subsequent command invocations were canceled by the system. This is a terminal state.

  • Delayed: The system attempted to send the command to the managed node but wasn't successful. The system retries again.


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

A detailed status of the command execution for each invocation (each managed node targeted by the command). StatusDetails includes more information than Status because it includes states resulting from error and concurrency control parameters. StatusDetails can show different results than Status. For more information about these statuses, see Understanding command statuses in the Amazon Web Services Systems Manager User Guide. StatusDetails can be one of the following values:

  • Pending: The command hasn't been sent to the managed node.

  • In Progress: The command has been sent to the managed node but hasn't reached a terminal state.

  • Success: The execution of the command or plugin was successfully completed. This is a terminal state.

  • Delivery Timed Out: The command wasn't delivered to the managed node before the delivery timeout expired. Delivery timeouts don't count against the parent command's MaxErrors limit, but they do contribute to whether the parent command status is Success or Incomplete. This is a terminal state.

  • Execution Timed Out: Command execution started on the managed node, but the execution wasn't complete before the execution timeout expired. Execution timeouts count against the MaxErrors limit of the parent command. This is a terminal state.

  • Failed: The command wasn't successful on the managed node. For a plugin, this indicates that the result code wasn't zero. For a command invocation, this indicates that the result code for one or more plugins wasn't zero. Invocation failures count against the MaxErrors limit of the parent command. This is a terminal state.

  • Cancelled: The command was terminated before it was completed. This is a terminal state.

  • Undeliverable: The command can't be delivered to the managed node. The managed node might not exist or might not be responding. Undeliverable invocations don't count against the parent command's MaxErrors limit and don't contribute to whether the parent command status is Success or Incomplete. This is a terminal state.

  • Terminated: The parent command exceeded its MaxErrors limit and subsequent command invocations were canceled by the system. This is a terminal state.

  • Delayed: The system attempted to send the command to the managed node but wasn't successful. The system retries again.


[View source]
def trace_output : String | Nil #

Gets the trace output sent by the agent.


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

Gets the trace output sent by the agent.


[View source]
def validate! : Nil #

[View source]