Amazon Config · Schema

DeleteDeliveryChannelRequest

The input for the DeleteDeliveryChannel action. The action accepts the following data, in JSON format.

AuditingComplianceConfiguration ManagementGovernanceSecurity

Properties

Name Type Description
DeliveryChannelName object
View JSON Schema on GitHub

JSON Schema

config-delete-delivery-channel-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-config/refs/heads/main/json-schema/config-delete-delivery-channel-request-schema.json",
  "title": "DeleteDeliveryChannelRequest",
  "description": "The input for the <a>DeleteDeliveryChannel</a> action. The action accepts the following data, in JSON format. ",
  "type": "object",
  "properties": {
    "DeliveryChannelName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ChannelName"
        },
        {
          "description": "The name of the delivery channel to delete."
        }
      ]
    }
  },
  "required": [
    "DeliveryChannelName"
  ]
}