[][src]Struct rusoto_sagemaker::OidcMemberDefinition

pub struct OidcMemberDefinition {
    pub groups: Vec<String>,
}

A list of user groups that exist in your OIDC Identity Provider (IdP). One to ten groups can be used to create a single private work team. When you add a user group to the list of Groups, you can add that user group to one or more private work teams. If you add a user group to a private work team, all workers in that user group are added to the work team.

Fields

groups: Vec<String>

A list of comma seperated strings that identifies user groups in your OIDC IdP. Each user group is made up of a group of private workers.

Trait Implementations

impl Clone for OidcMemberDefinition[src]

impl Debug for OidcMemberDefinition[src]

impl Default for OidcMemberDefinition[src]

impl<'de> Deserialize<'de> for OidcMemberDefinition[src]

impl PartialEq<OidcMemberDefinition> for OidcMemberDefinition[src]

impl Serialize for OidcMemberDefinition[src]

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