[][src]Struct rusoto_cognito_identity::RoleMapping

pub struct RoleMapping {
    pub ambiguous_role_resolution: Option<String>,
    pub rules_configuration: Option<RulesConfigurationType>,
    pub type_: String,
}

A role mapping.

Fields

ambiguous_role_resolution: Option<String>

If you specify Token or Rules as the Type, AmbiguousRoleResolution is required.

Specifies the action to be taken if either no rules match the claim value for the Rules type, or there is no cognito:preferred_role claim and there are multiple cognito:roles matches for the Token type.

rules_configuration: Option<RulesConfigurationType>

The rules to be used for mapping users to roles.

If you specify Rules as the role mapping type, RulesConfiguration is required.

type_: String

The role mapping type. Token will use cognito:roles and cognito:preferred_role claims from the Cognito identity provider token to map groups to roles. Rules will attempt to match claims from the token to map to a role.

Trait Implementations

impl PartialEq<RoleMapping> for RoleMapping[src]

impl Default for RoleMapping[src]

impl Clone for RoleMapping[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for RoleMapping[src]

impl Serialize for RoleMapping[src]

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

Auto Trait Implementations

impl Send for RoleMapping

impl Sync for RoleMapping

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self