Struct aws_sdk_quicksight::types::NamespaceInfoV2  
source · #[non_exhaustive]pub struct NamespaceInfoV2 {
    pub name: Option<String>,
    pub arn: Option<String>,
    pub capacity_region: Option<String>,
    pub creation_status: Option<NamespaceStatus>,
    pub identity_store: Option<IdentityStore>,
    pub namespace_error: Option<NamespaceError>,
}Expand description
The error type.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Option<String>The name of the error.
arn: Option<String>The namespace ARN.
capacity_region: Option<String>The namespace Amazon Web Services Region.
creation_status: Option<NamespaceStatus>The creation status of a namespace that is not yet completely created.
identity_store: Option<IdentityStore>The identity store used for the namespace.
namespace_error: Option<NamespaceError>An error that occurred when the namespace was created.
Implementations§
source§impl NamespaceInfoV2
 
impl NamespaceInfoV2
sourcepub fn capacity_region(&self) -> Option<&str>
 
pub fn capacity_region(&self) -> Option<&str>
The namespace Amazon Web Services Region.
sourcepub fn creation_status(&self) -> Option<&NamespaceStatus>
 
pub fn creation_status(&self) -> Option<&NamespaceStatus>
The creation status of a namespace that is not yet completely created.
sourcepub fn identity_store(&self) -> Option<&IdentityStore>
 
pub fn identity_store(&self) -> Option<&IdentityStore>
The identity store used for the namespace.
sourcepub fn namespace_error(&self) -> Option<&NamespaceError>
 
pub fn namespace_error(&self) -> Option<&NamespaceError>
An error that occurred when the namespace was created.
source§impl NamespaceInfoV2
 
impl NamespaceInfoV2
sourcepub fn builder() -> NamespaceInfoV2Builder
 
pub fn builder() -> NamespaceInfoV2Builder
Creates a new builder-style object to manufacture NamespaceInfoV2.
Trait Implementations§
source§impl Clone for NamespaceInfoV2
 
impl Clone for NamespaceInfoV2
source§fn clone(&self) -> NamespaceInfoV2
 
fn clone(&self) -> NamespaceInfoV2
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 NamespaceInfoV2
 
impl Debug for NamespaceInfoV2
source§impl PartialEq for NamespaceInfoV2
 
impl PartialEq for NamespaceInfoV2
source§fn eq(&self, other: &NamespaceInfoV2) -> bool
 
fn eq(&self, other: &NamespaceInfoV2) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for NamespaceInfoV2
Auto Trait Implementations§
impl RefUnwindSafe for NamespaceInfoV2
impl Send for NamespaceInfoV2
impl Sync for NamespaceInfoV2
impl Unpin for NamespaceInfoV2
impl UnwindSafe for NamespaceInfoV2
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
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>
Creates a shared type from an unshared type.