#[non_exhaustive]pub struct IdNamespaceSummary {
pub id_namespace_name: String,
pub id_namespace_arn: String,
pub description: Option<String>,
pub type: IdNamespaceType,
pub created_at: DateTime,
pub updated_at: DateTime,
}
Expand description
A summary of ID namespaces.
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.id_namespace_name: String
The name of the ID namespace.
id_namespace_arn: String
The Amazon Resource Name (ARN) of the ID namespace.
description: Option<String>
The description of the ID namespace.
type: IdNamespaceType
The type of ID namespace. There are two types: SOURCE
and TARGET
.
The SOURCE
contains configurations for sourceId
data that will be processed in an ID mapping workflow.
The TARGET
contains a configuration of targetId
to which all sourceIds
will resolve to.
created_at: DateTime
The timestamp of when the ID namespace was created.
updated_at: DateTime
The timestamp of when the ID namespace was last updated.
Implementations§
source§impl IdNamespaceSummary
impl IdNamespaceSummary
sourcepub fn id_namespace_name(&self) -> &str
pub fn id_namespace_name(&self) -> &str
The name of the ID namespace.
sourcepub fn id_namespace_arn(&self) -> &str
pub fn id_namespace_arn(&self) -> &str
The Amazon Resource Name (ARN) of the ID namespace.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the ID namespace.
sourcepub fn type(&self) -> &IdNamespaceType
pub fn type(&self) -> &IdNamespaceType
The type of ID namespace. There are two types: SOURCE
and TARGET
.
The SOURCE
contains configurations for sourceId
data that will be processed in an ID mapping workflow.
The TARGET
contains a configuration of targetId
to which all sourceIds
will resolve to.
sourcepub fn created_at(&self) -> &DateTime
pub fn created_at(&self) -> &DateTime
The timestamp of when the ID namespace was created.
sourcepub fn updated_at(&self) -> &DateTime
pub fn updated_at(&self) -> &DateTime
The timestamp of when the ID namespace was last updated.
source§impl IdNamespaceSummary
impl IdNamespaceSummary
sourcepub fn builder() -> IdNamespaceSummaryBuilder
pub fn builder() -> IdNamespaceSummaryBuilder
Creates a new builder-style object to manufacture IdNamespaceSummary
.
Trait Implementations§
source§impl Clone for IdNamespaceSummary
impl Clone for IdNamespaceSummary
source§fn clone(&self) -> IdNamespaceSummary
fn clone(&self) -> IdNamespaceSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for IdNamespaceSummary
impl Debug for IdNamespaceSummary
source§impl PartialEq for IdNamespaceSummary
impl PartialEq for IdNamespaceSummary
source§fn eq(&self, other: &IdNamespaceSummary) -> bool
fn eq(&self, other: &IdNamespaceSummary) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for IdNamespaceSummary
Auto Trait Implementations§
impl Freeze for IdNamespaceSummary
impl RefUnwindSafe for IdNamespaceSummary
impl Send for IdNamespaceSummary
impl Sync for IdNamespaceSummary
impl Unpin for IdNamespaceSummary
impl UnwindSafe for IdNamespaceSummary
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