[][src]Struct rusoto_quicksight::User

pub struct User {
    pub active: Option<bool>,
    pub arn: Option<String>,
    pub custom_permissions_name: Option<String>,
    pub email: Option<String>,
    pub identity_type: Option<String>,
    pub principal_id: Option<String>,
    pub role: Option<String>,
    pub user_name: Option<String>,
}

A registered user of Amazon QuickSight.

Fields

active: Option<bool>

The active status of user. When you create an Amazon QuickSight user that’s not an IAM user or an Active Directory user, that user is inactive until they sign in and provide a password.

arn: Option<String>

The Amazon Resource Name (ARN) for the user.

custom_permissions_name: Option<String>

The custom permissions profile associated with this user.

email: Option<String>

The user's email address.

identity_type: Option<String>

The type of identity authentication used by the user.

principal_id: Option<String>

The principal ID of the user.

role: Option<String>

The Amazon QuickSight role for the user. The user role can be one of the following:.

  • READER: A user who has read-only access to dashboards.

  • AUTHOR: A user who can create data sources, datasets, analyses, and dashboards.

  • ADMIN: A user who is an author, who can also manage Amazon QuickSight settings.

  • RESTRICTEDREADER: This role isn't currently available for use.

  • RESTRICTEDAUTHOR: This role isn't currently available for use.

user_name: Option<String>

The user's user name.

Trait Implementations

impl Clone for User[src]

impl Debug for User[src]

impl Default for User[src]

impl<'de> Deserialize<'de> for User[src]

impl PartialEq<User> for User[src]

impl StructuralPartialEq for User[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.