Struct aws_sdk_opensearch::types::InboundConnection
source · #[non_exhaustive]pub struct InboundConnection {
pub local_domain_info: Option<DomainInformationContainer>,
pub remote_domain_info: Option<DomainInformationContainer>,
pub connection_id: Option<String>,
pub connection_status: Option<InboundConnectionStatus>,
pub connection_mode: Option<ConnectionMode>,
}
Expand description
Describes an inbound cross-cluster connection for Amazon OpenSearch Service. For more information, see Cross-cluster search for Amazon OpenSearch Service.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.local_domain_info: Option<DomainInformationContainer>
Information about the source (local) domain.
remote_domain_info: Option<DomainInformationContainer>
Information about the destination (remote) domain.
connection_id: Option<String>
The unique identifier of the connection.
connection_status: Option<InboundConnectionStatus>
The current status of the connection.
connection_mode: Option<ConnectionMode>
The connection mode.
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 for InboundConnection
impl PartialEq 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 Freeze for InboundConnection
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.