[][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

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.

The rules to be used for mapping users to roles.

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

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 Clone for RoleMapping
[src]

Performs copy-assignment from source. Read more

impl Default for RoleMapping
[src]

impl PartialEq<RoleMapping> for RoleMapping
[src]

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> ToOwned for T where
    T: Clone
[src]

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

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

🔬 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> Any for T where
    T: 'static + ?Sized
[src]

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

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

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

Should always be Self