#[non_exhaustive]pub struct GetSchemaByDefinitionOutput {
pub schema_version_id: Option<String>,
pub schema_arn: Option<String>,
pub data_format: Option<DataFormat>,
pub status: Option<SchemaVersionStatus>,
pub created_time: Option<String>,
/* private fields */
}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_version_id: Option<String>The schema ID of the schema version.
schema_arn: Option<String>The Amazon Resource Name (ARN) of the schema.
data_format: Option<DataFormat>The data format of the schema definition. Currently AVRO, JSON and PROTOBUF are supported.
status: Option<SchemaVersionStatus>The status of the schema version.
created_time: Option<String>The date and time the schema was created.
Implementations§
source§impl GetSchemaByDefinitionOutput
impl GetSchemaByDefinitionOutput
sourcepub fn schema_version_id(&self) -> Option<&str>
pub fn schema_version_id(&self) -> Option<&str>
The schema ID of the schema version.
sourcepub fn schema_arn(&self) -> Option<&str>
pub fn schema_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the schema.
sourcepub fn data_format(&self) -> Option<&DataFormat>
pub fn data_format(&self) -> Option<&DataFormat>
The data format of the schema definition. Currently AVRO, JSON and PROTOBUF are supported.
sourcepub fn status(&self) -> Option<&SchemaVersionStatus>
pub fn status(&self) -> Option<&SchemaVersionStatus>
The status of the schema version.
sourcepub fn created_time(&self) -> Option<&str>
pub fn created_time(&self) -> Option<&str>
The date and time the schema was created.
source§impl GetSchemaByDefinitionOutput
impl GetSchemaByDefinitionOutput
sourcepub fn builder() -> GetSchemaByDefinitionOutputBuilder
pub fn builder() -> GetSchemaByDefinitionOutputBuilder
Creates a new builder-style object to manufacture GetSchemaByDefinitionOutput.
Trait Implementations§
source§impl Clone for GetSchemaByDefinitionOutput
impl Clone for GetSchemaByDefinitionOutput
source§fn clone(&self) -> GetSchemaByDefinitionOutput
fn clone(&self) -> GetSchemaByDefinitionOutput
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 GetSchemaByDefinitionOutput
impl Debug for GetSchemaByDefinitionOutput
source§impl PartialEq<GetSchemaByDefinitionOutput> for GetSchemaByDefinitionOutput
impl PartialEq<GetSchemaByDefinitionOutput> for GetSchemaByDefinitionOutput
source§fn eq(&self, other: &GetSchemaByDefinitionOutput) -> bool
fn eq(&self, other: &GetSchemaByDefinitionOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for GetSchemaByDefinitionOutput
impl RequestId for GetSchemaByDefinitionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for GetSchemaByDefinitionOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetSchemaByDefinitionOutput
impl Send for GetSchemaByDefinitionOutput
impl Sync for GetSchemaByDefinitionOutput
impl Unpin for GetSchemaByDefinitionOutput
impl UnwindSafe for GetSchemaByDefinitionOutput
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