Struct aws_sdk_quicksight::operation::describe_account_customization::DescribeAccountCustomizationInput
source · #[non_exhaustive]pub struct DescribeAccountCustomizationInput {
pub aws_account_id: Option<String>,
pub namespace: Option<String>,
pub resolved: Option<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: Option<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§
source§impl 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) -> Option<bool>
pub fn resolved(&self) -> Option<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.
source§impl DescribeAccountCustomizationInput
impl DescribeAccountCustomizationInput
sourcepub fn builder() -> DescribeAccountCustomizationInputBuilder
pub fn builder() -> DescribeAccountCustomizationInputBuilder
Creates a new builder-style object to manufacture DescribeAccountCustomizationInput.
Trait Implementations§
source§impl Clone for DescribeAccountCustomizationInput
impl Clone for DescribeAccountCustomizationInput
source§fn clone(&self) -> DescribeAccountCustomizationInput
fn clone(&self) -> DescribeAccountCustomizationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for DescribeAccountCustomizationInput
impl PartialEq for DescribeAccountCustomizationInput
source§fn eq(&self, other: &DescribeAccountCustomizationInput) -> bool
fn eq(&self, other: &DescribeAccountCustomizationInput) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeAccountCustomizationInput
Auto Trait Implementations§
impl Freeze for DescribeAccountCustomizationInput
impl RefUnwindSafe for DescribeAccountCustomizationInput
impl Send for DescribeAccountCustomizationInput
impl Sync for DescribeAccountCustomizationInput
impl Unpin for DescribeAccountCustomizationInput
impl UnwindSafe for DescribeAccountCustomizationInput
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