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
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`BatchGetCommandExecutions`](crate::operation::batch_get_command_executions::builders::BatchGetCommandExecutionsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`sandbox_id(impl Into<String>)`](crate::operation::batch_get_command_executions::builders::BatchGetCommandExecutionsFluentBuilder::sandbox_id) / [`set_sandbox_id(Option<String>)`](crate::operation::batch_get_command_executions::builders::BatchGetCommandExecutionsFluentBuilder::set_sandbox_id):<br>required: **true**<br><p>A <code>sandboxId</code> or <code>sandboxArn</code>.</p><br>
    ///   - [`command_execution_ids(impl Into<String>)`](crate::operation::batch_get_command_executions::builders::BatchGetCommandExecutionsFluentBuilder::command_execution_ids) / [`set_command_execution_ids(Option<Vec::<String>>)`](crate::operation::batch_get_command_executions::builders::BatchGetCommandExecutionsFluentBuilder::set_command_execution_ids):<br>required: **true**<br><p>A comma separated list of <code>commandExecutionIds</code>.</p><br>
    /// - On success, responds with [`BatchGetCommandExecutionsOutput`](crate::operation::batch_get_command_executions::BatchGetCommandExecutionsOutput) with field(s):
    ///   - [`command_executions(Option<Vec::<CommandExecution>>)`](crate::operation::batch_get_command_executions::BatchGetCommandExecutionsOutput::command_executions): <p>Information about the requested command executions.</p>
    ///   - [`command_executions_not_found(Option<Vec::<String>>)`](crate::operation::batch_get_command_executions::BatchGetCommandExecutionsOutput::command_executions_not_found): <p>The IDs of command executions for which information could not be found.</p>
    /// - On failure, responds with [`SdkError<BatchGetCommandExecutionsError>`](crate::operation::batch_get_command_executions::BatchGetCommandExecutionsError)
    pub fn batch_get_command_executions(&self) -> crate::operation::batch_get_command_executions::builders::BatchGetCommandExecutionsFluentBuilder {
        crate::operation::batch_get_command_executions::builders::BatchGetCommandExecutionsFluentBuilder::new(self.handle.clone())
    }
}