Struct rusoto_ssm::GetCommandInvocationRequest[][src]

pub struct GetCommandInvocationRequest {
    pub command_id: String,
    pub instance_id: String,
    pub plugin_name: Option<String>,
}

Fields

(Required) The parent command ID of the invocation plugin.

(Required) 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.

(Optional) The name of the plugin for which you want detailed results. If the document contains only one plugin, the name can be omitted and the details will be returned.

Trait Implementations

impl Default for GetCommandInvocationRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for GetCommandInvocationRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetCommandInvocationRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetCommandInvocationRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations