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]

[src]

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

impl Debug for AdminDeleteUserAttributesRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for AdminDeleteUserAttributesRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations