#[non_exhaustive]pub struct GetSessionEmbedUrlInput {
pub aws_account_id: Option<String>,
pub entry_point: Option<String>,
pub session_lifetime_in_minutes: Option<i64>,
pub user_arn: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.aws_account_id: Option<String>The ID for the Amazon Web Services account associated with your Amazon 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- whereDashboardIdis the actual ID key from the Amazon QuickSight console URL of the dashboard -
/analyses/AnalysisId- whereAnalysisIdis the actual ID key from the Amazon 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:
-
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
Omit this parameter for users in the third group, IAM users and IAM role-based sessions.
Implementations§
source§impl GetSessionEmbedUrlInput
impl GetSessionEmbedUrlInput
sourcepub fn aws_account_id(&self) -> Option<&str>
pub fn aws_account_id(&self) -> Option<&str>
The ID for the Amazon Web Services account associated with your Amazon QuickSight subscription.
sourcepub fn entry_point(&self) -> Option<&str>
pub fn entry_point(&self) -> Option<&str>
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- whereDashboardIdis the actual ID key from the Amazon QuickSight console URL of the dashboard -
/analyses/AnalysisId- whereAnalysisIdis the actual ID key from the Amazon QuickSight console URL of the analysis
sourcepub fn session_lifetime_in_minutes(&self) -> Option<i64>
pub fn session_lifetime_in_minutes(&self) -> Option<i64>
How many minutes the session is valid. The session lifetime must be 15-600 minutes.
sourcepub fn user_arn(&self) -> Option<&str>
pub fn user_arn(&self) -> Option<&str>
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:
-
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
Omit this parameter for users in the third group, IAM users and IAM role-based sessions.
source§impl GetSessionEmbedUrlInput
impl GetSessionEmbedUrlInput
sourcepub fn builder() -> GetSessionEmbedUrlInputBuilder
pub fn builder() -> GetSessionEmbedUrlInputBuilder
Creates a new builder-style object to manufacture GetSessionEmbedUrlInput.
Trait Implementations§
source§impl Clone for GetSessionEmbedUrlInput
impl Clone for GetSessionEmbedUrlInput
source§fn clone(&self) -> GetSessionEmbedUrlInput
fn clone(&self) -> GetSessionEmbedUrlInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetSessionEmbedUrlInput
impl Debug for GetSessionEmbedUrlInput
source§impl PartialEq for GetSessionEmbedUrlInput
impl PartialEq for GetSessionEmbedUrlInput
source§fn eq(&self, other: &GetSessionEmbedUrlInput) -> bool
fn eq(&self, other: &GetSessionEmbedUrlInput) -> bool
self and other values to be equal, and is used
by ==.