[][src]Struct rusoto_sagemaker_a2i_runtime::DescribeHumanLoopResponse

pub struct DescribeHumanLoopResponse {
    pub creation_time: f64,
    pub failure_code: Option<String>,
    pub failure_reason: Option<String>,
    pub flow_definition_arn: String,
    pub human_loop_arn: String,
    pub human_loop_name: String,
    pub human_loop_output: Option<HumanLoopOutput>,
    pub human_loop_status: String,
}

Fields

creation_time: f64

The creation time when Amazon Augmented AI created the human loop.

failure_code: Option<String>

A failure code that identifies the type of failure.

failure_reason: Option<String>

The reason why a human loop failed. The failure reason is returned when the status of the human loop is Failed.

flow_definition_arn: String

The Amazon Resource Name (ARN) of the flow definition.

human_loop_arn: String

The Amazon Resource Name (ARN) of the human loop.

human_loop_name: String

The name of the human loop. The name must be lowercase, unique within the Region in your account, and can have up to 63 characters. Valid characters: a-z, 0-9, and - (hyphen).

human_loop_output: Option<HumanLoopOutput>

An object that contains information about the output of the human loop.

human_loop_status: String

The status of the human loop.

Trait Implementations

impl Clone for DescribeHumanLoopResponse[src]

impl Debug for DescribeHumanLoopResponse[src]

impl Default for DescribeHumanLoopResponse[src]

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

impl PartialEq<DescribeHumanLoopResponse> for DescribeHumanLoopResponse[src]

impl StructuralPartialEq for DescribeHumanLoopResponse[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.