[][src]Struct rusoto_apigateway::CreateUsagePlanRequest

pub struct CreateUsagePlanRequest {
    pub api_stages: Option<Vec<ApiStage>>,
    pub description: Option<String>,
    pub name: String,
    pub quota: Option<QuotaSettings>,
    pub tags: Option<HashMap<String, String>>,
    pub throttle: Option<ThrottleSettings>,
}

The POST request to create a usage plan with the name, description, throttle limits and quota limits, as well as the associated API stages, specified in the payload.

Fields

api_stages: Option<Vec<ApiStage>>

The associated API stages of the usage plan.

description: Option<String>

The description of the usage plan.

name: String

[Required] The name of the usage plan.

quota: Option<QuotaSettings>

The quota of the usage plan.

tags: Option<HashMap<String, String>>

The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start with aws:. The tag value can be up to 256 characters.

throttle: Option<ThrottleSettings>

The throttling limits of the usage plan.

Trait Implementations

impl Clone for CreateUsagePlanRequest[src]

impl Debug for CreateUsagePlanRequest[src]

impl Default for CreateUsagePlanRequest[src]

impl PartialEq<CreateUsagePlanRequest> for CreateUsagePlanRequest[src]

impl Serialize for CreateUsagePlanRequest[src]

impl StructuralPartialEq for CreateUsagePlanRequest[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> From<T> 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> Sealed<T> for T where
    T: ?Sized

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.