[][src]Struct rusoto_sagemaker::DescribeFlowDefinitionResponse

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

impl Clone for DescribeFlowDefinitionResponse[src]

impl Debug for DescribeFlowDefinitionResponse[src]

impl Default for DescribeFlowDefinitionResponse[src]

impl<'de> Deserialize<'de> for DescribeFlowDefinitionResponse[src]

impl PartialEq<DescribeFlowDefinitionResponse> for DescribeFlowDefinitionResponse[src]

impl StructuralPartialEq for DescribeFlowDefinitionResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.