Struct rusoto_ssm::CancelCommandRequest[][src]

pub struct CancelCommandRequest {
    pub command_id: String,
    pub instance_ids: Option<Vec<String>>,
}

Fields

The ID of the command you want to cancel.

(Optional) A list of instance IDs on which you want to cancel the command. If not provided, the command is canceled on every instance on which it was requested.

Trait Implementations

impl Default for CancelCommandRequest
[src]

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

impl Debug for CancelCommandRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CancelCommandRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CancelCommandRequest
[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