1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeFlowDefinition`](crate::operation::describe_flow_definition::builders::DescribeFlowDefinitionFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`flow_definition_name(impl Into<String>)`](crate::operation::describe_flow_definition::builders::DescribeFlowDefinitionFluentBuilder::flow_definition_name) / [`set_flow_definition_name(Option<String>)`](crate::operation::describe_flow_definition::builders::DescribeFlowDefinitionFluentBuilder::set_flow_definition_name): <p>The name of the flow definition.</p>
/// - On success, responds with [`DescribeFlowDefinitionOutput`](crate::operation::describe_flow_definition::DescribeFlowDefinitionOutput) with field(s):
/// - [`flow_definition_arn(Option<String>)`](crate::operation::describe_flow_definition::DescribeFlowDefinitionOutput::flow_definition_arn): <p>The Amazon Resource Name (ARN) of the flow defintion.</p>
/// - [`flow_definition_name(Option<String>)`](crate::operation::describe_flow_definition::DescribeFlowDefinitionOutput::flow_definition_name): <p>The Amazon Resource Name (ARN) of the flow definition.</p>
/// - [`flow_definition_status(Option<FlowDefinitionStatus>)`](crate::operation::describe_flow_definition::DescribeFlowDefinitionOutput::flow_definition_status): <p>The status of the flow definition. Valid values are listed below.</p>
/// - [`creation_time(Option<DateTime>)`](crate::operation::describe_flow_definition::DescribeFlowDefinitionOutput::creation_time): <p>The timestamp when the flow definition was created.</p>
/// - [`human_loop_request_source(Option<HumanLoopRequestSource>)`](crate::operation::describe_flow_definition::DescribeFlowDefinitionOutput::human_loop_request_source): <p>Container for configuring the source of human task requests. Used to specify if Amazon Rekognition or Amazon Textract is used as an integration source.</p>
/// - [`human_loop_activation_config(Option<HumanLoopActivationConfig>)`](crate::operation::describe_flow_definition::DescribeFlowDefinitionOutput::human_loop_activation_config): <p>An object containing information about what triggers a human review workflow.</p>
/// - [`human_loop_config(Option<HumanLoopConfig>)`](crate::operation::describe_flow_definition::DescribeFlowDefinitionOutput::human_loop_config): <p>An object containing information about who works on the task, the workforce task price, and other task details.</p>
/// - [`output_config(Option<FlowDefinitionOutputConfig>)`](crate::operation::describe_flow_definition::DescribeFlowDefinitionOutput::output_config): <p>An object containing information about the output file.</p>
/// - [`role_arn(Option<String>)`](crate::operation::describe_flow_definition::DescribeFlowDefinitionOutput::role_arn): <p>The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access Management (IAM) execution role for the flow definition.</p>
/// - [`failure_reason(Option<String>)`](crate::operation::describe_flow_definition::DescribeFlowDefinitionOutput::failure_reason): <p>The reason your flow definition failed.</p>
/// - On failure, responds with [`SdkError<DescribeFlowDefinitionError>`](crate::operation::describe_flow_definition::DescribeFlowDefinitionError)
pub fn describe_flow_definition(
&self,
) -> crate::operation::describe_flow_definition::builders::DescribeFlowDefinitionFluentBuilder
{
crate::operation::describe_flow_definition::builders::DescribeFlowDefinitionFluentBuilder::new(self.handle.clone())
}
}