aws_sdk_devicefarm/client/create_network_profile.rs
// 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):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the project for which you want to create a network profile.</p><br>
/// - [`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):<br>required: **true**<br><p>The name for the new network profile.</p><br>
/// - [`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):<br>required: **false**<br><p>The description of the network profile.</p><br>
/// - [`r#type(NetworkProfileType)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::type) / [`set_type(Option<NetworkProfileType>)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::set_type):<br>required: **false**<br><p>The type of network profile to create. Valid values are listed here.</p><br>
/// - [`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):<br>required: **false**<br><p>The data throughput rate in bits per second, as an integer from 0 to 104857600.</p><br>
/// - [`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):<br>required: **false**<br><p>The data throughput rate in bits per second, as an integer from 0 to 104857600.</p><br>
/// - [`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):<br>required: **false**<br><p>Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.</p><br>
/// - [`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):<br>required: **false**<br><p>Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.</p><br>
/// - [`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):<br>required: **false**<br><p>Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.</p><br>
/// - [`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):<br>required: **false**<br><p>Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.</p><br>
/// - [`uplink_loss_percent(i32)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::uplink_loss_percent) / [`set_uplink_loss_percent(Option<i32>)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::set_uplink_loss_percent):<br>required: **false**<br><p>Proportion of transmitted packets that fail to arrive from 0 to 100 percent.</p><br>
/// - [`downlink_loss_percent(i32)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::downlink_loss_percent) / [`set_downlink_loss_percent(Option<i32>)`](crate::operation::create_network_profile::builders::CreateNetworkProfileFluentBuilder::set_downlink_loss_percent):<br>required: **false**<br><p>Proportion of received packets that fail to arrive from 0 to 100 percent.</p><br>
/// - 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())
}
}