{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-apache-flink/refs/heads/main/json-schema/amazon-managed-apache-flink-vpc-configuration-update-schema.json", "title": "VpcConfigurationUpdate", "description": "Describes updates to the VPC configuration used by the application.", "type": "object", "properties": { "VpcConfigurationId": { "allOf": [ { "$ref": "#/components/schemas/Id" }, { "description": "Describes an update to the ID of the VPC configuration." } ] }, "SubnetIdUpdates": { "allOf": [ { "$ref": "#/components/schemas/SubnetIds" }, { "description": "Describes updates to the array of Subnet IDs used by the VPC configuration." } ] }, "SecurityGroupIdUpdates": { "allOf": [ { "$ref": "#/components/schemas/SecurityGroupIds" }, { "description": "Describes updates to the array of SecurityGroup IDs used by the VPC configuration." } ] } }, "required": [ "VpcConfigurationId" ] }