Struct aws_sdk_glue::model::SchemaReference
source · #[non_exhaustive]pub struct SchemaReference { /* private fields */ }Expand description
An object that references a schema stored in the Glue Schema Registry.
Implementations§
source§impl SchemaReference
impl SchemaReference
sourcepub fn schema_id(&self) -> Option<&SchemaId>
pub fn schema_id(&self) -> Option<&SchemaId>
A structure that contains schema identity fields. Either this or the SchemaVersionId has to be provided.
sourcepub fn schema_version_id(&self) -> Option<&str>
pub fn schema_version_id(&self) -> Option<&str>
The unique ID assigned to a version of the schema. Either this or the SchemaId has to be provided.
sourcepub fn schema_version_number(&self) -> Option<i64>
pub fn schema_version_number(&self) -> Option<i64>
The version number of the schema.
source§impl SchemaReference
impl SchemaReference
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SchemaReference.
Trait Implementations§
source§impl Clone for SchemaReference
impl Clone for SchemaReference
source§fn clone(&self) -> SchemaReference
fn clone(&self) -> SchemaReference
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 SchemaReference
impl Debug for SchemaReference
source§impl PartialEq<SchemaReference> for SchemaReference
impl PartialEq<SchemaReference> for SchemaReference
source§fn eq(&self, other: &SchemaReference) -> bool
fn eq(&self, other: &SchemaReference) -> bool
This method tests for
self and other values to be equal, and is used
by ==.