#[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
source§fn eq(&self, other: &CreateNamespaceInput) -> bool
fn eq(&self, other: &CreateNamespaceInput) -> bool
self
and other
values to be equal, and is used
by ==
.