Create Usage Plan
| apigateway_create_usage_plan | R Documentation |
Creates a usage plan with the throttle and quota limits, as well as the associated API stages, specified in the payload¶
Description¶
Creates a usage plan with the throttle and quota limits, as well as the associated API stages, specified in the payload.
Usage¶
Arguments¶
name[required] The name of the usage plan.
descriptionThe description of the usage plan.
apiStagesThe associated API stages of the usage plan.
throttleThe throttling limits of the usage plan.
quotaThe quota of the usage plan.
tagsThe 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.
Value¶
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"
)
)
Request syntax¶
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"
)
)