#[non_exhaustive]pub struct Builder { /* private fields */ }
Expand description
A builder for BandwidthRateLimitInterval
Implementations
sourceimpl Builder
impl Builder
sourcepub fn start_hour_of_day(self, input: i32) -> Self
pub fn start_hour_of_day(self, input: i32) -> Self
The hour of the day to start the bandwidth rate limit interval.
sourcepub fn set_start_hour_of_day(self, input: Option<i32>) -> Self
pub fn set_start_hour_of_day(self, input: Option<i32>) -> Self
The hour of the day to start the bandwidth rate limit interval.
sourcepub fn start_minute_of_hour(self, input: i32) -> Self
pub fn start_minute_of_hour(self, input: i32) -> Self
The minute of the hour to start the bandwidth rate limit interval. The interval begins at the start of that minute. To begin an interval exactly at the start of the hour, use the value 0
.
sourcepub fn set_start_minute_of_hour(self, input: Option<i32>) -> Self
pub fn set_start_minute_of_hour(self, input: Option<i32>) -> Self
The minute of the hour to start the bandwidth rate limit interval. The interval begins at the start of that minute. To begin an interval exactly at the start of the hour, use the value 0
.
sourcepub fn end_hour_of_day(self, input: i32) -> Self
pub fn end_hour_of_day(self, input: i32) -> Self
The hour of the day to end the bandwidth rate limit interval.
sourcepub fn set_end_hour_of_day(self, input: Option<i32>) -> Self
pub fn set_end_hour_of_day(self, input: Option<i32>) -> Self
The hour of the day to end the bandwidth rate limit interval.
sourcepub fn end_minute_of_hour(self, input: i32) -> Self
pub fn end_minute_of_hour(self, input: i32) -> Self
The minute of the hour to end the bandwidth rate limit interval.
The bandwidth rate limit interval ends at the end of the minute. To end an interval at the end of an hour, use the value 59
.
sourcepub fn set_end_minute_of_hour(self, input: Option<i32>) -> Self
pub fn set_end_minute_of_hour(self, input: Option<i32>) -> Self
The minute of the hour to end the bandwidth rate limit interval.
The bandwidth rate limit interval ends at the end of the minute. To end an interval at the end of an hour, use the value 59
.
sourcepub fn days_of_week(self, input: i32) -> Self
pub fn days_of_week(self, input: i32) -> Self
Appends an item to days_of_week
.
To override the contents of this collection use set_days_of_week
.
The days of the week component of the bandwidth rate limit interval, represented as ordinal numbers from 0 to 6, where 0 represents Sunday and 6 represents Saturday.
sourcepub fn set_days_of_week(self, input: Option<Vec<i32>>) -> Self
pub fn set_days_of_week(self, input: Option<Vec<i32>>) -> Self
The days of the week component of the bandwidth rate limit interval, represented as ordinal numbers from 0 to 6, where 0 represents Sunday and 6 represents Saturday.
sourcepub fn average_upload_rate_limit_in_bits_per_sec(self, input: i64) -> Self
pub fn average_upload_rate_limit_in_bits_per_sec(self, input: i64) -> Self
The average upload rate limit component of the bandwidth rate limit interval, in bits per second. This field does not appear in the response if the upload rate limit is not set.
sourcepub fn set_average_upload_rate_limit_in_bits_per_sec(
self,
input: Option<i64>
) -> Self
pub fn set_average_upload_rate_limit_in_bits_per_sec(
self,
input: Option<i64>
) -> Self
The average upload rate limit component of the bandwidth rate limit interval, in bits per second. This field does not appear in the response if the upload rate limit is not set.
sourcepub fn average_download_rate_limit_in_bits_per_sec(self, input: i64) -> Self
pub fn average_download_rate_limit_in_bits_per_sec(self, input: i64) -> Self
The average download rate limit component of the bandwidth rate limit interval, in bits per second. This field does not appear in the response if the download rate limit is not set.
sourcepub fn set_average_download_rate_limit_in_bits_per_sec(
self,
input: Option<i64>
) -> Self
pub fn set_average_download_rate_limit_in_bits_per_sec(
self,
input: Option<i64>
) -> Self
The average download rate limit component of the bandwidth rate limit interval, in bits per second. This field does not appear in the response if the download rate limit is not set.
sourcepub fn build(self) -> BandwidthRateLimitInterval
pub fn build(self) -> BandwidthRateLimitInterval
Consumes the builder and constructs a BandwidthRateLimitInterval
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more