1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListBatchJobExecutions`](crate::operation::list_batch_job_executions::builders::ListBatchJobExecutionsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_batch_job_executions::builders::ListBatchJobExecutionsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_batch_job_executions::builders::ListBatchJobExecutionsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_batch_job_executions::builders::ListBatchJobExecutionsFluentBuilder::set_next_token): <p>A pagination token to control the number of batch job executions displayed in the list.</p>
    ///   - [`max_results(i32)`](crate::operation::list_batch_job_executions::builders::ListBatchJobExecutionsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_batch_job_executions::builders::ListBatchJobExecutionsFluentBuilder::set_max_results): <p>The maximum number of batch job executions to return.</p>
    ///   - [`application_id(impl Into<String>)`](crate::operation::list_batch_job_executions::builders::ListBatchJobExecutionsFluentBuilder::application_id) / [`set_application_id(Option<String>)`](crate::operation::list_batch_job_executions::builders::ListBatchJobExecutionsFluentBuilder::set_application_id): <p>The unique identifier of the application.</p>
    ///   - [`execution_ids(Vec<String>)`](crate::operation::list_batch_job_executions::builders::ListBatchJobExecutionsFluentBuilder::execution_ids) / [`set_execution_ids(Option<Vec<String>>)`](crate::operation::list_batch_job_executions::builders::ListBatchJobExecutionsFluentBuilder::set_execution_ids): <p>The unique identifier of each batch job execution.</p>
    ///   - [`job_name(impl Into<String>)`](crate::operation::list_batch_job_executions::builders::ListBatchJobExecutionsFluentBuilder::job_name) / [`set_job_name(Option<String>)`](crate::operation::list_batch_job_executions::builders::ListBatchJobExecutionsFluentBuilder::set_job_name): <p>The name of each batch job execution.</p>
    ///   - [`status(BatchJobExecutionStatus)`](crate::operation::list_batch_job_executions::builders::ListBatchJobExecutionsFluentBuilder::status) / [`set_status(Option<BatchJobExecutionStatus>)`](crate::operation::list_batch_job_executions::builders::ListBatchJobExecutionsFluentBuilder::set_status): <p>The status of the batch job executions.</p>
    ///   - [`started_after(DateTime)`](crate::operation::list_batch_job_executions::builders::ListBatchJobExecutionsFluentBuilder::started_after) / [`set_started_after(Option<DateTime>)`](crate::operation::list_batch_job_executions::builders::ListBatchJobExecutionsFluentBuilder::set_started_after): <p>The time after which the batch job executions started.</p>
    ///   - [`started_before(DateTime)`](crate::operation::list_batch_job_executions::builders::ListBatchJobExecutionsFluentBuilder::started_before) / [`set_started_before(Option<DateTime>)`](crate::operation::list_batch_job_executions::builders::ListBatchJobExecutionsFluentBuilder::set_started_before): <p>The time before the batch job executions started.</p>
    /// - On success, responds with [`ListBatchJobExecutionsOutput`](crate::operation::list_batch_job_executions::ListBatchJobExecutionsOutput) with field(s):
    ///   - [`batch_job_executions(Option<Vec<BatchJobExecutionSummary>>)`](crate::operation::list_batch_job_executions::ListBatchJobExecutionsOutput::batch_job_executions): <p>Returns a list of batch job executions for an application.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_batch_job_executions::ListBatchJobExecutionsOutput::next_token): <p>A pagination token that's returned when the response doesn't contain all batch job executions.</p>
    /// - On failure, responds with [`SdkError<ListBatchJobExecutionsError>`](crate::operation::list_batch_job_executions::ListBatchJobExecutionsError)
    pub fn list_batch_job_executions(
        &self,
    ) -> crate::operation::list_batch_job_executions::builders::ListBatchJobExecutionsFluentBuilder
    {
        crate::operation::list_batch_job_executions::builders::ListBatchJobExecutionsFluentBuilder::new(self.handle.clone())
    }
}