aws_sdk_codebuild/client/batch_get_sandboxes.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 [`BatchGetSandboxes`](crate::operation::batch_get_sandboxes::builders::BatchGetSandboxesFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`ids(impl Into<String>)`](crate::operation::batch_get_sandboxes::builders::BatchGetSandboxesFluentBuilder::ids) / [`set_ids(Option<Vec::<String>>)`](crate::operation::batch_get_sandboxes::builders::BatchGetSandboxesFluentBuilder::set_ids):<br>required: **true**<br><p>A comma separated list of <code>sandboxIds</code> or <code>sandboxArns</code>.</p><br>
7 /// - On success, responds with [`BatchGetSandboxesOutput`](crate::operation::batch_get_sandboxes::BatchGetSandboxesOutput) with field(s):
8 /// - [`sandboxes(Option<Vec::<Sandbox>>)`](crate::operation::batch_get_sandboxes::BatchGetSandboxesOutput::sandboxes): <p>Information about the requested sandboxes.</p>
9 /// - [`sandboxes_not_found(Option<Vec::<String>>)`](crate::operation::batch_get_sandboxes::BatchGetSandboxesOutput::sandboxes_not_found): <p>The IDs of sandboxes for which information could not be found.</p>
10 /// - On failure, responds with [`SdkError<BatchGetSandboxesError>`](crate::operation::batch_get_sandboxes::BatchGetSandboxesError)
11 pub fn batch_get_sandboxes(&self) -> crate::operation::batch_get_sandboxes::builders::BatchGetSandboxesFluentBuilder {
12 crate::operation::batch_get_sandboxes::builders::BatchGetSandboxesFluentBuilder::new(self.handle.clone())
13 }
14}