Struct aws_sdk_apigateway::types::ThrottleSettings
source · #[non_exhaustive]pub struct ThrottleSettings {
pub burst_limit: i32,
pub rate_limit: f64,
}
Expand description
The API request rate limits.
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.burst_limit: i32
The API target request burst rate limit. This allows more requests through for a period of time than the target rate limit.
rate_limit: f64
The API target request rate limit.
Implementations§
source§impl ThrottleSettings
impl ThrottleSettings
sourcepub fn burst_limit(&self) -> i32
pub fn burst_limit(&self) -> i32
The API target request burst rate limit. This allows more requests through for a period of time than the target rate limit.
sourcepub fn rate_limit(&self) -> f64
pub fn rate_limit(&self) -> f64
The API target request rate limit.
source§impl ThrottleSettings
impl ThrottleSettings
sourcepub fn builder() -> ThrottleSettingsBuilder
pub fn builder() -> ThrottleSettingsBuilder
Creates a new builder-style object to manufacture ThrottleSettings
.
Trait Implementations§
source§impl Clone for ThrottleSettings
impl Clone for ThrottleSettings
source§fn clone(&self) -> ThrottleSettings
fn clone(&self) -> ThrottleSettings
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 Debug for ThrottleSettings
impl Debug for ThrottleSettings
source§impl PartialEq for ThrottleSettings
impl PartialEq for ThrottleSettings
source§fn eq(&self, other: &ThrottleSettings) -> bool
fn eq(&self, other: &ThrottleSettings) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ThrottleSettings
Auto Trait Implementations§
impl RefUnwindSafe for ThrottleSettings
impl Send for ThrottleSettings
impl Sync for ThrottleSettings
impl Unpin for ThrottleSettings
impl UnwindSafe for ThrottleSettings
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
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>
Creates a shared type from an unshared type.