#[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 ==.impl StructuralPartialEq for DescribeJobFlowsInputBuilder
Auto Trait Implementations§
impl Freeze for DescribeJobFlowsInputBuilder
impl RefUnwindSafe for DescribeJobFlowsInputBuilder
impl Send for DescribeJobFlowsInputBuilder
impl Sync for DescribeJobFlowsInputBuilder
impl Unpin for DescribeJobFlowsInputBuilder
impl UnwindSafe for DescribeJobFlowsInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more