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 ==.impl StructuralPartialEq for UpdateSchemaInput
Auto Trait Implementations§
impl Freeze for UpdateSchemaInput
impl RefUnwindSafe for UpdateSchemaInput
impl Send for UpdateSchemaInput
impl Sync for UpdateSchemaInput
impl Unpin for UpdateSchemaInput
impl UnwindSafe for UpdateSchemaInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more