Struct aws_sdk_backupgateway::operation::put_bandwidth_rate_limit_schedule::PutBandwidthRateLimitScheduleInput
source · #[non_exhaustive]pub struct PutBandwidthRateLimitScheduleInput {
pub gateway_arn: Option<String>,
pub bandwidth_rate_limit_intervals: Option<Vec<BandwidthRateLimitInterval>>,
}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.gateway_arn: Option<String>The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and Amazon Web Services Region.
bandwidth_rate_limit_intervals: Option<Vec<BandwidthRateLimitInterval>>An array containing bandwidth rate limit schedule intervals for a gateway. When no bandwidth rate limit intervals have been scheduled, the array is empty.
Implementations§
source§impl PutBandwidthRateLimitScheduleInput
impl PutBandwidthRateLimitScheduleInput
sourcepub fn gateway_arn(&self) -> Option<&str>
pub fn gateway_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and Amazon Web Services Region.
sourcepub fn bandwidth_rate_limit_intervals(&self) -> &[BandwidthRateLimitInterval]
pub fn bandwidth_rate_limit_intervals(&self) -> &[BandwidthRateLimitInterval]
An array containing bandwidth rate limit schedule intervals for a gateway. When no bandwidth rate limit intervals have been scheduled, the array is empty.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .bandwidth_rate_limit_intervals.is_none().
source§impl PutBandwidthRateLimitScheduleInput
impl PutBandwidthRateLimitScheduleInput
sourcepub fn builder() -> PutBandwidthRateLimitScheduleInputBuilder
pub fn builder() -> PutBandwidthRateLimitScheduleInputBuilder
Creates a new builder-style object to manufacture PutBandwidthRateLimitScheduleInput.
Trait Implementations§
source§impl Clone for PutBandwidthRateLimitScheduleInput
impl Clone for PutBandwidthRateLimitScheduleInput
source§fn clone(&self) -> PutBandwidthRateLimitScheduleInput
fn clone(&self) -> PutBandwidthRateLimitScheduleInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for PutBandwidthRateLimitScheduleInput
impl PartialEq for PutBandwidthRateLimitScheduleInput
source§fn eq(&self, other: &PutBandwidthRateLimitScheduleInput) -> bool
fn eq(&self, other: &PutBandwidthRateLimitScheduleInput) -> bool
self and other values to be equal, and is used
by ==.