aws_sdk_codebuild/client/batch_get_command_executions.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 [`BatchGetCommandExecutions`](crate::operation::batch_get_command_executions::builders::BatchGetCommandExecutionsFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - On success, responds with [`BatchGetCommandExecutionsOutput`](crate::operation::batch_get_command_executions::BatchGetCommandExecutionsOutput) with field(s):
9 /// - [`command_executions(Option<Vec::<CommandExecution>>)`](crate::operation::batch_get_command_executions::BatchGetCommandExecutionsOutput::command_executions): <p>Information about the requested command executions.</p>
10 /// - [`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>
11 /// - On failure, responds with [`SdkError<BatchGetCommandExecutionsError>`](crate::operation::batch_get_command_executions::BatchGetCommandExecutionsError)
12 pub fn batch_get_command_executions(&self) -> crate::operation::batch_get_command_executions::builders::BatchGetCommandExecutionsFluentBuilder {
13 crate::operation::batch_get_command_executions::builders::BatchGetCommandExecutionsFluentBuilder::new(self.handle.clone())
14 }
15}