[][src]Struct rusoto_cognito_idp::AdminDeleteUserAttributesRequest

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 Clone for AdminDeleteUserAttributesRequest
[src]

Performs copy-assignment from source. Read more

impl Default for AdminDeleteUserAttributesRequest
[src]

impl PartialEq<AdminDeleteUserAttributesRequest> for AdminDeleteUserAttributesRequest
[src]

impl Debug for AdminDeleteUserAttributesRequest
[src]

impl Serialize for AdminDeleteUserAttributesRequest
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T