Struct rusoto_codedeploy::ListDeploymentInstancesOutput[][src]

pub struct ListDeploymentInstancesOutput {
    pub instances_list: Option<Vec<String>>,
    pub next_token: Option<String>,
}

Represents the output of a ListDeploymentInstances operation.

Fields

A list of instance IDs.

If a large amount of information is returned, an identifier is also returned. It can be used in a subsequent list deployment instances call to return the next set of deployment instances in the list.

Trait Implementations

impl Default for ListDeploymentInstancesOutput
[src]

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

impl Debug for ListDeploymentInstancesOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListDeploymentInstancesOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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