#[non_exhaustive]pub struct DescribeAccountCustomizationInput {
pub aws_account_id: Option<String>,
pub namespace: Option<String>,
pub resolved: bool,
}
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 you want to describe Amazon QuickSight customizations for.
namespace: Option<String>
The Amazon QuickSight namespace that you want to describe Amazon QuickSight customizations for.
resolved: bool
The Resolved
flag works with the other parameters to determine which view of Amazon QuickSight customizations is returned. You can add this flag to your command to use the same view that Amazon QuickSight uses to identify which customizations to apply to the console. Omit this flag, or set it to no-resolved
, to reveal customizations that are configured at different levels.
Implementations
sourceimpl DescribeAccountCustomizationInput
impl DescribeAccountCustomizationInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeAccountCustomization, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeAccountCustomization, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeAccountCustomization
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeAccountCustomizationInput
sourceimpl DescribeAccountCustomizationInput
impl DescribeAccountCustomizationInput
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 you want to describe Amazon QuickSight customizations for.
sourcepub fn namespace(&self) -> Option<&str>
pub fn namespace(&self) -> Option<&str>
The Amazon QuickSight namespace that you want to describe Amazon QuickSight customizations for.
sourcepub fn resolved(&self) -> bool
pub fn resolved(&self) -> bool
The Resolved
flag works with the other parameters to determine which view of Amazon QuickSight customizations is returned. You can add this flag to your command to use the same view that Amazon QuickSight uses to identify which customizations to apply to the console. Omit this flag, or set it to no-resolved
, to reveal customizations that are configured at different levels.
Trait Implementations
sourceimpl Clone for DescribeAccountCustomizationInput
impl Clone for DescribeAccountCustomizationInput
sourcefn clone(&self) -> DescribeAccountCustomizationInput
fn clone(&self) -> DescribeAccountCustomizationInput
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<DescribeAccountCustomizationInput> for DescribeAccountCustomizationInput
impl PartialEq<DescribeAccountCustomizationInput> for DescribeAccountCustomizationInput
sourcefn eq(&self, other: &DescribeAccountCustomizationInput) -> bool
fn eq(&self, other: &DescribeAccountCustomizationInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DescribeAccountCustomizationInput) -> bool
fn ne(&self, other: &DescribeAccountCustomizationInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for DescribeAccountCustomizationInput
Auto Trait Implementations
impl RefUnwindSafe for DescribeAccountCustomizationInput
impl Send for DescribeAccountCustomizationInput
impl Sync for DescribeAccountCustomizationInput
impl Unpin for DescribeAccountCustomizationInput
impl UnwindSafe for DescribeAccountCustomizationInput
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