#[non_exhaustive]pub struct PutSchemaVersionMetadataOutput {
pub schema_arn: Option<String>,
pub schema_name: Option<String>,
pub registry_name: Option<String>,
pub latest_version: bool,
pub version_number: i64,
pub schema_version_id: Option<String>,
pub metadata_key: Option<String>,
pub metadata_value: 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_arn: Option<String>The Amazon Resource Name (ARN) for the schema.
schema_name: Option<String>The name for the schema.
registry_name: Option<String>The name for the registry.
latest_version: boolThe latest version of the schema.
version_number: i64The version number of the schema.
schema_version_id: Option<String>The unique version ID of the schema version.
metadata_key: Option<String>The metadata key.
metadata_value: Option<String>The value of the metadata key.
Implementations§
source§impl PutSchemaVersionMetadataOutput
impl PutSchemaVersionMetadataOutput
sourcepub fn schema_arn(&self) -> Option<&str>
pub fn schema_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) for the schema.
sourcepub fn schema_name(&self) -> Option<&str>
pub fn schema_name(&self) -> Option<&str>
The name for the schema.
sourcepub fn registry_name(&self) -> Option<&str>
pub fn registry_name(&self) -> Option<&str>
The name for the registry.
sourcepub fn latest_version(&self) -> bool
pub fn latest_version(&self) -> bool
The latest version of the schema.
sourcepub fn version_number(&self) -> i64
pub fn version_number(&self) -> i64
The version number of the schema.
sourcepub fn schema_version_id(&self) -> Option<&str>
pub fn schema_version_id(&self) -> Option<&str>
The unique version ID of the schema version.
sourcepub fn metadata_key(&self) -> Option<&str>
pub fn metadata_key(&self) -> Option<&str>
The metadata key.
sourcepub fn metadata_value(&self) -> Option<&str>
pub fn metadata_value(&self) -> Option<&str>
The value of the metadata key.
source§impl PutSchemaVersionMetadataOutput
impl PutSchemaVersionMetadataOutput
sourcepub fn builder() -> PutSchemaVersionMetadataOutputBuilder
pub fn builder() -> PutSchemaVersionMetadataOutputBuilder
Creates a new builder-style object to manufacture PutSchemaVersionMetadataOutput.
Trait Implementations§
source§impl Clone for PutSchemaVersionMetadataOutput
impl Clone for PutSchemaVersionMetadataOutput
source§fn clone(&self) -> PutSchemaVersionMetadataOutput
fn clone(&self) -> PutSchemaVersionMetadataOutput
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 PartialEq<PutSchemaVersionMetadataOutput> for PutSchemaVersionMetadataOutput
impl PartialEq<PutSchemaVersionMetadataOutput> for PutSchemaVersionMetadataOutput
source§fn eq(&self, other: &PutSchemaVersionMetadataOutput) -> bool
fn eq(&self, other: &PutSchemaVersionMetadataOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for PutSchemaVersionMetadataOutput
impl RequestId for PutSchemaVersionMetadataOutput
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 PutSchemaVersionMetadataOutput
Auto Trait Implementations§
impl RefUnwindSafe for PutSchemaVersionMetadataOutput
impl Send for PutSchemaVersionMetadataOutput
impl Sync for PutSchemaVersionMetadataOutput
impl Unpin for PutSchemaVersionMetadataOutput
impl UnwindSafe for PutSchemaVersionMetadataOutput
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