Struct rusoto_codedeploy::ListDeploymentInstancesInput [] [src]

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 Default for ListDeploymentInstancesInput
[src]

[src]

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

impl Debug for ListDeploymentInstancesInput
[src]

[src]

Formats the value using the given formatter.

impl Clone for ListDeploymentInstancesInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more