pub struct DescribeFlowDefinitionResponse {
pub creation_time: f64,
pub failure_reason: Option<String>,
pub flow_definition_arn: String,
pub flow_definition_name: String,
pub flow_definition_status: String,
pub human_loop_activation_config: Option<HumanLoopActivationConfig>,
pub human_loop_config: HumanLoopConfig,
pub human_loop_request_source: Option<HumanLoopRequestSource>,
pub output_config: FlowDefinitionOutputConfig,
pub role_arn: String,
}
Fields§
§creation_time: f64
The timestamp when the flow definition was created.
failure_reason: Option<String>
The reason your flow definition failed.
flow_definition_arn: String
The Amazon Resource Name (ARN) of the flow defintion.
flow_definition_name: String
The Amazon Resource Name (ARN) of the flow definition.
flow_definition_status: String
The status of the flow definition. Valid values are listed below.
human_loop_activation_config: Option<HumanLoopActivationConfig>
An object containing information about what triggers a human review workflow.
human_loop_config: HumanLoopConfig
An object containing information about who works on the task, the workforce task price, and other task details.
human_loop_request_source: Option<HumanLoopRequestSource>
Container for configuring the source of human task requests. Used to specify if Amazon Rekognition or Amazon Textract is used as an integration source.
output_config: FlowDefinitionOutputConfig
An object containing information about the output file.
role_arn: String
The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) execution role for the flow definition.
Trait Implementations§
Source§impl Clone for DescribeFlowDefinitionResponse
impl Clone for DescribeFlowDefinitionResponse
Source§fn clone(&self) -> DescribeFlowDefinitionResponse
fn clone(&self) -> DescribeFlowDefinitionResponse
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for DescribeFlowDefinitionResponse
impl Default for DescribeFlowDefinitionResponse
Source§fn default() -> DescribeFlowDefinitionResponse
fn default() -> DescribeFlowDefinitionResponse
Source§impl<'de> Deserialize<'de> for DescribeFlowDefinitionResponse
impl<'de> Deserialize<'de> for DescribeFlowDefinitionResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for DescribeFlowDefinitionResponse
impl PartialEq for DescribeFlowDefinitionResponse
Source§fn eq(&self, other: &DescribeFlowDefinitionResponse) -> bool
fn eq(&self, other: &DescribeFlowDefinitionResponse) -> bool
self
and other
values to be equal, and is used by ==
.