Struct rusoto_ssm::ListCommandInvocationsResult[][src]

pub struct ListCommandInvocationsResult {
    pub command_invocations: Option<Vec<CommandInvocation>>,
    pub next_token: Option<String>,
}

Fields

(Optional) A list of all invocations.

(Optional) The token for the next set of items to return. (You received this token from a previous call.)

Trait Implementations

impl Default for ListCommandInvocationsResult
[src]

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

impl Debug for ListCommandInvocationsResult
[src]

Formats the value using the given formatter. Read more

impl Clone for ListCommandInvocationsResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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