Struct rusoto_cognito_idp::AdminDeleteUserAttributesRequest[][src]

pub struct AdminDeleteUserAttributesRequest {
    pub user_attribute_names: Vec<String>,
    pub user_pool_id: String,
    pub username: String,
}

Represents the request to delete user attributes as an administrator.

Fields

An array of strings representing the user attribute names you wish to delete.

For custom attributes, you must prepend the custom: prefix to the attribute name.

The user pool ID for the user pool where you want to delete user attributes.

The user name of the user from which you would like to delete attributes.

Trait Implementations

impl Default for AdminDeleteUserAttributesRequest
[src]

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

impl Debug for AdminDeleteUserAttributesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for AdminDeleteUserAttributesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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