// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`StartConnection`](crate::operation::start_connection::builders::StartConnectionFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`device_serial_number(impl Into<String>)`](crate::operation::start_connection::builders::StartConnectionFluentBuilder::device_serial_number) / [`set_device_serial_number(Option<String>)`](crate::operation::start_connection::builders::StartConnectionFluentBuilder::set_device_serial_number): <p> The serial number of the dongle. </p>
/// - [`asset_id(impl Into<String>)`](crate::operation::start_connection::builders::StartConnectionFluentBuilder::asset_id) / [`set_asset_id(Option<String>)`](crate::operation::start_connection::builders::StartConnectionFluentBuilder::set_asset_id): <p> The ID of the Outpost server. </p>
/// - [`client_public_key(impl Into<String>)`](crate::operation::start_connection::builders::StartConnectionFluentBuilder::client_public_key) / [`set_client_public_key(Option<String>)`](crate::operation::start_connection::builders::StartConnectionFluentBuilder::set_client_public_key): <p> The public key of the client. </p>
/// - [`network_interface_device_index(i32)`](crate::operation::start_connection::builders::StartConnectionFluentBuilder::network_interface_device_index) / [`set_network_interface_device_index(Option<i32>)`](crate::operation::start_connection::builders::StartConnectionFluentBuilder::set_network_interface_device_index): <p> The device index of the network interface on the Outpost server. </p>
/// - On success, responds with [`StartConnectionOutput`](crate::operation::start_connection::StartConnectionOutput) with field(s):
/// - [`connection_id(Option<String>)`](crate::operation::start_connection::StartConnectionOutput::connection_id): <p> The ID of the connection. </p>
/// - [`underlay_ip_address(Option<String>)`](crate::operation::start_connection::StartConnectionOutput::underlay_ip_address): <p> The underlay IP address. </p>
/// - On failure, responds with [`SdkError<StartConnectionError>`](crate::operation::start_connection::StartConnectionError)
pub fn start_connection(
&self,
) -> crate::operation::start_connection::builders::StartConnectionFluentBuilder {
crate::operation::start_connection::builders::StartConnectionFluentBuilder::new(
self.handle.clone(),
)
}
}