[][src]Struct rusoto_es::CreateOutboundCrossClusterSearchConnectionResponse

pub struct CreateOutboundCrossClusterSearchConnectionResponse {
    pub connection_alias: Option<String>,
    pub connection_status: Option<OutboundCrossClusterSearchConnectionStatus>,
    pub cross_cluster_search_connection_id: Option<String>,
    pub destination_domain_info: Option<DomainInformation>,
    pub source_domain_info: Option<DomainInformation>,
}

The result of a CreateOutboundCrossClusterSearchConnection request. Contains the details of the newly created cross-cluster search connection.

Fields

connection_alias: Option<String>

Specifies the connection alias provided during the create connection request.

connection_status: Option<OutboundCrossClusterSearchConnectionStatus>

Specifies the OutboundCrossClusterSearchConnectionStatus for the newly created connection.

cross_cluster_search_connection_id: Option<String>

Unique id for the created outbound connection, which is used for subsequent operations on connection.

destination_domain_info: Option<DomainInformation>

Specifies the DomainInformation for the destination Elasticsearch domain.

source_domain_info: Option<DomainInformation>

Specifies the DomainInformation for the source Elasticsearch domain.

Trait Implementations

impl Clone for CreateOutboundCrossClusterSearchConnectionResponse[src]

impl Debug for CreateOutboundCrossClusterSearchConnectionResponse[src]

impl Default for CreateOutboundCrossClusterSearchConnectionResponse[src]

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

impl PartialEq<CreateOutboundCrossClusterSearchConnectionResponse> for CreateOutboundCrossClusterSearchConnectionResponse[src]

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