#[non_exhaustive]pub struct DescribeUserInputBuilder { /* private fields */ }Expand description
A builder for DescribeUserInput.
Implementations§
source§impl DescribeUserInputBuilder
impl DescribeUserInputBuilder
sourcepub fn user_name(self, input: impl Into<String>) -> Self
pub fn user_name(self, input: impl Into<String>) -> Self
The name of the user that you want to describe.
sourcepub fn set_user_name(self, input: Option<String>) -> Self
pub fn set_user_name(self, input: Option<String>) -> Self
The name of the user that you want to describe.
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 the user is in. Currently, you use the ID for the Amazon Web Services account that contains your Amazon QuickSight account.
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 the user is in. Currently, you use the ID for the Amazon Web Services account that contains your Amazon QuickSight account.
sourcepub fn namespace(self, input: impl Into<String>) -> Self
pub fn namespace(self, input: impl Into<String>) -> Self
The namespace. Currently, you should set this to default.
sourcepub fn set_namespace(self, input: Option<String>) -> Self
pub fn set_namespace(self, input: Option<String>) -> Self
The namespace. Currently, you should set this to default.
sourcepub fn build(self) -> Result<DescribeUserInput, BuildError>
pub fn build(self) -> Result<DescribeUserInput, BuildError>
Consumes the builder and constructs a DescribeUserInput.
Trait Implementations§
source§impl Clone for DescribeUserInputBuilder
impl Clone for DescribeUserInputBuilder
source§fn clone(&self) -> DescribeUserInputBuilder
fn clone(&self) -> DescribeUserInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for DescribeUserInputBuilder
impl Debug for DescribeUserInputBuilder
source§impl Default for DescribeUserInputBuilder
impl Default for DescribeUserInputBuilder
source§fn default() -> DescribeUserInputBuilder
fn default() -> DescribeUserInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<DescribeUserInputBuilder> for DescribeUserInputBuilder
impl PartialEq<DescribeUserInputBuilder> for DescribeUserInputBuilder
source§fn eq(&self, other: &DescribeUserInputBuilder) -> bool
fn eq(&self, other: &DescribeUserInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeUserInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DescribeUserInputBuilder
impl Send for DescribeUserInputBuilder
impl Sync for DescribeUserInputBuilder
impl Unpin for DescribeUserInputBuilder
impl UnwindSafe for DescribeUserInputBuilder
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
Mutably borrows from an owned value. Read more