[][src]Struct rusoto_codedeploy::ListDeploymentInstancesInput

pub struct ListDeploymentInstancesInput {
    pub deployment_id: String,
    pub instance_status_filter: Option<Vec<String>>,
    pub instance_type_filter: Option<Vec<String>>,
    pub next_token: Option<String>,
}

Represents the input of a ListDeploymentInstances operation.

Fields

The unique ID of a deployment.

A subset of instances to list by status:

  • Pending: Include those instance with pending deployments.

  • InProgress: Include those instance where deployments are still in progress.

  • Succeeded: Include those instances with successful deployments.

  • Failed: Include those instance with failed deployments.

  • Skipped: Include those instance with skipped deployments.

  • Unknown: Include those instance with deployments in an unknown state.

The set of instances in a blue/green deployment, either those in the original environment ("BLUE") or those in the replacement environment ("GREEN"), for which you want to view instance information.

An identifier returned from the previous list deployment instances call. It can be used to return the next set of deployment instances in the list.

Trait Implementations

impl Clone for ListDeploymentInstancesInput
[src]

Performs copy-assignment from source. Read more

impl Default for ListDeploymentInstancesInput
[src]

impl PartialEq<ListDeploymentInstancesInput> for ListDeploymentInstancesInput
[src]

impl Debug for ListDeploymentInstancesInput
[src]

impl Serialize for ListDeploymentInstancesInput
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T