APIs.io Engineering Platform · Schema
Account
Represents an AWS account that is associated with API Gateway.
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| cloudwatchRoleArn | object | |
| throttleSettings | object | |
| features | object | |
| apiKeyVersion | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Account",
"title": "Account",
"type": "object",
"properties": {
"cloudwatchRoleArn": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "The ARN of an Amazon CloudWatch role for the current Account. "
}
]
},
"throttleSettings": {
"allOf": [
{
"$ref": "#/components/schemas/ThrottleSettings"
},
{
"description": "Specifies the API request limits configured for the current Account."
}
]
},
"features": {
"allOf": [
{
"$ref": "#/components/schemas/ListOfString"
},
{
"description": "A list of features supported for the account. When usage plans are enabled, the features list will include an entry of <code>\"UsagePlans\"</code>."
}
]
},
"apiKeyVersion": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "The version of the API keys used for the account."
}
]
}
},
"description": "Represents an AWS account that is associated with API Gateway."
}