aws-sdk-codebuild 1.122.0

AWS SDK for AWS CodeBuild
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListCommandExecutionsForSandbox`](crate::operation::list_command_executions_for_sandbox::builders::ListCommandExecutionsForSandboxFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_command_executions_for_sandbox::builders::ListCommandExecutionsForSandboxFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`sandbox_id(impl Into<String>)`](crate::operation::list_command_executions_for_sandbox::builders::ListCommandExecutionsForSandboxFluentBuilder::sandbox_id) / [`set_sandbox_id(Option<String>)`](crate::operation::list_command_executions_for_sandbox::builders::ListCommandExecutionsForSandboxFluentBuilder::set_sandbox_id):<br>required: **true**<br><p>A <code>sandboxId</code> or <code>sandboxArn</code>.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_command_executions_for_sandbox::builders::ListCommandExecutionsForSandboxFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_command_executions_for_sandbox::builders::ListCommandExecutionsForSandboxFluentBuilder::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_command_executions_for_sandbox::builders::ListCommandExecutionsForSandboxFluentBuilder::sort_order) / [`set_sort_order(Option<SortOrderType>)`](crate::operation::list_command_executions_for_sandbox::builders::ListCommandExecutionsForSandboxFluentBuilder::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_command_executions_for_sandbox::builders::ListCommandExecutionsForSandboxFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_command_executions_for_sandbox::builders::ListCommandExecutionsForSandboxFluentBuilder::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 [`ListCommandExecutionsForSandboxOutput`](crate::operation::list_command_executions_for_sandbox::ListCommandExecutionsForSandboxOutput) with field(s):
    ///   - [`command_executions(Option<Vec::<CommandExecution>>)`](crate::operation::list_command_executions_for_sandbox::ListCommandExecutionsForSandboxOutput::command_executions): <p>Information about the requested command executions.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_command_executions_for_sandbox::ListCommandExecutionsForSandboxOutput::next_token): <p>Information about the next token to get paginated results.</p>
    /// - On failure, responds with [`SdkError<ListCommandExecutionsForSandboxError>`](crate::operation::list_command_executions_for_sandbox::ListCommandExecutionsForSandboxError)
    pub fn list_command_executions_for_sandbox(
        &self,
    ) -> crate::operation::list_command_executions_for_sandbox::builders::ListCommandExecutionsForSandboxFluentBuilder {
        crate::operation::list_command_executions_for_sandbox::builders::ListCommandExecutionsForSandboxFluentBuilder::new(self.handle.clone())
    }
}