#[non_exhaustive]pub struct CreateNamespaceInput {
pub aws_account_id: Option<String>,
pub namespace: Option<String>,
pub identity_store: Option<IdentityStore>,
pub tags: Option<Vec<Tag>>,
}
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 create the Amazon QuickSight namespace in.
namespace: Option<String>
The name that you want to use to describe the new namespace.
identity_store: Option<IdentityStore>
Specifies the type of your user identity directory. Currently, this supports users with an identity type of QUICKSIGHT
.
The tags that you want to associate with the namespace that you're creating.
Implementations§
source§impl CreateNamespaceInput
impl CreateNamespaceInput
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 create the Amazon QuickSight namespace in.
sourcepub fn namespace(&self) -> Option<&str>
pub fn namespace(&self) -> Option<&str>
The name that you want to use to describe the new namespace.
sourcepub fn identity_store(&self) -> Option<&IdentityStore>
pub fn identity_store(&self) -> Option<&IdentityStore>
Specifies the type of your user identity directory. Currently, this supports users with an identity type of QUICKSIGHT
.
The tags that you want to associate with the namespace that you're creating.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl CreateNamespaceInput
impl CreateNamespaceInput
sourcepub fn builder() -> CreateNamespaceInputBuilder
pub fn builder() -> CreateNamespaceInputBuilder
Creates a new builder-style object to manufacture CreateNamespaceInput
.
Trait Implementations§
source§impl Clone for CreateNamespaceInput
impl Clone for CreateNamespaceInput
source§fn clone(&self) -> CreateNamespaceInput
fn clone(&self) -> CreateNamespaceInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateNamespaceInput
impl Debug for CreateNamespaceInput
source§impl PartialEq for CreateNamespaceInput
impl PartialEq for CreateNamespaceInput
impl StructuralPartialEq for CreateNamespaceInput
Auto Trait Implementations§
impl Freeze for CreateNamespaceInput
impl RefUnwindSafe for CreateNamespaceInput
impl Send for CreateNamespaceInput
impl Sync for CreateNamespaceInput
impl Unpin for CreateNamespaceInput
impl UnwindSafe for CreateNamespaceInput
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