#[non_exhaustive]pub struct CreateNetworkProfileInput { /* private fields */ }Implementations§
source§impl CreateNetworkProfileInput
impl CreateNetworkProfileInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateNetworkProfile, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateNetworkProfile, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateNetworkProfile>
Examples found in repository?
1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::CreateNetworkProfile,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<crate::error::CreateNetworkProfileError>,
> {
let handle = self.handle.clone();
let operation = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
Ok(crate::operation::customize::CustomizableOperation { handle, operation })
}
/// Sends the request and returns the response.
///
/// If an error occurs, an `SdkError` will be returned with additional details that
/// can be matched against.
///
/// By default, any retryable failures will be retried twice. Retry behavior
/// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
/// set when configuring the client.
pub async fn send(
self,
) -> std::result::Result<
crate::output::CreateNetworkProfileOutput,
aws_smithy_http::result::SdkError<crate::error::CreateNetworkProfileError>,
> {
let op = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&self.handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
self.handle.client.call(op).await
}sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateNetworkProfileInput.
source§impl CreateNetworkProfileInput
impl CreateNetworkProfileInput
sourcepub fn project_arn(&self) -> Option<&str>
pub fn project_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the project for which you want to create a network profile.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the network profile.
sourcepub fn type(&self) -> Option<&NetworkProfileType>
pub fn type(&self) -> Option<&NetworkProfileType>
The type of network profile to create. Valid values are listed here.
sourcepub fn uplink_bandwidth_bits(&self) -> Option<i64>
pub fn uplink_bandwidth_bits(&self) -> Option<i64>
The data throughput rate in bits per second, as an integer from 0 to 104857600.
sourcepub fn downlink_bandwidth_bits(&self) -> Option<i64>
pub fn downlink_bandwidth_bits(&self) -> Option<i64>
The data throughput rate in bits per second, as an integer from 0 to 104857600.
sourcepub fn uplink_delay_ms(&self) -> Option<i64>
pub fn uplink_delay_ms(&self) -> Option<i64>
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
sourcepub fn downlink_delay_ms(&self) -> Option<i64>
pub fn downlink_delay_ms(&self) -> Option<i64>
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
sourcepub fn uplink_jitter_ms(&self) -> Option<i64>
pub fn uplink_jitter_ms(&self) -> Option<i64>
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
sourcepub fn downlink_jitter_ms(&self) -> Option<i64>
pub fn downlink_jitter_ms(&self) -> Option<i64>
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
sourcepub fn uplink_loss_percent(&self) -> i32
pub fn uplink_loss_percent(&self) -> i32
Proportion of transmitted packets that fail to arrive from 0 to 100 percent.
sourcepub fn downlink_loss_percent(&self) -> i32
pub fn downlink_loss_percent(&self) -> i32
Proportion of received packets that fail to arrive from 0 to 100 percent.
Trait Implementations§
source§impl Clone for CreateNetworkProfileInput
impl Clone for CreateNetworkProfileInput
source§fn clone(&self) -> CreateNetworkProfileInput
fn clone(&self) -> CreateNetworkProfileInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more