Struct aws_sdk_glue::operation::update_schema::UpdateSchemaInput
source · #[non_exhaustive]pub struct UpdateSchemaInput {
pub schema_id: Option<SchemaId>,
pub schema_version_number: Option<SchemaVersionNumber>,
pub compatibility: Option<Compatibility>,
pub description: Option<String>,
}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_id: Option<SchemaId>This is a wrapper structure to contain schema identity fields. The structure contains:
-
SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. One of
SchemaArnorSchemaNamehas to be provided. -
SchemaId$SchemaName: The name of the schema. One of
SchemaArnorSchemaNamehas to be provided.
schema_version_number: Option<SchemaVersionNumber>Version number required for check pointing. One of VersionNumber or Compatibility has to be provided.
compatibility: Option<Compatibility>The new compatibility setting for the schema.
description: Option<String>The new description for the schema.
Implementations§
source§impl UpdateSchemaInput
impl UpdateSchemaInput
sourcepub fn schema_id(&self) -> Option<&SchemaId>
pub fn schema_id(&self) -> Option<&SchemaId>
This is a wrapper structure to contain schema identity fields. The structure contains:
-
SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. One of
SchemaArnorSchemaNamehas to be provided. -
SchemaId$SchemaName: The name of the schema. One of
SchemaArnorSchemaNamehas to be provided.
sourcepub fn schema_version_number(&self) -> Option<&SchemaVersionNumber>
pub fn schema_version_number(&self) -> Option<&SchemaVersionNumber>
Version number required for check pointing. One of VersionNumber or Compatibility has to be provided.
sourcepub fn compatibility(&self) -> Option<&Compatibility>
pub fn compatibility(&self) -> Option<&Compatibility>
The new compatibility setting for the schema.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The new description for the schema.
source§impl UpdateSchemaInput
impl UpdateSchemaInput
sourcepub fn builder() -> UpdateSchemaInputBuilder
pub fn builder() -> UpdateSchemaInputBuilder
Creates a new builder-style object to manufacture UpdateSchemaInput.
Trait Implementations§
source§impl Clone for UpdateSchemaInput
impl Clone for UpdateSchemaInput
source§fn clone(&self) -> UpdateSchemaInput
fn clone(&self) -> UpdateSchemaInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateSchemaInput
impl Debug for UpdateSchemaInput
source§impl PartialEq for UpdateSchemaInput
impl PartialEq for UpdateSchemaInput
source§fn eq(&self, other: &UpdateSchemaInput) -> bool
fn eq(&self, other: &UpdateSchemaInput) -> bool
self and other values to be equal, and is used
by ==.