Struct rusoto_codedeploy::ListDeploymentsInput [] [src]

pub struct ListDeploymentsInput {
    pub application_name: Option<String>,
    pub create_time_range: Option<TimeRange>,
    pub deployment_group_name: Option<String>,
    pub include_only_statuses: Option<Vec<String>>,
    pub next_token: Option<String>,
}

Represents the input of a ListDeployments operation.

Fields

The name of an AWS CodeDeploy application associated with the applicable IAM user or AWS account.

A time range (start and end) for returning a subset of the list of deployments.

The name of an existing deployment group for the specified application.

A subset of deployments to list by status:

  • Created: Include created deployments in the resulting list.

  • Queued: Include queued deployments in the resulting list.

  • In Progress: Include in-progress deployments in the resulting list.

  • Succeeded: Include successful deployments in the resulting list.

  • Failed: Include failed deployments in the resulting list.

  • Stopped: Include stopped deployments in the resulting list.

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

Trait Implementations

impl Default for ListDeploymentsInput
[src]

[src]

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

impl Debug for ListDeploymentsInput
[src]

[src]

Formats the value using the given formatter.

impl Clone for ListDeploymentsInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more