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 CreateGroup.

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]

[src]

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

impl Debug for UpdateGroupRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateGroupRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations