#[non_exhaustive]pub struct SchemaMappingSummary {
pub schema_name: String,
pub schema_arn: String,
pub created_at: DateTime,
pub updated_at: DateTime,
pub has_workflows: bool,
}
Expand description
An object containing SchemaName
, SchemaArn
, CreatedAt
, andUpdatedAt
.
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.schema_name: String
The name of the schema.
schema_arn: String
The ARN (Amazon Resource Name) that Entity Resolution generated for the SchemaMapping
.
created_at: DateTime
The timestamp of when the SchemaMapping
was created.
updated_at: DateTime
The timestamp of when the SchemaMapping
was last updated.
has_workflows: bool
Specifies whether the schema mapping has been applied to a workflow.
Implementations§
source§impl SchemaMappingSummary
impl SchemaMappingSummary
sourcepub fn schema_name(&self) -> &str
pub fn schema_name(&self) -> &str
The name of the schema.
sourcepub fn schema_arn(&self) -> &str
pub fn schema_arn(&self) -> &str
The ARN (Amazon Resource Name) that Entity Resolution generated for the SchemaMapping
.
sourcepub fn created_at(&self) -> &DateTime
pub fn created_at(&self) -> &DateTime
The timestamp of when the SchemaMapping
was created.
sourcepub fn updated_at(&self) -> &DateTime
pub fn updated_at(&self) -> &DateTime
The timestamp of when the SchemaMapping
was last updated.
sourcepub fn has_workflows(&self) -> bool
pub fn has_workflows(&self) -> bool
Specifies whether the schema mapping has been applied to a workflow.
source§impl SchemaMappingSummary
impl SchemaMappingSummary
sourcepub fn builder() -> SchemaMappingSummaryBuilder
pub fn builder() -> SchemaMappingSummaryBuilder
Creates a new builder-style object to manufacture SchemaMappingSummary
.
Trait Implementations§
source§impl Clone for SchemaMappingSummary
impl Clone for SchemaMappingSummary
source§fn clone(&self) -> SchemaMappingSummary
fn clone(&self) -> SchemaMappingSummary
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 SchemaMappingSummary
impl Debug for SchemaMappingSummary
source§impl PartialEq for SchemaMappingSummary
impl PartialEq for SchemaMappingSummary
source§fn eq(&self, other: &SchemaMappingSummary) -> bool
fn eq(&self, other: &SchemaMappingSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SchemaMappingSummary
Auto Trait Implementations§
impl RefUnwindSafe for SchemaMappingSummary
impl Send for SchemaMappingSummary
impl Sync for SchemaMappingSummary
impl Unpin for SchemaMappingSummary
impl UnwindSafe for SchemaMappingSummary
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.