// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`CreateOutboundConnection`](crate::operation::create_outbound_connection::builders::CreateOutboundConnectionFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`local_domain_info(DomainInformationContainer)`](crate::operation::create_outbound_connection::builders::CreateOutboundConnectionFluentBuilder::local_domain_info) / [`set_local_domain_info(Option<DomainInformationContainer>)`](crate::operation::create_outbound_connection::builders::CreateOutboundConnectionFluentBuilder::set_local_domain_info):<br>required: **true**<br><p>Name and Region of the source (local) domain.</p><br>
/// - [`remote_domain_info(DomainInformationContainer)`](crate::operation::create_outbound_connection::builders::CreateOutboundConnectionFluentBuilder::remote_domain_info) / [`set_remote_domain_info(Option<DomainInformationContainer>)`](crate::operation::create_outbound_connection::builders::CreateOutboundConnectionFluentBuilder::set_remote_domain_info):<br>required: **true**<br><p>Name and Region of the destination (remote) domain.</p><br>
/// - [`connection_alias(impl Into<String>)`](crate::operation::create_outbound_connection::builders::CreateOutboundConnectionFluentBuilder::connection_alias) / [`set_connection_alias(Option<String>)`](crate::operation::create_outbound_connection::builders::CreateOutboundConnectionFluentBuilder::set_connection_alias):<br>required: **true**<br><p>Name of the connection.</p><br>
/// - [`connection_mode(ConnectionMode)`](crate::operation::create_outbound_connection::builders::CreateOutboundConnectionFluentBuilder::connection_mode) / [`set_connection_mode(Option<ConnectionMode>)`](crate::operation::create_outbound_connection::builders::CreateOutboundConnectionFluentBuilder::set_connection_mode):<br>required: **false**<br><p>The connection mode.</p><br>
/// - [`connection_properties(ConnectionProperties)`](crate::operation::create_outbound_connection::builders::CreateOutboundConnectionFluentBuilder::connection_properties) / [`set_connection_properties(Option<ConnectionProperties>)`](crate::operation::create_outbound_connection::builders::CreateOutboundConnectionFluentBuilder::set_connection_properties):<br>required: **false**<br><p>The <code>ConnectionProperties</code> for the outbound connection.</p><br>
/// - On success, responds with [`CreateOutboundConnectionOutput`](crate::operation::create_outbound_connection::CreateOutboundConnectionOutput) with field(s):
/// - [`local_domain_info(Option<DomainInformationContainer>)`](crate::operation::create_outbound_connection::CreateOutboundConnectionOutput::local_domain_info): <p>Information about the source (local) domain.</p>
/// - [`remote_domain_info(Option<DomainInformationContainer>)`](crate::operation::create_outbound_connection::CreateOutboundConnectionOutput::remote_domain_info): <p>Information about the destination (remote) domain.</p>
/// - [`connection_alias(Option<String>)`](crate::operation::create_outbound_connection::CreateOutboundConnectionOutput::connection_alias): <p>Name of the connection.</p>
/// - [`connection_status(Option<OutboundConnectionStatus>)`](crate::operation::create_outbound_connection::CreateOutboundConnectionOutput::connection_status): <p>The status of the connection.</p>
/// - [`connection_id(Option<String>)`](crate::operation::create_outbound_connection::CreateOutboundConnectionOutput::connection_id): <p>The unique identifier for the created outbound connection, which is used for subsequent operations on the connection.</p>
/// - [`connection_mode(Option<ConnectionMode>)`](crate::operation::create_outbound_connection::CreateOutboundConnectionOutput::connection_mode): <p>The connection mode.</p>
/// - [`connection_properties(Option<ConnectionProperties>)`](crate::operation::create_outbound_connection::CreateOutboundConnectionOutput::connection_properties): <p>The <code>ConnectionProperties</code> for the newly created connection.</p>
/// - On failure, responds with [`SdkError<CreateOutboundConnectionError>`](crate::operation::create_outbound_connection::CreateOutboundConnectionError)
pub fn create_outbound_connection(&self) -> crate::operation::create_outbound_connection::builders::CreateOutboundConnectionFluentBuilder {
crate::operation::create_outbound_connection::builders::CreateOutboundConnectionFluentBuilder::new(self.handle.clone())
}
}