// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetFlowVersion`](crate::operation::get_flow_version::builders::GetFlowVersionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`flow_identifier(impl Into<String>)`](crate::operation::get_flow_version::builders::GetFlowVersionFluentBuilder::flow_identifier) / [`set_flow_identifier(Option<String>)`](crate::operation::get_flow_version::builders::GetFlowVersionFluentBuilder::set_flow_identifier):<br>required: **true**<br><p>The unique identifier of the flow for which to get information.</p><br>
    ///   - [`flow_version(impl Into<String>)`](crate::operation::get_flow_version::builders::GetFlowVersionFluentBuilder::flow_version) / [`set_flow_version(Option<String>)`](crate::operation::get_flow_version::builders::GetFlowVersionFluentBuilder::set_flow_version):<br>required: **true**<br><p>The version of the flow for which to get information.</p><br>
    /// - On success, responds with [`GetFlowVersionOutput`](crate::operation::get_flow_version::GetFlowVersionOutput) with field(s):
    ///   - [`name(String)`](crate::operation::get_flow_version::GetFlowVersionOutput::name): <p>The name of the version.</p>
    ///   - [`description(Option<String>)`](crate::operation::get_flow_version::GetFlowVersionOutput::description): <p>The description of the flow.</p>
    ///   - [`execution_role_arn(String)`](crate::operation::get_flow_version::GetFlowVersionOutput::execution_role_arn): <p>The Amazon Resource Name (ARN) of the service role with permissions to create a flow. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/flows-permissions.html">Create a service role for flows in Amazon Bedrock</a> in the Amazon Bedrock User Guide.</p>
    ///   - [`customer_encryption_key_arn(Option<String>)`](crate::operation::get_flow_version::GetFlowVersionOutput::customer_encryption_key_arn): <p>The Amazon Resource Name (ARN) of the KMS key that the version of the flow is encrypted with.</p>
    ///   - [`id(String)`](crate::operation::get_flow_version::GetFlowVersionOutput::id): <p>The unique identifier of the flow.</p>
    ///   - [`arn(String)`](crate::operation::get_flow_version::GetFlowVersionOutput::arn): <p>The Amazon Resource Name (ARN) of the flow.</p>
    ///   - [`status(FlowStatus)`](crate::operation::get_flow_version::GetFlowVersionOutput::status): <p>The status of the flow.</p>
    ///   - [`created_at(DateTime)`](crate::operation::get_flow_version::GetFlowVersionOutput::created_at): <p>The time at which the flow was created.</p>
    ///   - [`version(String)`](crate::operation::get_flow_version::GetFlowVersionOutput::version): <p>The version of the flow for which information was retrieved.</p>
    ///   - [`definition(Option<FlowDefinition>)`](crate::operation::get_flow_version::GetFlowVersionOutput::definition): <p>The definition of the nodes and connections between nodes in the flow.</p>
    /// - On failure, responds with [`SdkError<GetFlowVersionError>`](crate::operation::get_flow_version::GetFlowVersionError)
    pub fn get_flow_version(&self) -> crate::operation::get_flow_version::builders::GetFlowVersionFluentBuilder {
        crate::operation::get_flow_version::builders::GetFlowVersionFluentBuilder::new(self.handle.clone())
    }
}