{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/VpcConfigurationUpdate", "title": "VpcConfigurationUpdate", "type": "object", "required": [ "VpcConfigurationId" ], "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." } ] } }, "description": "Describes updates to the VPC configuration used by the application." }