Struct rusoto_cognito_idp::GroupType[][src]

pub struct GroupType {
    pub creation_date: Option<f64>,
    pub description: Option<String>,
    pub group_name: Option<String>,
    pub last_modified_date: Option<f64>,
    pub precedence: Option<i64>,
    pub role_arn: Option<String>,
    pub user_pool_id: Option<String>,
}

The group type.

Fields

The date the group was created.

A string containing the description of the group.

The name of the group.

The date the group was last modified.

A nonnegative integer value that specifies the precedence of this group relative to the other groups that a user can belong to in the user pool. If a user belongs to two or more groups, it is the group with the highest precedence whose role ARN will be used in the cognito:roles and cognito:preferred_role claims in the user's tokens. Groups with higher Precedence values take precedence over groups with lower Precedence values or with null Precedence values.

Two groups can have the same Precedence value. If this happens, neither group takes precedence over the other. If two groups with the same Precedence have the same role ARN, that role is used in the cognito:preferred_role claim in tokens for users in each group. If the two groups have different role ARNs, the cognito:preferred_role claim is not set in users' tokens.

The default Precedence value is null.

The role ARN for the group.

The user pool ID for the user pool.

Trait Implementations

impl Default for GroupType
[src]

Returns the "default value" for a type. Read more

impl Debug for GroupType
[src]

Formats the value using the given formatter. Read more

impl Clone for GroupType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GroupType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for GroupType

impl Sync for GroupType