UNPKG

cfn-api-gateway-deployment

Version:

AWS CloudFormation Custom Lambda Resource | API Gateway Deployment

57 lines (56 loc) 1.03 kB
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "RestApiId", "StageName" ], "properties": { "RestApiId": { "type": "string", "pattern": "^[a-z0-9]{10}$" }, "StageName": { "type": "string", "pattern": "^\\w+$" }, "StageDescription": { "type": "string" }, "Description": { "type": "string" }, "CacheClusterEnabled": { "type": "string", "enum": [ "true", "false" ] }, "CacheClusterSize": { "type": "string", "enum": [ "0.5", "1.6", "6.1", "13.5", "28.4", "58.2", "118", "237" ] }, "Variables": { "type": "object", "properties": {}, "patternProperties": { "^\\w+$": { "type": "string", "pattern": "^[\\^\\-._:\/?&=,\\w]+$" } }, "additionalProperties": false } }, "additionalProperties": false }