Struct rusoto_codedeploy::BatchGetDeploymentInstancesInput[][src]

pub struct BatchGetDeploymentInstancesInput {
    pub deployment_id: String,
    pub instance_ids: Vec<String>,
}

Represents the input of a BatchGetDeploymentInstances operation.

Fields

The unique ID of a deployment.

The unique IDs of instances in the deployment group.

Trait Implementations

impl Default for BatchGetDeploymentInstancesInput
[src]

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

impl Debug for BatchGetDeploymentInstancesInput
[src]

Formats the value using the given formatter. Read more

impl Clone for BatchGetDeploymentInstancesInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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