Struct aws_sdk_backupgateway::operation::get_bandwidth_rate_limit_schedule::GetBandwidthRateLimitScheduleOutput
source · #[non_exhaustive]pub struct GetBandwidthRateLimitScheduleOutput {
pub gateway_arn: Option<String>,
pub bandwidth_rate_limit_intervals: Option<Vec<BandwidthRateLimitInterval>>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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 GetBandwidthRateLimitScheduleOutput
impl GetBandwidthRateLimitScheduleOutput
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
) -> Option<&[BandwidthRateLimitInterval]>
pub fn bandwidth_rate_limit_intervals( &self ) -> Option<&[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.
source§impl GetBandwidthRateLimitScheduleOutput
impl GetBandwidthRateLimitScheduleOutput
sourcepub fn builder() -> GetBandwidthRateLimitScheduleOutputBuilder
pub fn builder() -> GetBandwidthRateLimitScheduleOutputBuilder
Creates a new builder-style object to manufacture GetBandwidthRateLimitScheduleOutput
.
Trait Implementations§
source§impl Clone for GetBandwidthRateLimitScheduleOutput
impl Clone for GetBandwidthRateLimitScheduleOutput
source§fn clone(&self) -> GetBandwidthRateLimitScheduleOutput
fn clone(&self) -> GetBandwidthRateLimitScheduleOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<GetBandwidthRateLimitScheduleOutput> for GetBandwidthRateLimitScheduleOutput
impl PartialEq<GetBandwidthRateLimitScheduleOutput> for GetBandwidthRateLimitScheduleOutput
source§fn eq(&self, other: &GetBandwidthRateLimitScheduleOutput) -> bool
fn eq(&self, other: &GetBandwidthRateLimitScheduleOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetBandwidthRateLimitScheduleOutput
impl RequestId for GetBandwidthRateLimitScheduleOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetBandwidthRateLimitScheduleOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetBandwidthRateLimitScheduleOutput
impl Send for GetBandwidthRateLimitScheduleOutput
impl Sync for GetBandwidthRateLimitScheduleOutput
impl Unpin for GetBandwidthRateLimitScheduleOutput
impl UnwindSafe for GetBandwidthRateLimitScheduleOutput
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
Mutably borrows from an owned value. Read more