Struct aws_sdk_quicksight::operation::describe_account_customization::builders::DescribeAccountCustomizationInputBuilder
source · #[non_exhaustive]pub struct DescribeAccountCustomizationInputBuilder { /* private fields */ }Expand description
A builder for DescribeAccountCustomizationInput.
Implementations§
source§impl DescribeAccountCustomizationInputBuilder
impl DescribeAccountCustomizationInputBuilder
sourcepub fn aws_account_id(self, input: impl Into<String>) -> Self
pub fn aws_account_id(self, input: impl Into<String>) -> Self
The ID for the Amazon Web Services account that you want to describe Amazon QuickSight customizations for.
This field is required.sourcepub fn set_aws_account_id(self, input: Option<String>) -> Self
pub fn set_aws_account_id(self, input: Option<String>) -> Self
The ID for the Amazon Web Services account that you want to describe Amazon QuickSight customizations for.
sourcepub fn get_aws_account_id(&self) -> &Option<String>
pub fn get_aws_account_id(&self) -> &Option<String>
The ID for the Amazon Web Services account that you want to describe Amazon QuickSight customizations for.
sourcepub fn namespace(self, input: impl Into<String>) -> Self
pub fn namespace(self, input: impl Into<String>) -> Self
The Amazon QuickSight namespace that you want to describe Amazon QuickSight customizations for.
sourcepub fn set_namespace(self, input: Option<String>) -> Self
pub fn set_namespace(self, input: Option<String>) -> Self
The Amazon QuickSight namespace that you want to describe Amazon QuickSight customizations for.
sourcepub fn get_namespace(&self) -> &Option<String>
pub fn get_namespace(&self) -> &Option<String>
The Amazon QuickSight namespace that you want to describe Amazon QuickSight customizations for.
sourcepub fn resolved(self, input: bool) -> Self
pub fn resolved(self, input: bool) -> Self
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.
sourcepub fn set_resolved(self, input: Option<bool>) -> Self
pub fn set_resolved(self, input: Option<bool>) -> Self
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.
sourcepub fn get_resolved(&self) -> &Option<bool>
pub fn get_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.
sourcepub fn build(self) -> Result<DescribeAccountCustomizationInput, BuildError>
pub fn build(self) -> Result<DescribeAccountCustomizationInput, BuildError>
Consumes the builder and constructs a DescribeAccountCustomizationInput.
source§impl DescribeAccountCustomizationInputBuilder
impl DescribeAccountCustomizationInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<DescribeAccountCustomizationOutput, SdkError<DescribeAccountCustomizationError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<DescribeAccountCustomizationOutput, SdkError<DescribeAccountCustomizationError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DescribeAccountCustomizationInputBuilder
impl Clone for DescribeAccountCustomizationInputBuilder
source§fn clone(&self) -> DescribeAccountCustomizationInputBuilder
fn clone(&self) -> DescribeAccountCustomizationInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DescribeAccountCustomizationInputBuilder
impl Default for DescribeAccountCustomizationInputBuilder
source§fn default() -> DescribeAccountCustomizationInputBuilder
fn default() -> DescribeAccountCustomizationInputBuilder
source§impl PartialEq for DescribeAccountCustomizationInputBuilder
impl PartialEq for DescribeAccountCustomizationInputBuilder
source§fn eq(&self, other: &DescribeAccountCustomizationInputBuilder) -> bool
fn eq(&self, other: &DescribeAccountCustomizationInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeAccountCustomizationInputBuilder
Auto Trait Implementations§
impl Freeze for DescribeAccountCustomizationInputBuilder
impl RefUnwindSafe for DescribeAccountCustomizationInputBuilder
impl Send for DescribeAccountCustomizationInputBuilder
impl Sync for DescribeAccountCustomizationInputBuilder
impl Unpin for DescribeAccountCustomizationInputBuilder
impl UnwindSafe for DescribeAccountCustomizationInputBuilder
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> 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