// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeFlow`](crate::operation::describe_flow::builders::DescribeFlowFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`aws_account_id(impl Into<String>)`](crate::operation::describe_flow::builders::DescribeFlowFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::describe_flow::builders::DescribeFlowFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that contains the flow that you are describing.</p><br>
/// - [`flow_id(impl Into<String>)`](crate::operation::describe_flow::builders::DescribeFlowFluentBuilder::flow_id) / [`set_flow_id(Option<String>)`](crate::operation::describe_flow::builders::DescribeFlowFluentBuilder::set_flow_id):<br>required: **true**<br><p>The unique identifier of the flow.</p><br>
/// - [`publish_state(FlowPublishState)`](crate::operation::describe_flow::builders::DescribeFlowFluentBuilder::publish_state) / [`set_publish_state(Option<FlowPublishState>)`](crate::operation::describe_flow::builders::DescribeFlowFluentBuilder::set_publish_state):<br>required: **true**<br><p>The publish state of the flow version to describe. Valid values are <code>DRAFT</code>, <code>PUBLISHED</code>, or <code>PENDING_APPROVAL</code>.</p><br>
/// - On success, responds with [`DescribeFlowOutput`](crate::operation::describe_flow::DescribeFlowOutput) with field(s):
/// - [`flow(Option<FlowDetail>)`](crate::operation::describe_flow::DescribeFlowOutput::flow): <p>The full details of the flow.</p>
/// - [`request_id(Option<String>)`](crate::operation::describe_flow::DescribeFlowOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
/// - [`status(i32)`](crate::operation::describe_flow::DescribeFlowOutput::status): <p>The HTTP status of the request.</p>
/// - On failure, responds with [`SdkError<DescribeFlowError>`](crate::operation::describe_flow::DescribeFlowError)
pub fn describe_flow(&self) -> crate::operation::describe_flow::builders::DescribeFlowFluentBuilder {
crate::operation::describe_flow::builders::DescribeFlowFluentBuilder::new(self.handle.clone())
}
}