Struct aws_sdk_clouddirectory::operation::upgrade_published_schema::UpgradePublishedSchemaInput
source · #[non_exhaustive]pub struct UpgradePublishedSchemaInput {
pub development_schema_arn: Option<String>,
pub published_schema_arn: Option<String>,
pub minor_version: Option<String>,
pub dry_run: Option<bool>,
}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.development_schema_arn: Option<String>The ARN of the development schema with the changes used for the upgrade.
published_schema_arn: Option<String>The ARN of the published schema to be upgraded.
minor_version: Option<String>Identifies the minor version of the published schema that will be created. This parameter is NOT optional.
dry_run: Option<bool>Used for testing whether the Development schema provided is backwards compatible, or not, with the publish schema provided by the user to be upgraded. If schema compatibility fails, an exception would be thrown else the call would succeed. This parameter is optional and defaults to false.
Implementations§
source§impl UpgradePublishedSchemaInput
impl UpgradePublishedSchemaInput
sourcepub fn development_schema_arn(&self) -> Option<&str>
pub fn development_schema_arn(&self) -> Option<&str>
The ARN of the development schema with the changes used for the upgrade.
sourcepub fn published_schema_arn(&self) -> Option<&str>
pub fn published_schema_arn(&self) -> Option<&str>
The ARN of the published schema to be upgraded.
sourcepub fn minor_version(&self) -> Option<&str>
pub fn minor_version(&self) -> Option<&str>
Identifies the minor version of the published schema that will be created. This parameter is NOT optional.
sourcepub fn dry_run(&self) -> Option<bool>
pub fn dry_run(&self) -> Option<bool>
Used for testing whether the Development schema provided is backwards compatible, or not, with the publish schema provided by the user to be upgraded. If schema compatibility fails, an exception would be thrown else the call would succeed. This parameter is optional and defaults to false.
source§impl UpgradePublishedSchemaInput
impl UpgradePublishedSchemaInput
sourcepub fn builder() -> UpgradePublishedSchemaInputBuilder
pub fn builder() -> UpgradePublishedSchemaInputBuilder
Creates a new builder-style object to manufacture UpgradePublishedSchemaInput.
Trait Implementations§
source§impl Clone for UpgradePublishedSchemaInput
impl Clone for UpgradePublishedSchemaInput
source§fn clone(&self) -> UpgradePublishedSchemaInput
fn clone(&self) -> UpgradePublishedSchemaInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpgradePublishedSchemaInput
impl Debug for UpgradePublishedSchemaInput
source§impl PartialEq for UpgradePublishedSchemaInput
impl PartialEq for UpgradePublishedSchemaInput
source§fn eq(&self, other: &UpgradePublishedSchemaInput) -> bool
fn eq(&self, other: &UpgradePublishedSchemaInput) -> bool
self and other values to be equal, and is used
by ==.