Struct rusoto_opsworks::DescribeDeploymentsRequest[][src]

pub struct DescribeDeploymentsRequest {
    pub app_id: Option<String>,
    pub deployment_ids: Option<Vec<String>>,
    pub stack_id: Option<String>,
}

Fields

The app ID. If you include this parameter, the command returns a description of the commands associated with the specified app.

An array of deployment IDs to be described. If you include this parameter, the command returns a description of the specified deployments. Otherwise, it returns a description of every deployment.

The stack ID. If you include this parameter, the command returns a description of the commands associated with the specified stack.

Trait Implementations

impl Default for DescribeDeploymentsRequest
[src]

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

impl Debug for DescribeDeploymentsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeDeploymentsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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