[][src]Struct rusoto_cognito_identity::SetIdentityPoolRolesInput

pub struct SetIdentityPoolRolesInput {
    pub identity_pool_id: String,
    pub role_mappings: Option<HashMap<String, RoleMapping>>,
    pub roles: HashMap<String, String>,
}

Input to the SetIdentityPoolRoles action.

Fields

An identity pool ID in the format REGION:GUID.

How users for a specific identity provider are to mapped to roles. This is a string to RoleMapping object map. The string identifies the identity provider, for example, "graph.facebook.com" or "cognito-idp-east-1.amazonaws.com/us-east-1_abcdefghi:app_client_id".

Up to 25 rules can be specified per identity provider.

The map of roles associated with this pool. For a given role, the key will be either "authenticated" or "unauthenticated" and the value will be the Role ARN.

Trait Implementations

impl Clone for SetIdentityPoolRolesInput
[src]

Performs copy-assignment from source. Read more

impl Default for SetIdentityPoolRolesInput
[src]

impl PartialEq<SetIdentityPoolRolesInput> for SetIdentityPoolRolesInput
[src]

impl Debug for SetIdentityPoolRolesInput
[src]

impl Serialize for SetIdentityPoolRolesInput
[src]

Auto Trait Implementations

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]

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, 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> BorrowMut for T where
    T: ?Sized
[src]

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T