[][src]Struct rusoto_rekognition::HumanLoopConfig

pub struct HumanLoopConfig {
    pub data_attributes: Option<HumanLoopDataAttributes>,
    pub flow_definition_arn: String,
    pub human_loop_name: String,
}

Sets up the flow definition the image will be sent to if one of the conditions is met. You can also set certain attributes of the image before review.

Fields

data_attributes: Option<HumanLoopDataAttributes>

Sets attributes of the input data.

flow_definition_arn: String

The Amazon Resource Name (ARN) of the flow definition. You can create a flow definition by using the Amazon Sagemaker CreateFlowDefinition Operation.

human_loop_name: String

The name of the human review used for this image. This should be kept unique within a region.

Trait Implementations

impl Clone for HumanLoopConfig[src]

impl Debug for HumanLoopConfig[src]

impl Default for HumanLoopConfig[src]

impl PartialEq<HumanLoopConfig> for HumanLoopConfig[src]

impl Serialize for HumanLoopConfig[src]

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