aws_sdk_emr/client/describe_job_flows.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DescribeJobFlows`](crate::operation::describe_job_flows::builders::DescribeJobFlowsFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`created_after(DateTime)`](crate::operation::describe_job_flows::builders::DescribeJobFlowsFluentBuilder::created_after) / [`set_created_after(Option<DateTime>)`](crate::operation::describe_job_flows::builders::DescribeJobFlowsFluentBuilder::set_created_after):<br>required: **false**<br><p>Return only job flows created after this date and time.</p><br>
7 /// - [`created_before(DateTime)`](crate::operation::describe_job_flows::builders::DescribeJobFlowsFluentBuilder::created_before) / [`set_created_before(Option<DateTime>)`](crate::operation::describe_job_flows::builders::DescribeJobFlowsFluentBuilder::set_created_before):<br>required: **false**<br><p>Return only job flows created before this date and time.</p><br>
8 /// - [`job_flow_ids(impl Into<String>)`](crate::operation::describe_job_flows::builders::DescribeJobFlowsFluentBuilder::job_flow_ids) / [`set_job_flow_ids(Option<Vec::<String>>)`](crate::operation::describe_job_flows::builders::DescribeJobFlowsFluentBuilder::set_job_flow_ids):<br>required: **false**<br><p>Return only job flows whose job flow ID is contained in this list.</p><br>
9 /// - [`job_flow_states(JobFlowExecutionState)`](crate::operation::describe_job_flows::builders::DescribeJobFlowsFluentBuilder::job_flow_states) / [`set_job_flow_states(Option<Vec::<JobFlowExecutionState>>)`](crate::operation::describe_job_flows::builders::DescribeJobFlowsFluentBuilder::set_job_flow_states):<br>required: **false**<br><p>Return only job flows whose state is contained in this list.</p><br>
10 /// - On success, responds with [`DescribeJobFlowsOutput`](crate::operation::describe_job_flows::DescribeJobFlowsOutput) with field(s):
11 /// - [`job_flows(Option<Vec::<JobFlowDetail>>)`](crate::operation::describe_job_flows::DescribeJobFlowsOutput::job_flows): <p>A list of job flows matching the parameters supplied.</p>
12 /// - On failure, responds with [`SdkError<DescribeJobFlowsError>`](crate::operation::describe_job_flows::DescribeJobFlowsError)
13 #[deprecated]
14 pub fn describe_job_flows(&self) -> crate::operation::describe_job_flows::builders::DescribeJobFlowsFluentBuilder {
15 crate::operation::describe_job_flows::builders::DescribeJobFlowsFluentBuilder::new(self.handle.clone())
16 }
17}