#[non_exhaustive]pub struct UpgradeAppliedSchemaInput {
pub published_schema_arn: Option<String>,
pub directory_arn: Option<String>,
pub dry_run: Option<bool>,
}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.published_schema_arn: Option<String>The revision of the published schema to upgrade the directory to.
directory_arn: Option<String>The ARN for the directory to which the upgraded schema will be applied.
dry_run: Option<bool>Used for testing whether the major version schemas are backward compatible or not. If schema compatibility fails, an exception would be thrown else the call would succeed but no changes will be saved. This parameter is optional.
Implementations§
source§impl UpgradeAppliedSchemaInput
impl UpgradeAppliedSchemaInput
sourcepub fn published_schema_arn(&self) -> Option<&str>
pub fn published_schema_arn(&self) -> Option<&str>
The revision of the published schema to upgrade the directory to.
sourcepub fn directory_arn(&self) -> Option<&str>
pub fn directory_arn(&self) -> Option<&str>
The ARN for the directory to which the upgraded schema will be applied.
source§impl UpgradeAppliedSchemaInput
impl UpgradeAppliedSchemaInput
sourcepub fn builder() -> UpgradeAppliedSchemaInputBuilder
pub fn builder() -> UpgradeAppliedSchemaInputBuilder
Creates a new builder-style object to manufacture UpgradeAppliedSchemaInput.
Trait Implementations§
source§impl Clone for UpgradeAppliedSchemaInput
impl Clone for UpgradeAppliedSchemaInput
source§fn clone(&self) -> UpgradeAppliedSchemaInput
fn clone(&self) -> UpgradeAppliedSchemaInput
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 UpgradeAppliedSchemaInput
impl Debug for UpgradeAppliedSchemaInput
source§impl PartialEq for UpgradeAppliedSchemaInput
impl PartialEq for UpgradeAppliedSchemaInput
source§fn eq(&self, other: &UpgradeAppliedSchemaInput) -> bool
fn eq(&self, other: &UpgradeAppliedSchemaInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpgradeAppliedSchemaInput
Auto Trait Implementations§
impl RefUnwindSafe for UpgradeAppliedSchemaInput
impl Send for UpgradeAppliedSchemaInput
impl Sync for UpgradeAppliedSchemaInput
impl Unpin for UpgradeAppliedSchemaInput
impl UnwindSafe for UpgradeAppliedSchemaInput
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
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>
Creates a shared type from an unshared type.