[][src]Struct rusoto_es::OutboundCrossClusterSearchConnectionStatus

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

Specifies the connection status of an outbound cross-cluster search connection.

Fields

message: Option<String>

Specifies verbose information for the outbound connection status.

status_code: Option<String>

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

  • VALIDATING: The outbound connection request is being validated.
  • VALIDATIONFAILED: Validation failed for the connection request.
  • PENDINGACCEPTANCE: Outbound connection request is validated and is not yet accepted by destination domain owner.
  • PROVISIONING: Outbound connection request is in process.
  • ACTIVE: Outbound connection is active and ready to use.
  • REJECTED: Outbound connection request is rejected by destination domain owner.
  • DELETING: Outbound connection deletion is in progress.
  • DELETED: Outbound connection is deleted and cannot be used further.

Trait Implementations

impl Clone for OutboundCrossClusterSearchConnectionStatus[src]

impl Debug for OutboundCrossClusterSearchConnectionStatus[src]

impl Default for OutboundCrossClusterSearchConnectionStatus[src]

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

impl PartialEq<OutboundCrossClusterSearchConnectionStatus> for OutboundCrossClusterSearchConnectionStatus[src]

impl StructuralPartialEq for OutboundCrossClusterSearchConnectionStatus[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> Instrument 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> 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.