[][src]Struct rusoto_service_quotas::ServiceQuotaIncreaseRequestInTemplate

pub struct ServiceQuotaIncreaseRequestInTemplate {
    pub aws_region: Option<String>,
    pub desired_value: Option<f64>,
    pub global_quota: Option<bool>,
    pub quota_code: Option<String>,
    pub quota_name: Option<String>,
    pub service_code: Option<String>,
    pub service_name: Option<String>,
    pub unit: Option<String>,
}

Information about a quota increase request.

Fields

aws_region: Option<String>

The AWS Region.

desired_value: Option<f64>

The new, increased value of the quota.

global_quota: Option<bool>

Indicates whether the quota is global.

quota_code: Option<String>

The quota identifier.

quota_name: Option<String>

The quota name.

service_code: Option<String>

The service identifier.

service_name: Option<String>

The service name.

unit: Option<String>

The unit of measurement.

Trait Implementations

impl Clone for ServiceQuotaIncreaseRequestInTemplate[src]

impl Debug for ServiceQuotaIncreaseRequestInTemplate[src]

impl Default for ServiceQuotaIncreaseRequestInTemplate[src]

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

impl PartialEq<ServiceQuotaIncreaseRequestInTemplate> for ServiceQuotaIncreaseRequestInTemplate[src]

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