Struct aws_sdk_opensearch::types::OutboundConnection
source · #[non_exhaustive]pub struct OutboundConnection { /* private fields */ }Expand description
Specifies details about an outbound cross-cluster connection.
Implementations§
source§impl OutboundConnection
impl OutboundConnection
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_id(&self) -> Option<&str>
pub fn connection_id(&self) -> Option<&str>
Unique identifier of the connection.
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>
Status of the connection.
sourcepub fn connection_mode(&self) -> Option<&ConnectionMode>
pub fn connection_mode(&self) -> Option<&ConnectionMode>
The connection mode.
sourcepub fn connection_properties(&self) -> Option<&ConnectionProperties>
pub fn connection_properties(&self) -> Option<&ConnectionProperties>
Properties for the outbound connection.
source§impl OutboundConnection
impl OutboundConnection
sourcepub fn builder() -> OutboundConnectionBuilder
pub fn builder() -> OutboundConnectionBuilder
Creates a new builder-style object to manufacture OutboundConnection.
Trait Implementations§
source§impl Clone for OutboundConnection
impl Clone for OutboundConnection
source§fn clone(&self) -> OutboundConnection
fn clone(&self) -> OutboundConnection
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 Debug for OutboundConnection
impl Debug for OutboundConnection
source§impl PartialEq<OutboundConnection> for OutboundConnection
impl PartialEq<OutboundConnection> for OutboundConnection
source§fn eq(&self, other: &OutboundConnection) -> bool
fn eq(&self, other: &OutboundConnection) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for OutboundConnection
Auto Trait Implementations§
impl RefUnwindSafe for OutboundConnection
impl Send for OutboundConnection
impl Sync for OutboundConnection
impl Unpin for OutboundConnection
impl UnwindSafe for OutboundConnection
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more