[][src]Struct rusoto_sagemaker::HumanLoopConfig

pub struct HumanLoopConfig {
    pub human_task_ui_arn: String,
    pub public_workforce_task_price: Option<PublicWorkforceTaskPrice>,
    pub task_availability_lifetime_in_seconds: Option<i64>,
    pub task_count: i64,
    pub task_description: String,
    pub task_keywords: Option<Vec<String>>,
    pub task_time_limit_in_seconds: Option<i64>,
    pub task_title: String,
    pub workteam_arn: String,
}

Describes the work to be performed by human workers.

Fields

human_task_ui_arn: String

The Amazon Resource Name (ARN) of the human task user interface.

public_workforce_task_price: Option<PublicWorkforceTaskPrice>task_availability_lifetime_in_seconds: Option<i64>

The length of time that a task remains available for labeling by human workers.

task_count: i64

The number of distinct workers who will perform the same task on each object. For example, if TaskCount is set to 3 for an image classification labeling job, three workers will classify each input image. Increasing TaskCount can improve label accuracy.

task_description: String

A description for the human worker task.

task_keywords: Option<Vec<String>>

Keywords used to describe the task so that workers can discover the task.

task_time_limit_in_seconds: Option<i64>

The amount of time that a worker has to complete a task.

task_title: String

A title for the human worker task.

workteam_arn: String

Amazon Resource Name (ARN) of a team of workers.

Trait Implementations

impl Clone for HumanLoopConfig[src]

impl Debug for HumanLoopConfig[src]

impl Default for HumanLoopConfig[src]

impl<'de> Deserialize<'de> 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> 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> 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.