1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`BatchGetDeploymentInstances`](crate::operation::batch_get_deployment_instances::builders::BatchGetDeploymentInstancesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`deployment_id(impl Into<String>)`](crate::operation::batch_get_deployment_instances::builders::BatchGetDeploymentInstancesFluentBuilder::deployment_id) / [`set_deployment_id(Option<String>)`](crate::operation::batch_get_deployment_instances::builders::BatchGetDeploymentInstancesFluentBuilder::set_deployment_id):<br>required: **true**<br><p> The unique ID of a deployment. </p><br>
    ///   - [`instance_ids(impl Into<String>)`](crate::operation::batch_get_deployment_instances::builders::BatchGetDeploymentInstancesFluentBuilder::instance_ids) / [`set_instance_ids(Option<Vec::<String>>)`](crate::operation::batch_get_deployment_instances::builders::BatchGetDeploymentInstancesFluentBuilder::set_instance_ids):<br>required: **true**<br><p>The unique IDs of instances used in the deployment. The maximum number of instance IDs you can specify is 25.</p><br>
    /// - On success, responds with [`BatchGetDeploymentInstancesOutput`](crate::operation::batch_get_deployment_instances::BatchGetDeploymentInstancesOutput) with field(s):
    ///   - [`instances_summary(Option<Vec::<InstanceSummary>>)`](crate::operation::batch_get_deployment_instances::BatchGetDeploymentInstancesOutput::instances_summary): <p>Information about the instance.</p>
    ///   - [`error_message(Option<String>)`](crate::operation::batch_get_deployment_instances::BatchGetDeploymentInstancesOutput::error_message): <p>Information about errors that might have occurred during the API call.</p>
    /// - On failure, responds with [`SdkError<BatchGetDeploymentInstancesError>`](crate::operation::batch_get_deployment_instances::BatchGetDeploymentInstancesError)
    #[deprecated(note = "This operation is deprecated, use BatchGetDeploymentTargets instead.")]
    pub fn batch_get_deployment_instances(
        &self,
    ) -> crate::operation::batch_get_deployment_instances::builders::BatchGetDeploymentInstancesFluentBuilder {
        crate::operation::batch_get_deployment_instances::builders::BatchGetDeploymentInstancesFluentBuilder::new(self.handle.clone())
    }
}