Struct aws_sdk_m2::client::fluent_builders::ListBatchJobExecutions
source · pub struct ListBatchJobExecutions { /* private fields */ }Expand description
Fluent builder constructing a request to ListBatchJobExecutions.
Lists historical, current, and scheduled batch job executions for a specific application.
Implementations§
source§impl ListBatchJobExecutions
impl ListBatchJobExecutions
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<ListBatchJobExecutions, AwsResponseRetryClassifier>, SdkError<ListBatchJobExecutionsError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<ListBatchJobExecutions, AwsResponseRetryClassifier>, SdkError<ListBatchJobExecutionsError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<ListBatchJobExecutionsOutput, SdkError<ListBatchJobExecutionsError>>
pub async fn send(
self
) -> Result<ListBatchJobExecutionsOutput, SdkError<ListBatchJobExecutionsError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn into_paginator(self) -> ListBatchJobExecutionsPaginator
pub fn into_paginator(self) -> ListBatchJobExecutionsPaginator
Create a paginator for this request
Paginators are used by calling send().await which returns a Stream.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A pagination token to control the number of batch job executions displayed in the list.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A pagination token to control the number of batch job executions displayed in the list.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of batch job executions to return.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of batch job executions to return.
sourcepub fn application_id(self, input: impl Into<String>) -> Self
pub fn application_id(self, input: impl Into<String>) -> Self
The unique identifier of the application.
sourcepub fn set_application_id(self, input: Option<String>) -> Self
pub fn set_application_id(self, input: Option<String>) -> Self
The unique identifier of the application.
sourcepub fn execution_ids(self, input: impl Into<String>) -> Self
pub fn execution_ids(self, input: impl Into<String>) -> Self
Appends an item to executionIds.
To override the contents of this collection use set_execution_ids.
The unique identifier of each batch job execution.
sourcepub fn set_execution_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_execution_ids(self, input: Option<Vec<String>>) -> Self
The unique identifier of each batch job execution.
sourcepub fn set_job_name(self, input: Option<String>) -> Self
pub fn set_job_name(self, input: Option<String>) -> Self
The name of each batch job execution.
sourcepub fn status(self, input: BatchJobExecutionStatus) -> Self
pub fn status(self, input: BatchJobExecutionStatus) -> Self
The status of the batch job executions.
sourcepub fn set_status(self, input: Option<BatchJobExecutionStatus>) -> Self
pub fn set_status(self, input: Option<BatchJobExecutionStatus>) -> Self
The status of the batch job executions.
sourcepub fn started_after(self, input: DateTime) -> Self
pub fn started_after(self, input: DateTime) -> Self
The time after which the batch job executions started.
sourcepub fn set_started_after(self, input: Option<DateTime>) -> Self
pub fn set_started_after(self, input: Option<DateTime>) -> Self
The time after which the batch job executions started.
sourcepub fn started_before(self, input: DateTime) -> Self
pub fn started_before(self, input: DateTime) -> Self
The time before the batch job executions started.
sourcepub fn set_started_before(self, input: Option<DateTime>) -> Self
pub fn set_started_before(self, input: Option<DateTime>) -> Self
The time before the batch job executions started.
Trait Implementations§
source§impl Clone for ListBatchJobExecutions
impl Clone for ListBatchJobExecutions
source§fn clone(&self) -> ListBatchJobExecutions
fn clone(&self) -> ListBatchJobExecutions
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more