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
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListSandboxes`](crate::operation::list_sandboxes::builders::ListSandboxesFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_sandboxes::builders::ListSandboxesFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`max_results(i32)`](crate::operation::list_sandboxes::builders::ListSandboxesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_sandboxes::builders::ListSandboxesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of sandbox records to be retrieved.</p><br>
    ///   - [`sort_order(SortOrderType)`](crate::operation::list_sandboxes::builders::ListSandboxesFluentBuilder::sort_order) / [`set_sort_order(Option<SortOrderType>)`](crate::operation::list_sandboxes::builders::ListSandboxesFluentBuilder::set_sort_order):<br>required: **false**<br><p>The order in which sandbox records should be retrieved.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_sandboxes::builders::ListSandboxesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_sandboxes::builders::ListSandboxesFluentBuilder::set_next_token):<br>required: **false**<br><p>The next token, if any, to get paginated results. You will get this value from previous execution of list sandboxes.</p><br>
    /// - On success, responds with [`ListSandboxesOutput`](crate::operation::list_sandboxes::ListSandboxesOutput) with field(s):
    ///   - [`ids(Option<Vec::<String>>)`](crate::operation::list_sandboxes::ListSandboxesOutput::ids): <p>Information about the requested sandbox IDs.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_sandboxes::ListSandboxesOutput::next_token): <p>Information about the next token to get paginated results.</p>
    /// - On failure, responds with [`SdkError<ListSandboxesError>`](crate::operation::list_sandboxes::ListSandboxesError)
    pub fn list_sandboxes(&self) -> crate::operation::list_sandboxes::builders::ListSandboxesFluentBuilder {
        crate::operation::list_sandboxes::builders::ListSandboxesFluentBuilder::new(self.handle.clone())
    }
}