// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`CreateNetworkProfile`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`project_arn(impl Into<String>)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::project_arn) / [`set_project_arn(Option<String>)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::set_project_arn): <p>The Amazon Resource Name (ARN) of the project for which you want to create a network profile.</p>
/// - [`name(impl Into<String>)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::set_name): <p>The name for the new network profile.</p>
/// - [`description(impl Into<String>)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::set_description): <p>The description of the network profile.</p>
/// - [`r#type(NetworkProfileType)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::type) / [`set_type(Option<NetworkProfileType>)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::set_type): <p>The type of network profile to create. Valid values are listed here.</p>
/// - [`uplink_bandwidth_bits(i64)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::uplink_bandwidth_bits) / [`set_uplink_bandwidth_bits(Option<i64>)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::set_uplink_bandwidth_bits): <p>The data throughput rate in bits per second, as an integer from 0 to 104857600.</p>
/// - [`downlink_bandwidth_bits(i64)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::downlink_bandwidth_bits) / [`set_downlink_bandwidth_bits(Option<i64>)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::set_downlink_bandwidth_bits): <p>The data throughput rate in bits per second, as an integer from 0 to 104857600.</p>
/// - [`uplink_delay_ms(i64)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::uplink_delay_ms) / [`set_uplink_delay_ms(Option<i64>)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::set_uplink_delay_ms): <p>Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.</p>
/// - [`downlink_delay_ms(i64)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::downlink_delay_ms) / [`set_downlink_delay_ms(Option<i64>)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::set_downlink_delay_ms): <p>Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.</p>
/// - [`uplink_jitter_ms(i64)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::uplink_jitter_ms) / [`set_uplink_jitter_ms(Option<i64>)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::set_uplink_jitter_ms): <p>Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.</p>
/// - [`downlink_jitter_ms(i64)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::downlink_jitter_ms) / [`set_downlink_jitter_ms(Option<i64>)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::set_downlink_jitter_ms): <p>Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.</p>
/// - [`uplink_loss_percent(i32)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::uplink_loss_percent) / [`set_uplink_loss_percent(i32)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::set_uplink_loss_percent): <p>Proportion of transmitted packets that fail to arrive from 0 to 100 percent.</p>
/// - [`downlink_loss_percent(i32)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::downlink_loss_percent) / [`set_downlink_loss_percent(i32)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::set_downlink_loss_percent): <p>Proportion of received packets that fail to arrive from 0 to 100 percent.</p>
/// - On success, responds with [`CreateNetworkProfileOutput`](crate::operation::create_network_profile::CreateNetworkProfileOutput) with field(s):
/// - [`network_profile(Option<NetworkProfile>)`](crate::operation::create_network_profile::CreateNetworkProfileOutput::network_profile): <p>The network profile that is returned by the create network profile request.</p>
/// - On failure, responds with [`SdkError<CreateNetworkProfileError>`](crate::operation::create_network_profile::CreateNetworkProfileError)
pub fn create_network_profile(
&self,
) -> crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder {
crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::new(
self.handle.clone(),
)
}
}