#[non_exhaustive]pub struct SchemaMappingSummary {
pub schema_name: Option<String>,
pub schema_arn: Option<String>,
pub created_at: Option<DateTime>,
pub updated_at: Option<DateTime>,
}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: Option<String>The name of the schema.
schema_arn: Option<String>The ARN (Amazon Resource Name) that Entity Resolution generated for the SchemaMapping.
created_at: Option<DateTime>The timestamp of when the SchemaMapping was created.
updated_at: Option<DateTime>The timestamp of when the SchemaMapping was last updated.
Implementations§
source§impl SchemaMappingSummary
impl SchemaMappingSummary
sourcepub fn schema_name(&self) -> Option<&str>
pub fn schema_name(&self) -> Option<&str>
The name of the schema.
sourcepub fn schema_arn(&self) -> Option<&str>
pub fn schema_arn(&self) -> Option<&str>
The ARN (Amazon Resource Name) that Entity Resolution generated for the SchemaMapping.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The timestamp of when the SchemaMapping was created.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The timestamp of when the SchemaMapping was last updated.
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<SchemaMappingSummary> for SchemaMappingSummary
impl PartialEq<SchemaMappingSummary> 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