Struct aws_sdk_opensearch::types::InboundConnection
source · #[non_exhaustive]pub struct InboundConnection { /* private fields */ }Expand description
Describes an inbound cross-cluster connection for Amazon OpenSearch Service. For more information, see Cross-cluster search for Amazon OpenSearch Service.
Implementations§
source§impl InboundConnection
impl InboundConnection
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>
The unique identifier of the connection.
sourcepub fn connection_status(&self) -> Option<&InboundConnectionStatus>
pub fn connection_status(&self) -> Option<&InboundConnectionStatus>
The current status of the connection.
sourcepub fn connection_mode(&self) -> Option<&ConnectionMode>
pub fn connection_mode(&self) -> Option<&ConnectionMode>
The connection mode.
source§impl InboundConnection
impl InboundConnection
sourcepub fn builder() -> InboundConnectionBuilder
pub fn builder() -> InboundConnectionBuilder
Creates a new builder-style object to manufacture InboundConnection.
Trait Implementations§
source§impl Clone for InboundConnection
impl Clone for InboundConnection
source§fn clone(&self) -> InboundConnection
fn clone(&self) -> InboundConnection
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 InboundConnection
impl Debug for InboundConnection
source§impl PartialEq<InboundConnection> for InboundConnection
impl PartialEq<InboundConnection> for InboundConnection
source§fn eq(&self, other: &InboundConnection) -> bool
fn eq(&self, other: &InboundConnection) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for InboundConnection
Auto Trait Implementations§
impl RefUnwindSafe for InboundConnection
impl Send for InboundConnection
impl Sync for InboundConnection
impl Unpin for InboundConnection
impl UnwindSafe for InboundConnection
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