Struct rusoto_codedeploy::ListDeploymentsOutput[][src]

pub struct ListDeploymentsOutput {
    pub deployments: Option<Vec<String>>,
    pub next_token: Option<String>,
}

Represents the output of a ListDeployments operation.

Fields

A list of deployment IDs.

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

Trait Implementations

impl Default for ListDeploymentsOutput
[src]

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

impl Debug for ListDeploymentsOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListDeploymentsOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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