pub struct CreateWorkteamRequest {
pub description: String,
pub member_definitions: Vec<MemberDefinition>,
pub notification_configuration: Option<NotificationConfiguration>,
pub tags: Option<Vec<Tag>>,
pub workteam_name: String,
}
Fields§
§description: String
A description of the work team.
member_definitions: Vec<MemberDefinition>
A list of MemberDefinition
objects that contains objects that identify the Amazon Cognito user pool that makes up the work team. For more information, see Amazon Cognito User Pools.
All of the CognitoMemberDefinition
objects that make up the member definition must have the same ClientId
and UserPool
values.
notification_configuration: Option<NotificationConfiguration>
Configures notification of workers regarding available or expiring work items.
An array of key-value pairs.
For more information, see Resource Tag and Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide.
workteam_name: String
The name of the work team. Use this name to identify the work team.
Trait Implementations§
Source§impl Clone for CreateWorkteamRequest
impl Clone for CreateWorkteamRequest
Source§fn clone(&self) -> CreateWorkteamRequest
fn clone(&self) -> CreateWorkteamRequest
Returns a duplicate 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 CreateWorkteamRequest
impl Debug for CreateWorkteamRequest
Source§impl Default for CreateWorkteamRequest
impl Default for CreateWorkteamRequest
Source§fn default() -> CreateWorkteamRequest
fn default() -> CreateWorkteamRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateWorkteamRequest
impl PartialEq for CreateWorkteamRequest
Source§impl Serialize for CreateWorkteamRequest
impl Serialize for CreateWorkteamRequest
impl StructuralPartialEq for CreateWorkteamRequest
Auto Trait Implementations§
impl Freeze for CreateWorkteamRequest
impl RefUnwindSafe for CreateWorkteamRequest
impl Send for CreateWorkteamRequest
impl Sync for CreateWorkteamRequest
impl Unpin for CreateWorkteamRequest
impl UnwindSafe for CreateWorkteamRequest
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