[][src]Struct rusoto_cognito_idp::AdminUpdateUserAttributesRequest

pub struct AdminUpdateUserAttributesRequest {
    pub user_attributes: Vec<AttributeType>,
    pub user_pool_id: String,
    pub username: String,
}

Represents the request to update the user's attributes as an administrator.

Fields

user_attributes: Vec<AttributeType>

An array of name-value pairs representing user attributes.

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

user_pool_id: String

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

username: String

The user name of the user for whom you want to update user attributes.

Trait Implementations

impl Clone for AdminUpdateUserAttributesRequest[src]

impl Default for AdminUpdateUserAttributesRequest[src]

impl PartialEq<AdminUpdateUserAttributesRequest> for AdminUpdateUserAttributesRequest[src]

impl Debug for AdminUpdateUserAttributesRequest[src]

impl StructuralPartialEq for AdminUpdateUserAttributesRequest[src]

impl Serialize for AdminUpdateUserAttributesRequest[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self