[][src]Struct rusoto_ssm::GetCommandInvocationResult

pub struct GetCommandInvocationResult {
    pub cloud_watch_output_config: Option<CloudWatchOutputConfig>,
    pub command_id: Option<String>,
    pub comment: Option<String>,
    pub document_name: Option<String>,
    pub document_version: Option<String>,
    pub execution_elapsed_time: Option<String>,
    pub execution_end_date_time: Option<String>,
    pub execution_start_date_time: Option<String>,
    pub instance_id: Option<String>,
    pub plugin_name: Option<String>,
    pub response_code: Option<i64>,
    pub standard_error_content: Option<String>,
    pub standard_error_url: Option<String>,
    pub standard_output_content: Option<String>,
    pub standard_output_url: Option<String>,
    pub status: Option<String>,
    pub status_details: Option<String>,
}

Fields

cloud_watch_output_config: Option<CloudWatchOutputConfig>

CloudWatch Logs information where Systems Manager sent the command output.

command_id: Option<String>

The parent command ID of the invocation plugin.

comment: Option<String>

The comment text for the command.

document_name: Option<String>

The name of the document that was run. For example, AWS-RunShellScript.

document_version: Option<String>

The SSM document version used in the request.

execution_elapsed_time: Option<String>

Duration since ExecutionStartDateTime.

execution_end_date_time: Option<String>

The date and time the plugin was finished running. Date and time are written in ISO 8601 format. For example, June 7, 2017 is represented as 2017-06-7. The following sample AWS CLI command uses the InvokedAfter filter.

aws ssm list-commands --filters key=InvokedAfter,value=2017-06-07T00:00:00Z

If the plugin has not started to run, the string is empty.

execution_start_date_time: Option<String>

The date and time the plugin started running. Date and time are written in ISO 8601 format. For example, June 7, 2017 is represented as 2017-06-7. The following sample AWS CLI command uses the InvokedBefore filter.

aws ssm list-commands --filters key=InvokedBefore,value=2017-06-07T00:00:00Z

If the plugin has not started to run, the string is empty.

instance_id: Option<String>

The ID of the managed instance targeted by the command. A managed instance can be an Amazon EC2 instance or an instance in your hybrid environment that is configured for Systems Manager.

plugin_name: Option<String>

The name of the plugin for which you want detailed results. For example, aws:RunShellScript is a plugin.

response_code: Option<i64>

The error level response code for the plugin script. If the response code is -1, then the command has not started running on the instance, or it was not received by the instance.

standard_error_content: Option<String>

The first 8,000 characters written by the plugin to stderr. If the command has not finished running, then this string is empty.

standard_error_url: Option<String>

The URL for the complete text written by the plugin to stderr. If the command has not finished running, then this string is empty.

standard_output_content: Option<String>

The first 24,000 characters written by the plugin to stdout. If the command has not finished running, if ExecutionStatus is neither Succeeded nor Failed, then this string is empty.

standard_output_url: Option<String>

The URL for the complete text written by the plugin to stdout in Amazon S3. If an Amazon S3 bucket was not specified, then this string is empty.

status: Option<String>

The status of this invocation plugin. This status can be different than StatusDetails.

status_details: Option<String>

A detailed status of the command execution for an invocation. 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 AWS Systems Manager User Guide. StatusDetails can be one of the following values:

Trait Implementations

impl PartialEq<GetCommandInvocationResult> for GetCommandInvocationResult[src]

impl Default for GetCommandInvocationResult[src]

impl Clone for GetCommandInvocationResult[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for GetCommandInvocationResult[src]

impl<'de> Deserialize<'de> for GetCommandInvocationResult[src]

Auto Trait Implementations

impl Send for GetCommandInvocationResult

impl Sync for GetCommandInvocationResult

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self