Struct aws_sdk_opensearch::operation::create_outbound_connection::CreateOutboundConnectionOutput
source · #[non_exhaustive]pub struct CreateOutboundConnectionOutput { /* private fields */ }Expand description
The result of a CreateOutboundConnection request. Contains details about the newly created cross-cluster 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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl PartialEq<CreateOutboundConnectionOutput> for CreateOutboundConnectionOutput
impl PartialEq<CreateOutboundConnectionOutput> for CreateOutboundConnectionOutput
source§fn eq(&self, other: &CreateOutboundConnectionOutput) -> bool
fn eq(&self, other: &CreateOutboundConnectionOutput) -> bool
This method tests for
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>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for CreateOutboundConnectionOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateOutboundConnectionOutput
impl Send for CreateOutboundConnectionOutput
impl Sync for CreateOutboundConnectionOutput
impl Unpin for CreateOutboundConnectionOutput
impl UnwindSafe for CreateOutboundConnectionOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more