Amazon AppFlow · Schema

UnregisterConnectorRequest

UnregisterConnectorRequest schema from Amazon AppFlow API

ConnectorsData FlowData IntegrationETLIntegrationSaaSData Transfer

Properties

Name Type Description
connectorLabel string The label of the connector. The label is unique for each ConnectorRegistration in your Amazon Web Services account.
forceDelete boolean Indicates whether Amazon AppFlow should unregister the connector, even if it is currently in use in one or more connector profiles.
View JSON Schema on GitHub

JSON Schema

appflow-unregister-connector-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-appflow/refs/heads/main/json-schema/appflow-unregister-connector-request-schema.json",
  "title": "UnregisterConnectorRequest",
  "description": "UnregisterConnectorRequest schema from Amazon AppFlow API",
  "type": "object",
  "properties": {
    "connectorLabel": {
      "type": "string",
      "maxLength": 256,
      "example": "MyCustomConnector",
      "description": "The label of the connector. The label is unique for each ConnectorRegistration in your Amazon Web Services account."
    },
    "forceDelete": {
      "type": "boolean",
      "example": false,
      "description": "Indicates whether Amazon AppFlow should unregister the connector, even if it is currently in use in one or more connector profiles."
    }
  },
  "required": [
    "connectorLabel"
  ]
}