[][src]Struct rusoto_service_quotas::ServiceQuota

pub struct ServiceQuota {
    pub adjustable: Option<bool>,
    pub error_reason: Option<ErrorReason>,
    pub global_quota: Option<bool>,
    pub period: Option<QuotaPeriod>,
    pub quota_arn: Option<String>,
    pub quota_code: Option<String>,
    pub quota_name: Option<String>,
    pub service_code: Option<String>,
    pub service_name: Option<String>,
    pub unit: Option<String>,
    pub usage_metric: Option<MetricInfo>,
    pub value: Option<f64>,
}

A structure that contains the full set of details that define the service quota.

Fields

adjustable: Option<bool>

Specifies if the quota value can be increased.

error_reason: Option<ErrorReason>

Specifies the ErrorCode and ErrorMessage when success isn't achieved.

global_quota: Option<bool>

Specifies if the quota is global.

period: Option<QuotaPeriod>

Identifies the unit and value of how time is measured.

quota_arn: Option<String>

The Amazon Resource Name (ARN) of the service quota.

quota_code: Option<String>

The code identifier for the service quota specified.

quota_name: Option<String>

The name identifier of the service quota.

service_code: Option<String>

Specifies the service that you want to use.

service_name: Option<String>

The name of the AWS service specified in the increase request.

unit: Option<String>

The unit of measurement for the value of the service quota.

usage_metric: Option<MetricInfo>

Specifies the details about the measurement.

value: Option<f64>

The value of service quota.

Trait Implementations

impl Clone for ServiceQuota[src]

impl Debug for ServiceQuota[src]

impl Default for ServiceQuota[src]

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

impl PartialEq<ServiceQuota> for ServiceQuota[src]

impl StructuralPartialEq for ServiceQuota[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> 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.