pub struct Workteam {
pub create_date: Option<f64>,
pub description: String,
pub last_updated_date: Option<f64>,
pub member_definitions: Vec<MemberDefinition>,
pub notification_configuration: Option<NotificationConfiguration>,
pub product_listing_ids: Option<Vec<String>>,
pub sub_domain: Option<String>,
pub workteam_arn: String,
pub workteam_name: String,
}
Expand description
Provides details about a labeling work team.
Fields§
§create_date: Option<f64>
The date and time that the work team was created (timestamp).
description: String
A description of the work team.
last_updated_date: Option<f64>
The date and time that the work team was last updated (timestamp).
member_definitions: Vec<MemberDefinition>
The Amazon Cognito user groups that make up the work team.
notification_configuration: Option<NotificationConfiguration>
Configures SNS notifications of available or expiring work items for work teams.
product_listing_ids: Option<Vec<String>>
The Amazon Marketplace identifier for a vendor's work team.
sub_domain: Option<String>
The URI of the labeling job's user interface. Workers open this URI to start labeling your data objects.
workteam_arn: String
The Amazon Resource Name (ARN) that identifies the work team.
workteam_name: String
The name of the work team.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Workteam
impl<'de> Deserialize<'de> for Workteam
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
impl StructuralPartialEq for Workteam
Auto Trait Implementations§
impl Freeze for Workteam
impl RefUnwindSafe for Workteam
impl Send for Workteam
impl Sync for Workteam
impl Unpin for Workteam
impl UnwindSafe for Workteam
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