Struct aws_sdk_opensearch::operation::create_outbound_connection::CreateOutboundConnectionOutput
source · #[non_exhaustive]pub struct CreateOutboundConnectionOutput {
pub local_domain_info: Option<DomainInformationContainer>,
pub remote_domain_info: Option<DomainInformationContainer>,
pub connection_alias: Option<String>,
pub connection_status: Option<OutboundConnectionStatus>,
pub connection_id: Option<String>,
pub connection_mode: Option<ConnectionMode>,
pub connection_properties: Option<ConnectionProperties>,
/* private fields */
}
Expand description
The result of a CreateOutboundConnection
request. Contains details about the newly created cross-cluster connection.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.local_domain_info: Option<DomainInformationContainer>
Information about the source (local) domain.
remote_domain_info: Option<DomainInformationContainer>
Information about the destination (remote) domain.
connection_alias: Option<String>
Name of the connection.
connection_status: Option<OutboundConnectionStatus>
The status of the connection.
connection_id: Option<String>
The unique identifier for the created outbound connection, which is used for subsequent operations on the connection.
connection_mode: Option<ConnectionMode>
The connection mode.
connection_properties: Option<ConnectionProperties>
The ConnectionProperties
for the newly created connection.
Implementations§
source§impl CreateOutboundConnectionOutput
impl CreateOutboundConnectionOutput
sourcepub fn local_domain_info(&self) -> Option<&DomainInformationContainer>
pub fn local_domain_info(&self) -> Option<&DomainInformationContainer>
Information about the source (local) domain.
sourcepub fn remote_domain_info(&self) -> Option<&DomainInformationContainer>
pub fn remote_domain_info(&self) -> Option<&DomainInformationContainer>
Information about the destination (remote) domain.
sourcepub fn connection_alias(&self) -> Option<&str>
pub fn connection_alias(&self) -> Option<&str>
Name of the connection.
sourcepub fn connection_status(&self) -> Option<&OutboundConnectionStatus>
pub fn connection_status(&self) -> Option<&OutboundConnectionStatus>
The status of the connection.
sourcepub fn connection_id(&self) -> Option<&str>
pub fn connection_id(&self) -> Option<&str>
The unique identifier for the created outbound connection, which is used for subsequent operations on the connection.
sourcepub fn connection_mode(&self) -> Option<&ConnectionMode>
pub fn connection_mode(&self) -> Option<&ConnectionMode>
The connection mode.
sourcepub fn connection_properties(&self) -> Option<&ConnectionProperties>
pub fn connection_properties(&self) -> Option<&ConnectionProperties>
The ConnectionProperties
for the newly created connection.
source§impl CreateOutboundConnectionOutput
impl CreateOutboundConnectionOutput
sourcepub fn builder() -> CreateOutboundConnectionOutputBuilder
pub fn builder() -> CreateOutboundConnectionOutputBuilder
Creates a new builder-style object to manufacture CreateOutboundConnectionOutput
.
Trait Implementations§
source§impl Clone for CreateOutboundConnectionOutput
impl Clone for CreateOutboundConnectionOutput
source§fn clone(&self) -> CreateOutboundConnectionOutput
fn clone(&self) -> CreateOutboundConnectionOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for CreateOutboundConnectionOutput
impl PartialEq for CreateOutboundConnectionOutput
source§fn eq(&self, other: &CreateOutboundConnectionOutput) -> bool
fn eq(&self, other: &CreateOutboundConnectionOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateOutboundConnectionOutput
impl RequestId for CreateOutboundConnectionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.