#[non_exhaustive]pub struct InboundCrossClusterSearchConnection { /* private fields */ }
Expand description
Specifies details of an inbound connection.
Implementations
sourceimpl InboundCrossClusterSearchConnection
impl InboundCrossClusterSearchConnection
sourcepub fn source_domain_info(&self) -> Option<&DomainInformation>
pub fn source_domain_info(&self) -> Option<&DomainInformation>
Specifies the
for the source Elasticsearch domain.DomainInformation
sourcepub fn destination_domain_info(&self) -> Option<&DomainInformation>
pub fn destination_domain_info(&self) -> Option<&DomainInformation>
Specifies the
for the destination Elasticsearch domain.DomainInformation
sourcepub fn cross_cluster_search_connection_id(&self) -> Option<&str>
pub fn cross_cluster_search_connection_id(&self) -> Option<&str>
Specifies the connection id for the inbound cross-cluster search connection.
sourcepub fn connection_status(
&self
) -> Option<&InboundCrossClusterSearchConnectionStatus>
pub fn connection_status(
&self
) -> Option<&InboundCrossClusterSearchConnectionStatus>
Specifies the
for the outbound connection.InboundCrossClusterSearchConnectionStatus
sourceimpl InboundCrossClusterSearchConnection
impl InboundCrossClusterSearchConnection
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture InboundCrossClusterSearchConnection
.
Trait Implementations
sourceimpl Clone for InboundCrossClusterSearchConnection
impl Clone for InboundCrossClusterSearchConnection
sourcefn clone(&self) -> InboundCrossClusterSearchConnection
fn clone(&self) -> InboundCrossClusterSearchConnection
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl PartialEq<InboundCrossClusterSearchConnection> for InboundCrossClusterSearchConnection
impl PartialEq<InboundCrossClusterSearchConnection> for InboundCrossClusterSearchConnection
sourcefn eq(&self, other: &InboundCrossClusterSearchConnection) -> bool
fn eq(&self, other: &InboundCrossClusterSearchConnection) -> bool
impl StructuralPartialEq for InboundCrossClusterSearchConnection
Auto Trait Implementations
impl RefUnwindSafe for InboundCrossClusterSearchConnection
impl Send for InboundCrossClusterSearchConnection
impl Sync for InboundCrossClusterSearchConnection
impl Unpin for InboundCrossClusterSearchConnection
impl UnwindSafe for InboundCrossClusterSearchConnection
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more