#[non_exhaustive]pub struct ListBatchJobExecutionsInput {
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub application_id: Option<String>,
pub execution_ids: Option<Vec<String>>,
pub job_name: Option<String>,
pub status: Option<BatchJobExecutionStatus>,
pub started_after: Option<DateTime>,
pub started_before: Option<DateTime>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.next_token: Option<String>A pagination token to control the number of batch job executions displayed in the list.
max_results: Option<i32>The maximum number of batch job executions to return.
application_id: Option<String>The unique identifier of the application.
execution_ids: Option<Vec<String>>The unique identifier of each batch job execution.
job_name: Option<String>The name of each batch job execution.
status: Option<BatchJobExecutionStatus>The status of the batch job executions.
started_after: Option<DateTime>The time after which the batch job executions started.
started_before: Option<DateTime>The time before the batch job executions started.
Implementations§
source§impl ListBatchJobExecutionsInput
impl ListBatchJobExecutionsInput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A pagination token to control the number of batch job executions displayed in the list.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of batch job executions to return.
sourcepub fn application_id(&self) -> Option<&str>
pub fn application_id(&self) -> Option<&str>
The unique identifier of the application.
sourcepub fn execution_ids(&self) -> &[String]
pub fn execution_ids(&self) -> &[String]
The unique identifier of each batch job execution.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .execution_ids.is_none().
sourcepub fn status(&self) -> Option<&BatchJobExecutionStatus>
pub fn status(&self) -> Option<&BatchJobExecutionStatus>
The status of the batch job executions.
sourcepub fn started_after(&self) -> Option<&DateTime>
pub fn started_after(&self) -> Option<&DateTime>
The time after which the batch job executions started.
sourcepub fn started_before(&self) -> Option<&DateTime>
pub fn started_before(&self) -> Option<&DateTime>
The time before the batch job executions started.
source§impl ListBatchJobExecutionsInput
impl ListBatchJobExecutionsInput
sourcepub fn builder() -> ListBatchJobExecutionsInputBuilder
pub fn builder() -> ListBatchJobExecutionsInputBuilder
Creates a new builder-style object to manufacture ListBatchJobExecutionsInput.
Trait Implementations§
source§impl Clone for ListBatchJobExecutionsInput
impl Clone for ListBatchJobExecutionsInput
source§fn clone(&self) -> ListBatchJobExecutionsInput
fn clone(&self) -> ListBatchJobExecutionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListBatchJobExecutionsInput
impl Debug for ListBatchJobExecutionsInput
source§impl PartialEq for ListBatchJobExecutionsInput
impl PartialEq for ListBatchJobExecutionsInput
source§fn eq(&self, other: &ListBatchJobExecutionsInput) -> bool
fn eq(&self, other: &ListBatchJobExecutionsInput) -> bool
self and other values to be equal, and is used
by ==.