Creates a usage plan with the throttle and quota limits, as well as the associated API stages, specified in the payload.
apigateway_create_usage_plan(name, description, apiStages, throttle,
quota, tags)
[required] [Required] The name of the usage plan.
The description of the usage plan.
The associated API stages of the usage plan.
The throttling limits of the usage plan.
The quota of the usage plan.
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.
A list with the following syntax:
list( id = "string", name = "string", description = "string", apiStages = list( list( apiId = "string", stage = "string", throttle = list( list( burstLimit = 123, rateLimit = 123.0 ) ) ) ), throttle = list( burstLimit = 123, rateLimit = 123.0 ), quota = list( limit = 123, offset = 123, period = "DAY"|"WEEK"|"MONTH" ), productCode = "string", tags = list( "string" ) )
svc$create_usage_plan( name = "string", description = "string", apiStages = list( list( apiId = "string", stage = "string", throttle = list( list( burstLimit = 123, rateLimit = 123.0 ) ) ) ), throttle = list( burstLimit = 123, rateLimit = 123.0 ), quota = list( limit = 123, offset = 123, period = "DAY"|"WEEK"|"MONTH" ), tags = list( "string" ) )