aws_sdk_transfer/client/describe_workflow.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeWorkflow`](crate::operation::describe_workflow::builders::DescribeWorkflowFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`workflow_id(impl Into<String>)`](crate::operation::describe_workflow::builders::DescribeWorkflowFluentBuilder::workflow_id) / [`set_workflow_id(Option<String>)`](crate::operation::describe_workflow::builders::DescribeWorkflowFluentBuilder::set_workflow_id):<br>required: **true**<br><p>A unique identifier for the workflow.</p><br>
/// - On success, responds with [`DescribeWorkflowOutput`](crate::operation::describe_workflow::DescribeWorkflowOutput) with field(s):
/// - [`workflow(Option<DescribedWorkflow>)`](crate::operation::describe_workflow::DescribeWorkflowOutput::workflow): <p>The structure that contains the details of the workflow.</p>
/// - On failure, responds with [`SdkError<DescribeWorkflowError>`](crate::operation::describe_workflow::DescribeWorkflowError)
pub fn describe_workflow(&self) -> crate::operation::describe_workflow::builders::DescribeWorkflowFluentBuilder {
crate::operation::describe_workflow::builders::DescribeWorkflowFluentBuilder::new(self.handle.clone())
}
}