aws_sdk_codedeploy/client/batch_get_applications.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`BatchGetApplications`](crate::operation::batch_get_applications::builders::BatchGetApplicationsFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`application_names(impl Into<String>)`](crate::operation::batch_get_applications::builders::BatchGetApplicationsFluentBuilder::application_names) / [`set_application_names(Option<Vec::<String>>)`](crate::operation::batch_get_applications::builders::BatchGetApplicationsFluentBuilder::set_application_names):<br>required: **true**<br><p>A list of application names separated by spaces. The maximum number of application names you can specify is 100.</p><br>
7 /// - On success, responds with [`BatchGetApplicationsOutput`](crate::operation::batch_get_applications::BatchGetApplicationsOutput) with field(s):
8 /// - [`applications_info(Option<Vec::<ApplicationInfo>>)`](crate::operation::batch_get_applications::BatchGetApplicationsOutput::applications_info): <p>Information about the applications.</p>
9 /// - On failure, responds with [`SdkError<BatchGetApplicationsError>`](crate::operation::batch_get_applications::BatchGetApplicationsError)
10 pub fn batch_get_applications(&self) -> crate::operation::batch_get_applications::builders::BatchGetApplicationsFluentBuilder {
11 crate::operation::batch_get_applications::builders::BatchGetApplicationsFluentBuilder::new(self.handle.clone())
12 }
13}