#[non_exhaustive]pub struct UpdateNetworkProfileInput {
pub arn: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub type: Option<NetworkProfileType>,
pub uplink_bandwidth_bits: Option<i64>,
pub downlink_bandwidth_bits: Option<i64>,
pub uplink_delay_ms: Option<i64>,
pub downlink_delay_ms: Option<i64>,
pub uplink_jitter_ms: Option<i64>,
pub downlink_jitter_ms: Option<i64>,
pub uplink_loss_percent: Option<i32>,
pub downlink_loss_percent: Option<i32>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.arn: Option<String>The Amazon Resource Name (ARN) of the project for which you want to update network profile settings.
name: Option<String>The name of the network profile about which you are returning information.
description: Option<String>The description of the network profile about which you are returning information.
type: Option<NetworkProfileType>The type of network profile to return information about. Valid values are listed here.
uplink_bandwidth_bits: Option<i64>The data throughput rate in bits per second, as an integer from 0 to 104857600.
downlink_bandwidth_bits: Option<i64>The data throughput rate in bits per second, as an integer from 0 to 104857600.
uplink_delay_ms: Option<i64>Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
downlink_delay_ms: Option<i64>Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
uplink_jitter_ms: Option<i64>Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
downlink_jitter_ms: Option<i64>Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
uplink_loss_percent: Option<i32>Proportion of transmitted packets that fail to arrive from 0 to 100 percent.
downlink_loss_percent: Option<i32>Proportion of received packets that fail to arrive from 0 to 100 percent.
Implementations§
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) -> Option<i32>
pub fn uplink_loss_percent(&self) -> Option<i32>
Proportion of transmitted packets that fail to arrive from 0 to 100 percent.
sourcepub fn downlink_loss_percent(&self) -> Option<i32>
pub fn downlink_loss_percent(&self) -> Option<i32>
Proportion of received packets that fail to arrive from 0 to 100 percent.
source§impl UpdateNetworkProfileInput
impl UpdateNetworkProfileInput
sourcepub fn builder() -> UpdateNetworkProfileInputBuilder
pub fn builder() -> UpdateNetworkProfileInputBuilder
Creates a new builder-style object to manufacture UpdateNetworkProfileInput.
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 moresource§impl Debug for UpdateNetworkProfileInput
impl Debug for UpdateNetworkProfileInput
impl StructuralPartialEq for UpdateNetworkProfileInput
Auto Trait Implementations§
impl Freeze for UpdateNetworkProfileInput
impl RefUnwindSafe for UpdateNetworkProfileInput
impl Send for UpdateNetworkProfileInput
impl Sync for UpdateNetworkProfileInput
impl Unpin for UpdateNetworkProfileInput
impl UnwindSafe for UpdateNetworkProfileInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more