Struct rusoto_cognito_idp::UpdateGroupRequest[][src]

pub struct UpdateGroupRequest {
    pub description: Option<String>,
    pub group_name: String,
    pub precedence: Option<i64>,
    pub role_arn: Option<String>,
    pub user_pool_id: String,
}

Fields

A string containing the new description of the group.

The name of the group.

The new precedence value for the group. For more information about this parameter, see .

The new role ARN for the group. This is used for setting the cognito:roles and cognito:preferred_role claims in the token.

The user pool ID for the user pool.

Trait Implementations

impl Default for UpdateGroupRequest
[src]

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

impl Debug for UpdateGroupRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateGroupRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateGroupRequest
[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