pub struct CreateOutboundConnection { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateOutboundConnection
.
Creates a new cross-cluster connection from a local OpenSearch domain to a remote OpenSearch domain.
Implementations§
source§impl CreateOutboundConnection
impl CreateOutboundConnection
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<CreateOutboundConnection, AwsResponseRetryClassifier>, SdkError<CreateOutboundConnectionError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<CreateOutboundConnection, AwsResponseRetryClassifier>, SdkError<CreateOutboundConnectionError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<CreateOutboundConnectionOutput, SdkError<CreateOutboundConnectionError>>
pub async fn send(
self
) -> Result<CreateOutboundConnectionOutput, SdkError<CreateOutboundConnectionError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn local_domain_info(self, input: DomainInformationContainer) -> Self
pub fn local_domain_info(self, input: DomainInformationContainer) -> Self
The
for the local OpenSearch domain. AWSDomainInformation
sourcepub fn set_local_domain_info(
self,
input: Option<DomainInformationContainer>
) -> Self
pub fn set_local_domain_info(
self,
input: Option<DomainInformationContainer>
) -> Self
The
for the local OpenSearch domain. AWSDomainInformation
sourcepub fn remote_domain_info(self, input: DomainInformationContainer) -> Self
pub fn remote_domain_info(self, input: DomainInformationContainer) -> Self
The
for the remote OpenSearch domain. AWSDomainInformation
sourcepub fn set_remote_domain_info(
self,
input: Option<DomainInformationContainer>
) -> Self
pub fn set_remote_domain_info(
self,
input: Option<DomainInformationContainer>
) -> Self
The
for the remote OpenSearch domain. AWSDomainInformation
sourcepub fn connection_alias(self, input: impl Into<String>) -> Self
pub fn connection_alias(self, input: impl Into<String>) -> Self
The connection alias used used by the customer for this cross-cluster connection.
sourcepub fn set_connection_alias(self, input: Option<String>) -> Self
pub fn set_connection_alias(self, input: Option<String>) -> Self
The connection alias used used by the customer for this cross-cluster connection.
Trait Implementations§
source§impl Clone for CreateOutboundConnection
impl Clone for CreateOutboundConnection
source§fn clone(&self) -> CreateOutboundConnection
fn clone(&self) -> CreateOutboundConnection
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more