Struct cfn::aws::apigateway::UsagePlanProperties [] [src]

pub struct UsagePlanProperties {
    pub api_stages: Option<ValueList<ApiStage>>,
    pub description: Option<Value<String>>,
    pub quota: Option<Value<QuotaSettings>>,
    pub throttle: Option<Value<ThrottleSettings>>,
    pub usage_plan_name: Option<Value<String>>,
}

Properties for the UsagePlan resource.

Fields

Property ApiStages.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Description.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Quota.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Throttle.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property UsagePlanName.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for UsagePlanProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for UsagePlanProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<UsagePlanProperties> for UsagePlan
[src]

[src]

Performs the conversion.

Auto Trait Implementations