#[non_exhaustive]pub struct CreateOutboundConnectionOutput { /* private fields */ }
Expand description
The result of a
request. Contains the details about the newly created cross-cluster connection. CreateOutboundConnection
Implementations§
source§impl CreateOutboundConnectionOutput
impl CreateOutboundConnectionOutput
sourcepub fn local_domain_info(&self) -> Option<&DomainInformationContainer>
pub fn local_domain_info(&self) -> Option<&DomainInformationContainer>
The
for the local OpenSearch domain. AWSDomainInformation
sourcepub fn remote_domain_info(&self) -> Option<&DomainInformationContainer>
pub fn remote_domain_info(&self) -> Option<&DomainInformationContainer>
The
for the remote OpenSearch domain. AWSDomainInformation
sourcepub fn connection_alias(&self) -> Option<&str>
pub fn connection_alias(&self) -> Option<&str>
The connection alias provided during the create connection request.
sourcepub fn connection_status(&self) -> Option<&OutboundConnectionStatus>
pub fn connection_status(&self) -> Option<&OutboundConnectionStatus>
The
for the newly created connection. OutboundConnectionStatus
sourcepub fn connection_id(&self) -> Option<&str>
pub fn connection_id(&self) -> Option<&str>
The unique ID 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 more