1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListBatchJobDefinitions`](crate::operation::list_batch_job_definitions::builders::ListBatchJobDefinitionsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_batch_job_definitions::builders::ListBatchJobDefinitionsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_batch_job_definitions::builders::ListBatchJobDefinitionsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_batch_job_definitions::builders::ListBatchJobDefinitionsFluentBuilder::set_next_token):<br>required: **false**<br><p>A pagination token returned from a previous call to this operation. This specifies the next item to return. To return to the beginning of the list, exclude this parameter.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_batch_job_definitions::builders::ListBatchJobDefinitionsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_batch_job_definitions::builders::ListBatchJobDefinitionsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of batch job definitions to return.</p><br>
    ///   - [`application_id(impl Into<String>)`](crate::operation::list_batch_job_definitions::builders::ListBatchJobDefinitionsFluentBuilder::application_id) / [`set_application_id(Option<String>)`](crate::operation::list_batch_job_definitions::builders::ListBatchJobDefinitionsFluentBuilder::set_application_id):<br>required: **true**<br><p>The identifier of the application.</p><br>
    ///   - [`prefix(impl Into<String>)`](crate::operation::list_batch_job_definitions::builders::ListBatchJobDefinitionsFluentBuilder::prefix) / [`set_prefix(Option<String>)`](crate::operation::list_batch_job_definitions::builders::ListBatchJobDefinitionsFluentBuilder::set_prefix):<br>required: **false**<br><p>If the batch job definition is a FileBatchJobDefinition, the prefix allows you to search on the file names of FileBatchJobDefinitions.</p><br>
    /// - On success, responds with [`ListBatchJobDefinitionsOutput`](crate::operation::list_batch_job_definitions::ListBatchJobDefinitionsOutput) with field(s):
    ///   - [`batch_job_definitions(Vec::<BatchJobDefinition>)`](crate::operation::list_batch_job_definitions::ListBatchJobDefinitionsOutput::batch_job_definitions): <p>The list of batch job definitions.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_batch_job_definitions::ListBatchJobDefinitionsOutput::next_token): <p>If there are more items to return, this contains a token that is passed to a subsequent call to this operation to retrieve the next set of items.</p>
    /// - On failure, responds with [`SdkError<ListBatchJobDefinitionsError>`](crate::operation::list_batch_job_definitions::ListBatchJobDefinitionsError)
    pub fn list_batch_job_definitions(&self) -> crate::operation::list_batch_job_definitions::builders::ListBatchJobDefinitionsFluentBuilder {
        crate::operation::list_batch_job_definitions::builders::ListBatchJobDefinitionsFluentBuilder::new(self.handle.clone())
    }
}