{
"Type" : "AWS::ApiGateway::UsagePlan",
"Properties" : {
"ApiStages" : [ {"ApiId" : { "Ref" : "MyRestApi" }, "Stage" : { "Ref" : "Prod" }} ],
"Description" : "Customer ABC's usage plan",
"Quota" : {
"Limit" : 5000,
"Period" : "MONTH"
},
"Throttle" : {
"BurstLimit" : 200,
"RateLimit" : 100
},
"UsagePlanName" : "Plan_ABC"
}
}