[][src]Struct rusoto_sagemaker::CreateWorkforceRequest

pub struct CreateWorkforceRequest {
    pub cognito_config: Option<CognitoConfig>,
    pub oidc_config: Option<OidcConfig>,
    pub source_ip_config: Option<SourceIpConfig>,
    pub tags: Option<Vec<Tag>>,
    pub workforce_name: String,
}

Fields

cognito_config: Option<CognitoConfig>

Use this parameter to configure an Amazon Cognito private workforce. A single Cognito workforce is created using and corresponds to a single Amazon Cognito user pool.

Do not use OidcConfig if you specify values for CognitoConfig.

oidc_config: Option<OidcConfig>

Use this parameter to configure a private workforce using your own OIDC Identity Provider.

Do not use CognitoConfig if you specify values for OidcConfig.

source_ip_config: Option<SourceIpConfig>tags: Option<Vec<Tag>>

An array of key-value pairs that contain metadata to help you categorize and organize our workforce. Each tag consists of a key and a value, both of which you define.

workforce_name: String

The name of the private workforce.

Trait Implementations

impl Clone for CreateWorkforceRequest[src]

impl Debug for CreateWorkforceRequest[src]

impl Default for CreateWorkforceRequest[src]

impl PartialEq<CreateWorkforceRequest> for CreateWorkforceRequest[src]

impl Serialize for CreateWorkforceRequest[src]

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