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,
}
Expand description
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§
Source§impl Clone for HumanLoopConfig
impl Clone for HumanLoopConfig
Source§fn clone(&self) -> HumanLoopConfig
fn clone(&self) -> HumanLoopConfig
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for HumanLoopConfig
impl Debug for HumanLoopConfig
Source§impl Default for HumanLoopConfig
impl Default for HumanLoopConfig
Source§fn default() -> HumanLoopConfig
fn default() -> HumanLoopConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HumanLoopConfig
impl<'de> Deserialize<'de> for HumanLoopConfig
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for HumanLoopConfig
impl PartialEq for HumanLoopConfig
Source§impl Serialize for HumanLoopConfig
impl Serialize for HumanLoopConfig
impl StructuralPartialEq for HumanLoopConfig
Auto Trait Implementations§
impl Freeze for HumanLoopConfig
impl RefUnwindSafe for HumanLoopConfig
impl Send for HumanLoopConfig
impl Sync for HumanLoopConfig
impl Unpin for HumanLoopConfig
impl UnwindSafe for HumanLoopConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more