Struct aws_sdk_quicksight::operation::describe_account_settings::DescribeAccountSettingsOutput
source · #[non_exhaustive]pub struct DescribeAccountSettingsOutput {
pub account_settings: Option<AccountSettings>,
pub request_id: Option<String>,
pub status: i32,
/* private fields */
}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.account_settings: Option<AccountSettings>The Amazon QuickSight settings for this Amazon Web Services account. This information includes the edition of Amazon Amazon QuickSight that you subscribed to (Standard or Enterprise) and the notification email for the Amazon QuickSight subscription.
In the QuickSight console, the Amazon QuickSight subscription is sometimes referred to as a QuickSight "account" even though it's technically not an account by itself. Instead, it's a subscription to the Amazon QuickSight service for your Amazon Web Services account. The edition that you subscribe to applies to Amazon QuickSight in every Amazon Web Services Region where you use it.
request_id: Option<String>The Amazon Web Services request ID for this operation.
status: i32The HTTP status of the request.
Implementations§
source§impl DescribeAccountSettingsOutput
impl DescribeAccountSettingsOutput
sourcepub fn account_settings(&self) -> Option<&AccountSettings>
pub fn account_settings(&self) -> Option<&AccountSettings>
The Amazon QuickSight settings for this Amazon Web Services account. This information includes the edition of Amazon Amazon QuickSight that you subscribed to (Standard or Enterprise) and the notification email for the Amazon QuickSight subscription.
In the QuickSight console, the Amazon QuickSight subscription is sometimes referred to as a QuickSight "account" even though it's technically not an account by itself. Instead, it's a subscription to the Amazon QuickSight service for your Amazon Web Services account. The edition that you subscribe to applies to Amazon QuickSight in every Amazon Web Services Region where you use it.
sourcepub fn request_id(&self) -> Option<&str>
pub fn request_id(&self) -> Option<&str>
The Amazon Web Services request ID for this operation.
source§impl DescribeAccountSettingsOutput
impl DescribeAccountSettingsOutput
sourcepub fn builder() -> DescribeAccountSettingsOutputBuilder
pub fn builder() -> DescribeAccountSettingsOutputBuilder
Creates a new builder-style object to manufacture DescribeAccountSettingsOutput.
Trait Implementations§
source§impl Clone for DescribeAccountSettingsOutput
impl Clone for DescribeAccountSettingsOutput
source§fn clone(&self) -> DescribeAccountSettingsOutput
fn clone(&self) -> DescribeAccountSettingsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for DescribeAccountSettingsOutput
impl PartialEq for DescribeAccountSettingsOutput
source§fn eq(&self, other: &DescribeAccountSettingsOutput) -> bool
fn eq(&self, other: &DescribeAccountSettingsOutput) -> bool
self and other values to be equal, and is used by ==.source§impl RequestId for DescribeAccountSettingsOutput
impl RequestId for DescribeAccountSettingsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for DescribeAccountSettingsOutput
Auto Trait Implementations§
impl Freeze for DescribeAccountSettingsOutput
impl RefUnwindSafe for DescribeAccountSettingsOutput
impl Send for DescribeAccountSettingsOutput
impl Sync for DescribeAccountSettingsOutput
impl Unpin for DescribeAccountSettingsOutput
impl UnwindSafe for DescribeAccountSettingsOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more