#[non_exhaustive]pub struct CreateOutboundConnectionOutput { /* private fields */ }
Expand description
The result of a CreateOutboundConnection
request. Contains details about the newly created cross-cluster connection.
Implementations§
source§impl CreateOutboundConnectionOutput
impl CreateOutboundConnectionOutput
sourcepub fn local_domain_info(&self) -> Option<&DomainInformationContainer>
pub fn local_domain_info(&self) -> Option<&DomainInformationContainer>
Information about the source (local) domain.
sourcepub fn remote_domain_info(&self) -> Option<&DomainInformationContainer>
pub fn remote_domain_info(&self) -> Option<&DomainInformationContainer>
Information about the destination (remote) domain.
sourcepub fn connection_alias(&self) -> Option<&str>
pub fn connection_alias(&self) -> Option<&str>
Name of the connection.
sourcepub fn connection_status(&self) -> Option<&OutboundConnectionStatus>
pub fn connection_status(&self) -> Option<&OutboundConnectionStatus>
The status of the connection.
sourcepub fn connection_id(&self) -> Option<&str>
pub fn connection_id(&self) -> Option<&str>
The unique identifier for the created outbound connection, which is used for subsequent operations on the connection.
source§impl CreateOutboundConnectionOutput
impl CreateOutboundConnectionOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateOutboundConnectionOutput
.
Trait Implementations§
source§impl Clone for CreateOutboundConnectionOutput
impl Clone for CreateOutboundConnectionOutput
source§fn clone(&self) -> CreateOutboundConnectionOutput
fn clone(&self) -> CreateOutboundConnectionOutput
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 PartialEq<CreateOutboundConnectionOutput> for CreateOutboundConnectionOutput
impl PartialEq<CreateOutboundConnectionOutput> for CreateOutboundConnectionOutput
source§fn eq(&self, other: &CreateOutboundConnectionOutput) -> bool
fn eq(&self, other: &CreateOutboundConnectionOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.