{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-lookout-for-metrics/refs/heads/main/json-schema/amazon-lookout-for-metrics-vpc-configuration-schema.json", "title": "VpcConfiguration", "description": "Contains configuration information about the Amazon Virtual Private Cloud (VPC).", "type": "object", "properties": { "SubnetIdList": { "allOf": [ { "$ref": "#/components/schemas/SubnetIdList" }, { "description": "An array of strings containing the Amazon VPC subnet IDs (e.g., subnet-0bb1c79de3EXAMPLE." } ] }, "SecurityGroupIdList": { "allOf": [ { "$ref": "#/components/schemas/SecurityGroupIdList" }, { "description": "An array of strings containing the list of security groups." } ] } }, "required": [ "SubnetIdList", "SecurityGroupIdList" ] }