Struct rusoto_clouddirectory::UpgradeAppliedSchemaRequest[][src]

pub struct UpgradeAppliedSchemaRequest {
    pub directory_arn: String,
    pub dry_run: Option<bool>,
    pub published_schema_arn: String,
}

Fields

The ARN for the directory to which the upgraded schema will be applied.

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.

The revision of the published schema to upgrade the directory to.

Trait Implementations

impl Default for UpgradeAppliedSchemaRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for UpgradeAppliedSchemaRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpgradeAppliedSchemaRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpgradeAppliedSchemaRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations