#[non_exhaustive]pub struct UpdateNetworkProfileInput { /* private fields */ }Implementations§
source§impl UpdateNetworkProfileInput
impl UpdateNetworkProfileInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateNetworkProfile, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateNetworkProfile, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateNetworkProfile>
Examples found in repository?
7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::UpdateNetworkProfile,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<crate::error::UpdateNetworkProfileError>,
> {
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::UpdateNetworkProfileOutput,
aws_smithy_http::result::SdkError<crate::error::UpdateNetworkProfileError>,
> {
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 UpdateNetworkProfileInput.
source§impl UpdateNetworkProfileInput
impl UpdateNetworkProfileInput
sourcepub fn arn(&self) -> Option<&str>
pub fn arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the project for which you want to update network profile settings.
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the network profile about which you are returning information.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the network profile about which you are returning information.
sourcepub fn type(&self) -> Option<&NetworkProfileType>
pub fn type(&self) -> Option<&NetworkProfileType>
The type of network profile to return information about. 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 UpdateNetworkProfileInput
impl Clone for UpdateNetworkProfileInput
source§fn clone(&self) -> UpdateNetworkProfileInput
fn clone(&self) -> UpdateNetworkProfileInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more