[][src]Struct rusoto_storagegateway::BandwidthRateLimitInterval

pub struct BandwidthRateLimitInterval {
    pub average_download_rate_limit_in_bits_per_sec: Option<i64>,
    pub average_upload_rate_limit_in_bits_per_sec: Option<i64>,
    pub days_of_week: Vec<i64>,
    pub end_hour_of_day: i64,
    pub end_minute_of_hour: i64,
    pub start_hour_of_day: i64,
    pub start_minute_of_hour: i64,
}

Describes a bandwidth rate limit interval for a gateway. A bandwidth rate limit schedule consists of one or more bandwidth rate limit intervals. A bandwidth rate limit interval defines a period of time on one or more days of the week, during which bandwidth rate limits are specified for uploading, downloading, or both.

Fields

average_download_rate_limit_in_bits_per_sec: Option<i64>

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.

average_upload_rate_limit_in_bits_per_sec: Option<i64>

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.

days_of_week: Vec<i64>

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 Saturday.

end_hour_of_day: i64

The hour of the day to end the bandwidth rate limit interval.

end_minute_of_hour: i64

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.

start_hour_of_day: i64

The hour of the day to start the bandwidth rate limit interval.

start_minute_of_hour: i64

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.

Trait Implementations

impl Clone for BandwidthRateLimitInterval[src]

impl Debug for BandwidthRateLimitInterval[src]

impl Default for BandwidthRateLimitInterval[src]

impl<'de> Deserialize<'de> for BandwidthRateLimitInterval[src]

impl PartialEq<BandwidthRateLimitInterval> for BandwidthRateLimitInterval[src]

impl Serialize for BandwidthRateLimitInterval[src]

impl StructuralPartialEq for BandwidthRateLimitInterval[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.