Struct aws_sdk_opensearch::types::InboundConnectionStatus
source · #[non_exhaustive]pub struct InboundConnectionStatus { /* private fields */ }Expand description
The status of an inbound cross-cluster connection for OpenSearch Service.
Implementations§
source§impl InboundConnectionStatus
impl InboundConnectionStatus
sourcepub fn status_code(&self) -> Option<&InboundConnectionStatusCode>
pub fn status_code(&self) -> Option<&InboundConnectionStatusCode>
The status code for the connection. Can be one of the following:
-
PENDING_ACCEPTANCE - Inbound connection is not yet accepted by the remote domain owner.
-
APPROVED: Inbound connection is pending acceptance by the remote domain owner.
-
PROVISIONING: Inbound connection is being provisioned.
-
ACTIVE: Inbound connection is active and ready to use.
-
REJECTING: Inbound connection rejection is in process.
-
REJECTED: Inbound connection is rejected.
-
DELETING: Inbound connection deletion is in progress.
-
DELETED: Inbound connection is deleted and can no longer be used.
source§impl InboundConnectionStatus
impl InboundConnectionStatus
sourcepub fn builder() -> InboundConnectionStatusBuilder
pub fn builder() -> InboundConnectionStatusBuilder
Creates a new builder-style object to manufacture InboundConnectionStatus.
Trait Implementations§
source§impl Clone for InboundConnectionStatus
impl Clone for InboundConnectionStatus
source§fn clone(&self) -> InboundConnectionStatus
fn clone(&self) -> InboundConnectionStatus
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 InboundConnectionStatus
impl Debug for InboundConnectionStatus
source§impl PartialEq<InboundConnectionStatus> for InboundConnectionStatus
impl PartialEq<InboundConnectionStatus> for InboundConnectionStatus
source§fn eq(&self, other: &InboundConnectionStatus) -> bool
fn eq(&self, other: &InboundConnectionStatus) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for InboundConnectionStatus
Auto Trait Implementations§
impl RefUnwindSafe for InboundConnectionStatus
impl Send for InboundConnectionStatus
impl Sync for InboundConnectionStatus
impl Unpin for InboundConnectionStatus
impl UnwindSafe for InboundConnectionStatus
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