aws-sdk-codebuild 1.122.0

AWS SDK for AWS CodeBuild
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`BatchGetSandboxes`](crate::operation::batch_get_sandboxes::builders::BatchGetSandboxesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    /// - On success, responds with [`BatchGetSandboxesOutput`](crate::operation::batch_get_sandboxes::BatchGetSandboxesOutput) with field(s):
    ///   - [`sandboxes(Option<Vec::<Sandbox>>)`](crate::operation::batch_get_sandboxes::BatchGetSandboxesOutput::sandboxes): <p>Information about the requested sandboxes.</p>
    ///   - [`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>
    /// - On failure, responds with [`SdkError<BatchGetSandboxesError>`](crate::operation::batch_get_sandboxes::BatchGetSandboxesError)
    pub fn batch_get_sandboxes(&self) -> crate::operation::batch_get_sandboxes::builders::BatchGetSandboxesFluentBuilder {
        crate::operation::batch_get_sandboxes::builders::BatchGetSandboxesFluentBuilder::new(self.handle.clone())
    }
}