[][src]Struct rusoto_quicksight::GetDashboardEmbedUrlRequest

pub struct GetDashboardEmbedUrlRequest {
    pub aws_account_id: String,
    pub dashboard_id: String,
    pub identity_type: String,
    pub reset_disabled: Option<bool>,
    pub session_lifetime_in_minutes: Option<i64>,
    pub undo_redo_disabled: Option<bool>,
    pub user_arn: Option<String>,
}

Fields

aws_account_id: String

The ID for the AWS account that contains the dashboard that you're embedding.

dashboard_id: String

The ID for the dashboard, also added to the IAM policy.

identity_type: String

The authentication method that the user uses to sign in.

reset_disabled: Option<bool>

Remove the reset button on the embedded dashboard. The default is FALSE, which enables the reset button.

session_lifetime_in_minutes: Option<i64>

How many minutes the session is valid. The session lifetime must be 15-600 minutes.

undo_redo_disabled: Option<bool>

Remove the undo/redo button on the embedded dashboard. The default is FALSE, which enables the undo/redo button.

user_arn: Option<String>

The Amazon QuickSight user's Amazon Resource Name (ARN), for use with QUICKSIGHT identity type. You can use this for any Amazon QuickSight users in your account (readers, authors, or admins) authenticated as one of the following:

  • Active Directory (AD) users or group members

  • Invited nonfederated users

  • IAM users and IAM role-based sessions authenticated through Federated Single Sign-On using SAML, OpenID Connect, or IAM federation.

Trait Implementations

impl Clone for GetDashboardEmbedUrlRequest[src]

impl Debug for GetDashboardEmbedUrlRequest[src]

impl Default for GetDashboardEmbedUrlRequest[src]

impl PartialEq<GetDashboardEmbedUrlRequest> for GetDashboardEmbedUrlRequest[src]

impl Serialize for GetDashboardEmbedUrlRequest[src]

impl StructuralPartialEq for GetDashboardEmbedUrlRequest[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> From<T> for T[src]

impl<T> Instrument 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.