#[non_exhaustive]pub struct DescribeJobFlowsInputBuilder { /* private fields */ }Expand description
A builder for DescribeJobFlowsInput.
Implementations§
source§impl DescribeJobFlowsInputBuilder
impl DescribeJobFlowsInputBuilder
sourcepub fn created_after(self, input: DateTime) -> Self
pub fn created_after(self, input: DateTime) -> Self
Return only job flows created after this date and time.
sourcepub fn set_created_after(self, input: Option<DateTime>) -> Self
pub fn set_created_after(self, input: Option<DateTime>) -> Self
Return only job flows created after this date and time.
sourcepub fn get_created_after(&self) -> &Option<DateTime>
pub fn get_created_after(&self) -> &Option<DateTime>
Return only job flows created after this date and time.
sourcepub fn created_before(self, input: DateTime) -> Self
pub fn created_before(self, input: DateTime) -> Self
Return only job flows created before this date and time.
sourcepub fn set_created_before(self, input: Option<DateTime>) -> Self
pub fn set_created_before(self, input: Option<DateTime>) -> Self
Return only job flows created before this date and time.
sourcepub fn get_created_before(&self) -> &Option<DateTime>
pub fn get_created_before(&self) -> &Option<DateTime>
Return only job flows created before this date and time.
sourcepub fn job_flow_ids(self, input: impl Into<String>) -> Self
pub fn job_flow_ids(self, input: impl Into<String>) -> Self
Appends an item to job_flow_ids.
To override the contents of this collection use set_job_flow_ids.
Return only job flows whose job flow ID is contained in this list.
sourcepub fn set_job_flow_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_job_flow_ids(self, input: Option<Vec<String>>) -> Self
Return only job flows whose job flow ID is contained in this list.
sourcepub fn get_job_flow_ids(&self) -> &Option<Vec<String>>
pub fn get_job_flow_ids(&self) -> &Option<Vec<String>>
Return only job flows whose job flow ID is contained in this list.
sourcepub fn job_flow_states(self, input: JobFlowExecutionState) -> Self
pub fn job_flow_states(self, input: JobFlowExecutionState) -> Self
Appends an item to job_flow_states.
To override the contents of this collection use set_job_flow_states.
Return only job flows whose state is contained in this list.
sourcepub fn set_job_flow_states(
self,
input: Option<Vec<JobFlowExecutionState>>
) -> Self
pub fn set_job_flow_states( self, input: Option<Vec<JobFlowExecutionState>> ) -> Self
Return only job flows whose state is contained in this list.
sourcepub fn get_job_flow_states(&self) -> &Option<Vec<JobFlowExecutionState>>
pub fn get_job_flow_states(&self) -> &Option<Vec<JobFlowExecutionState>>
Return only job flows whose state is contained in this list.
sourcepub fn build(self) -> Result<DescribeJobFlowsInput, BuildError>
pub fn build(self) -> Result<DescribeJobFlowsInput, BuildError>
Consumes the builder and constructs a DescribeJobFlowsInput.
source§impl DescribeJobFlowsInputBuilder
impl DescribeJobFlowsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DescribeJobFlowsOutput, SdkError<DescribeJobFlowsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DescribeJobFlowsOutput, SdkError<DescribeJobFlowsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DescribeJobFlowsInputBuilder
impl Clone for DescribeJobFlowsInputBuilder
source§fn clone(&self) -> DescribeJobFlowsInputBuilder
fn clone(&self) -> DescribeJobFlowsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DescribeJobFlowsInputBuilder
impl Debug for DescribeJobFlowsInputBuilder
source§impl Default for DescribeJobFlowsInputBuilder
impl Default for DescribeJobFlowsInputBuilder
source§fn default() -> DescribeJobFlowsInputBuilder
fn default() -> DescribeJobFlowsInputBuilder
source§impl PartialEq for DescribeJobFlowsInputBuilder
impl PartialEq for DescribeJobFlowsInputBuilder
source§fn eq(&self, other: &DescribeJobFlowsInputBuilder) -> bool
fn eq(&self, other: &DescribeJobFlowsInputBuilder) -> bool
self and other values to be equal, and is used
by ==.