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>,
}
Expand description
Swaps the CNAMEs of two environments.
Fields§
§destination_environment_id: Option<String>
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
.
destination_environment_name: Option<String>
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
.
source_environment_id: Option<String>
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
.
source_environment_name: Option<String>
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§
Source§impl Clone for SwapEnvironmentCNAMEsMessage
impl Clone for SwapEnvironmentCNAMEsMessage
Source§fn clone(&self) -> SwapEnvironmentCNAMEsMessage
fn clone(&self) -> SwapEnvironmentCNAMEsMessage
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for SwapEnvironmentCNAMEsMessage
impl Debug for SwapEnvironmentCNAMEsMessage
Source§impl Default for SwapEnvironmentCNAMEsMessage
impl Default for SwapEnvironmentCNAMEsMessage
Source§fn default() -> SwapEnvironmentCNAMEsMessage
fn default() -> SwapEnvironmentCNAMEsMessage
Source§impl PartialEq for SwapEnvironmentCNAMEsMessage
impl PartialEq for SwapEnvironmentCNAMEsMessage
Source§fn eq(&self, other: &SwapEnvironmentCNAMEsMessage) -> bool
fn eq(&self, other: &SwapEnvironmentCNAMEsMessage) -> bool
self
and other
values to be equal, and is used by ==
.