Struct aws_sdk_quicksight::input::GetSessionEmbedUrlInput
source · [−]#[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
- whereDashboardId
is the actual ID key from the Amazon QuickSight console URL of the dashboard -
/analyses/AnalysisId
- whereAnalysisId
is 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
-
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.
Implementations
sourceimpl GetSessionEmbedUrlInput
impl GetSessionEmbedUrlInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetSessionEmbedUrl, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetSessionEmbedUrl, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<GetSessionEmbedUrl
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetSessionEmbedUrlInput
sourceimpl 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
- whereDashboardId
is the actual ID key from the Amazon QuickSight console URL of the dashboard -
/analyses/AnalysisId
- whereAnalysisId
is 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
-
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
sourceimpl Clone for GetSessionEmbedUrlInput
impl Clone for GetSessionEmbedUrlInput
sourcefn clone(&self) -> GetSessionEmbedUrlInput
fn clone(&self) -> GetSessionEmbedUrlInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for GetSessionEmbedUrlInput
impl Debug for GetSessionEmbedUrlInput
sourceimpl PartialEq<GetSessionEmbedUrlInput> for GetSessionEmbedUrlInput
impl PartialEq<GetSessionEmbedUrlInput> for GetSessionEmbedUrlInput
sourcefn eq(&self, other: &GetSessionEmbedUrlInput) -> bool
fn eq(&self, other: &GetSessionEmbedUrlInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &GetSessionEmbedUrlInput) -> bool
fn ne(&self, other: &GetSessionEmbedUrlInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for GetSessionEmbedUrlInput
Auto Trait Implementations
impl RefUnwindSafe for GetSessionEmbedUrlInput
impl Send for GetSessionEmbedUrlInput
impl Sync for GetSessionEmbedUrlInput
impl Unpin for GetSessionEmbedUrlInput
impl UnwindSafe for GetSessionEmbedUrlInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more