[][src]Struct rusoto_quicksight::GetSessionEmbedUrlRequest

pub struct GetSessionEmbedUrlRequest {
    pub aws_account_id: String,
    pub entry_point: Option<String>,
    pub session_lifetime_in_minutes: Option<i64>,
    pub user_arn: Option<String>,
}

Fields

aws_account_id: String

The ID for the AWS account associated with your QuickSight subscription.

entry_point: Option<String>

The URL you use to access the embedded session. The entry point URL is constrained to the following paths:

  • /start

  • /start/analyses

  • /start/dashboards

  • /start/favorites

  • /dashboards/DashboardId - where DashboardId is the actual ID key from the QuickSight console URL of the dashboard

  • /analyses/AnalysisId - where AnalysisId is the actual ID key from the QuickSight console URL of the analysis

session_lifetime_in_minutes: Option<i64>

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

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 type of Amazon QuickSight users in your account (readers, authors, or admins). They need to be authenticated as one of the following:

  1. Active Directory (AD) users or group members

  2. Invited nonfederated users

  3. AWS Identity and Access Management (IAM) users and IAM role-based sessions authenticated through Federated Single Sign-On using SAML, OpenID Connect, or IAM federation

Omit this parameter for users in the third group, IAM users and IAM role-based sessions.

Trait Implementations

impl Clone for GetSessionEmbedUrlRequest[src]

impl Debug for GetSessionEmbedUrlRequest[src]

impl Default for GetSessionEmbedUrlRequest[src]

impl PartialEq<GetSessionEmbedUrlRequest> for GetSessionEmbedUrlRequest[src]

impl Serialize for GetSessionEmbedUrlRequest[src]

impl StructuralPartialEq for GetSessionEmbedUrlRequest[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, 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.