{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeleteApplicationVpcConfigurationRequest", "title": "DeleteApplicationVpcConfigurationRequest", "type": "object", "required": [ "ApplicationName", "VpcConfigurationId" ], "properties": { "ApplicationName": { "allOf": [ { "$ref": "#/components/schemas/ApplicationName" }, { "description": "The name of an existing application." } ] }, "CurrentApplicationVersionId": { "allOf": [ { "$ref": "#/components/schemas/ApplicationVersionId" }, { "description": "The current application version ID. You must provide the CurrentApplicationVersionId or the ConditionalToken. You can retrieve the application version ID using DescribeApplication. For better concurrency support, use the ConditionalToken parameter instead of CurrentApplicationVersionId." } ] }, "VpcConfigurationId": { "allOf": [ { "$ref": "#/components/schemas/Id" }, { "description": "The ID of the VPC configuration to delete." } ] }, "ConditionalToken": { "allOf": [ { "$ref": "#/components/schemas/ConditionalToken" }, { "description": "A value you use to implement strong concurrency for application updates. You must provide the CurrentApplicationVersionId or the ConditionalToken. You get the application's current ConditionalToken using DescribeApplication. For better concurrency support, use the ConditionalToken parameter instead of CurrentApplicationVersionId." } ] } } }