Struct rusoto_elasticbeanstalk::SwapEnvironmentCNAMEsMessage[][src]

pub struct SwapEnvironmentCNAMEsMessage {
    pub destination_environment_id: Option<String>,
    pub destination_environment_name: Option<String>,
    pub source_environment_id: Option<String>,
    pub source_environment_name: Option<String>,
}

Swaps the CNAMEs of two environments.

Fields

The ID of the destination environment.

Condition: You must specify at least the DestinationEnvironmentID or the DestinationEnvironmentName. You may also specify both. You must specify the SourceEnvironmentId with the DestinationEnvironmentId.

The name of the destination environment.

Condition: You must specify at least the DestinationEnvironmentID or the DestinationEnvironmentName. You may also specify both. You must specify the SourceEnvironmentName with the DestinationEnvironmentName.

The ID of the source environment.

Condition: You must specify at least the SourceEnvironmentID or the SourceEnvironmentName. You may also specify both. If you specify the SourceEnvironmentId, you must specify the DestinationEnvironmentId.

The name of the source environment.

Condition: You must specify at least the SourceEnvironmentID or the SourceEnvironmentName. You may also specify both. If you specify the SourceEnvironmentName, you must specify the DestinationEnvironmentName.

Trait Implementations

impl Default for SwapEnvironmentCNAMEsMessage
[src]

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

impl Debug for SwapEnvironmentCNAMEsMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for SwapEnvironmentCNAMEsMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SwapEnvironmentCNAMEsMessage
[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