#[non_exhaustive]pub struct GetSchemaMappingOutput {
pub schema_name: Option<String>,
pub schema_arn: Option<String>,
pub description: Option<String>,
pub mapped_input_fields: Option<Vec<SchemaInputAttribute>>,
pub created_at: Option<DateTime>,
pub updated_at: Option<DateTime>,
pub tags: Option<HashMap<String, String>>,
/* private fields */
}
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.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.
description: Option<String>
A description of the schema.
mapped_input_fields: Option<Vec<SchemaInputAttribute>>
A list of MappedInputFields
. Each MappedInputField
corresponds to a column the source data table, and contains column name plus additional information Venice uses for matching.
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.
The tags used to organize, track, or control access for this resource.
Implementations§
source§impl GetSchemaMappingOutput
impl GetSchemaMappingOutput
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 description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the schema.
sourcepub fn mapped_input_fields(&self) -> Option<&[SchemaInputAttribute]>
pub fn mapped_input_fields(&self) -> Option<&[SchemaInputAttribute]>
A list of MappedInputFields
. Each MappedInputField
corresponds to a column the source data table, and contains column name plus additional information Venice uses for matching.
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.
The tags used to organize, track, or control access for this resource.
source§impl GetSchemaMappingOutput
impl GetSchemaMappingOutput
sourcepub fn builder() -> GetSchemaMappingOutputBuilder
pub fn builder() -> GetSchemaMappingOutputBuilder
Creates a new builder-style object to manufacture GetSchemaMappingOutput
.
Trait Implementations§
source§impl Clone for GetSchemaMappingOutput
impl Clone for GetSchemaMappingOutput
source§fn clone(&self) -> GetSchemaMappingOutput
fn clone(&self) -> GetSchemaMappingOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetSchemaMappingOutput
impl Debug for GetSchemaMappingOutput
source§impl PartialEq for GetSchemaMappingOutput
impl PartialEq for GetSchemaMappingOutput
source§fn eq(&self, other: &GetSchemaMappingOutput) -> bool
fn eq(&self, other: &GetSchemaMappingOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetSchemaMappingOutput
impl RequestId for GetSchemaMappingOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.