[][src]Struct rusoto_es::InboundCrossClusterSearchConnectionStatus

pub struct InboundCrossClusterSearchConnectionStatus {
    pub message: Option<String>,
    pub status_code: Option<String>,
}

Specifies the coonection status of an inbound cross-cluster search connection.

Fields

message: Option<String>

Specifies verbose information for the inbound connection status.

status_code: Option<String>

The state code for inbound connection. This can be one of the following:

  • PENDING_ACCEPTANCE: Inbound connection is not yet accepted by destination domain owner.
  • APPROVED: Inbound connection is pending acceptance by destination domain owner.
  • 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 cannot be used further.

Trait Implementations

impl Clone for InboundCrossClusterSearchConnectionStatus[src]

impl Debug for InboundCrossClusterSearchConnectionStatus[src]

impl Default for InboundCrossClusterSearchConnectionStatus[src]

impl<'de> Deserialize<'de> for InboundCrossClusterSearchConnectionStatus[src]

impl PartialEq<InboundCrossClusterSearchConnectionStatus> for InboundCrossClusterSearchConnectionStatus[src]

impl StructuralPartialEq for InboundCrossClusterSearchConnectionStatus[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.