Struct aws_sdk_m2::operation::list_batch_job_executions::builders::ListBatchJobExecutionsInputBuilder
source · #[non_exhaustive]pub struct ListBatchJobExecutionsInputBuilder { /* private fields */ }Expand description
A builder for ListBatchJobExecutionsInput.
Implementations§
source§impl ListBatchJobExecutionsInputBuilder
impl ListBatchJobExecutionsInputBuilder
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 get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
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 get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
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.
This field is required.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 get_application_id(&self) -> &Option<String>
pub fn get_application_id(&self) -> &Option<String>
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 execution_ids.
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 get_execution_ids(&self) -> &Option<Vec<String>>
pub fn get_execution_ids(&self) -> &Option<Vec<String>>
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 get_job_name(&self) -> &Option<String>
pub fn get_job_name(&self) -> &Option<String>
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 get_status(&self) -> &Option<BatchJobExecutionStatus>
pub fn get_status(&self) -> &Option<BatchJobExecutionStatus>
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 get_started_after(&self) -> &Option<DateTime>
pub fn get_started_after(&self) -> &Option<DateTime>
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.
sourcepub fn get_started_before(&self) -> &Option<DateTime>
pub fn get_started_before(&self) -> &Option<DateTime>
The time before the batch job executions started.
sourcepub fn build(self) -> Result<ListBatchJobExecutionsInput, BuildError>
pub fn build(self) -> Result<ListBatchJobExecutionsInput, BuildError>
Consumes the builder and constructs a ListBatchJobExecutionsInput.
source§impl ListBatchJobExecutionsInputBuilder
impl ListBatchJobExecutionsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListBatchJobExecutionsOutput, SdkError<ListBatchJobExecutionsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListBatchJobExecutionsOutput, SdkError<ListBatchJobExecutionsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListBatchJobExecutionsInputBuilder
impl Clone for ListBatchJobExecutionsInputBuilder
source§fn clone(&self) -> ListBatchJobExecutionsInputBuilder
fn clone(&self) -> ListBatchJobExecutionsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListBatchJobExecutionsInputBuilder
impl Default for ListBatchJobExecutionsInputBuilder
source§fn default() -> ListBatchJobExecutionsInputBuilder
fn default() -> ListBatchJobExecutionsInputBuilder
source§impl PartialEq for ListBatchJobExecutionsInputBuilder
impl PartialEq for ListBatchJobExecutionsInputBuilder
source§fn eq(&self, other: &ListBatchJobExecutionsInputBuilder) -> bool
fn eq(&self, other: &ListBatchJobExecutionsInputBuilder) -> bool
self and other values to be equal, and is used
by ==.