[][src]Struct rusoto_glue::UpdateSchemaInput

pub struct UpdateSchemaInput {
    pub compatibility: Option<String>,
    pub description: Option<String>,
    pub schema_id: SchemaId,
    pub schema_version_number: Option<SchemaVersionNumber>,
}

Fields

compatibility: Option<String>

The new compatibility setting for the schema.

description: Option<String>

The new description for the schema.

schema_id: 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 SchemaArn or SchemaName has to be provided.

  • SchemaId$SchemaName: The name of the schema. One of SchemaArn or SchemaName has to be provided.

schema_version_number: Option<SchemaVersionNumber>

Version number required for check pointing. One of VersionNumber or Compatibility has to be provided.

Trait Implementations

impl Clone for UpdateSchemaInput[src]

impl Debug for UpdateSchemaInput[src]

impl Default for UpdateSchemaInput[src]

impl PartialEq<UpdateSchemaInput> for UpdateSchemaInput[src]

impl Serialize for UpdateSchemaInput[src]

impl StructuralPartialEq for UpdateSchemaInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.