#[non_exhaustive]pub struct GenerateEmbedUrlForAnonymousUserInput {
pub aws_account_id: Option<String>,
pub session_lifetime_in_minutes: Option<i64>,
pub namespace: Option<String>,
pub session_tags: Option<Vec<SessionTag>>,
pub authorized_resource_arns: Option<Vec<String>>,
pub experience_configuration: Option<AnonymousUserEmbeddingExperienceConfiguration>,
}
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 that contains the dashboard that you're embedding.
session_lifetime_in_minutes: Option<i64>
How many minutes the session is valid. The session lifetime must be in [15-600] minutes range.
namespace: Option<String>
The Amazon QuickSight namespace that the anonymous user virtually belongs to. If you are not using an Amazon QuickSight custom namespace, set this to default
.
The session tags used for row-level security. Before you use this parameter, make sure that you have configured the relevant datasets using the DataSet$RowLevelPermissionTagConfiguration
parameter so that session tags can be used to provide row-level security.
These are not the tags used for the Amazon Web Services resource tagging feature. For more information, see Using Row-Level Security (RLS) with Tags.
The Amazon Resource Names for the Amazon QuickSight resources that the user is authorized to access during the lifetime of the session. If you choose Dashboard
embedding experience, pass the list of dashboard ARNs in the account that you want the user to be able to view. Currently, you can pass up to 25 dashboard ARNs in each API call.
experience_configuration: Option<AnonymousUserEmbeddingExperienceConfiguration>
The configuration of the experience you are embedding.
Implementations
sourceimpl GenerateEmbedUrlForAnonymousUserInput
impl GenerateEmbedUrlForAnonymousUserInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GenerateEmbedUrlForAnonymousUser, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GenerateEmbedUrlForAnonymousUser, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<GenerateEmbedUrlForAnonymousUser
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GenerateEmbedUrlForAnonymousUserInput
sourceimpl GenerateEmbedUrlForAnonymousUserInput
impl GenerateEmbedUrlForAnonymousUserInput
sourcepub fn aws_account_id(&self) -> Option<&str>
pub fn aws_account_id(&self) -> Option<&str>
The ID for the Amazon Web Services account that contains the dashboard that you're embedding.
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 in [15-600] minutes range.
sourcepub fn namespace(&self) -> Option<&str>
pub fn namespace(&self) -> Option<&str>
The Amazon QuickSight namespace that the anonymous user virtually belongs to. If you are not using an Amazon QuickSight custom namespace, set this to default
.
The session tags used for row-level security. Before you use this parameter, make sure that you have configured the relevant datasets using the DataSet$RowLevelPermissionTagConfiguration
parameter so that session tags can be used to provide row-level security.
These are not the tags used for the Amazon Web Services resource tagging feature. For more information, see Using Row-Level Security (RLS) with Tags.
The Amazon Resource Names for the Amazon QuickSight resources that the user is authorized to access during the lifetime of the session. If you choose Dashboard
embedding experience, pass the list of dashboard ARNs in the account that you want the user to be able to view. Currently, you can pass up to 25 dashboard ARNs in each API call.
sourcepub fn experience_configuration(
&self
) -> Option<&AnonymousUserEmbeddingExperienceConfiguration>
pub fn experience_configuration(
&self
) -> Option<&AnonymousUserEmbeddingExperienceConfiguration>
The configuration of the experience you are embedding.
Trait Implementations
sourceimpl Clone for GenerateEmbedUrlForAnonymousUserInput
impl Clone for GenerateEmbedUrlForAnonymousUserInput
sourcefn clone(&self) -> GenerateEmbedUrlForAnonymousUserInput
fn clone(&self) -> GenerateEmbedUrlForAnonymousUserInput
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 PartialEq<GenerateEmbedUrlForAnonymousUserInput> for GenerateEmbedUrlForAnonymousUserInput
impl PartialEq<GenerateEmbedUrlForAnonymousUserInput> for GenerateEmbedUrlForAnonymousUserInput
sourcefn eq(&self, other: &GenerateEmbedUrlForAnonymousUserInput) -> bool
fn eq(&self, other: &GenerateEmbedUrlForAnonymousUserInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &GenerateEmbedUrlForAnonymousUserInput) -> bool
fn ne(&self, other: &GenerateEmbedUrlForAnonymousUserInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for GenerateEmbedUrlForAnonymousUserInput
Auto Trait Implementations
impl RefUnwindSafe for GenerateEmbedUrlForAnonymousUserInput
impl Send for GenerateEmbedUrlForAnonymousUserInput
impl Sync for GenerateEmbedUrlForAnonymousUserInput
impl Unpin for GenerateEmbedUrlForAnonymousUserInput
impl UnwindSafe for GenerateEmbedUrlForAnonymousUserInput
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