Amazon AppFlow · Schema

DeleteConnectorProfileRequest

DeleteConnectorProfileRequest schema from Amazon AppFlow API

ConnectorsData FlowData IntegrationETLIntegrationSaaSData Transfer

Properties

Name Type Description
connectorProfileName string The name of the connector profile.
forceDelete boolean Indicates whether Amazon AppFlow should delete the profile, even if it is currently in use in one or more flows.
View JSON Schema on GitHub

JSON Schema

appflow-delete-connector-profile-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-delete-connector-profile-request-schema.json",
  "title": "DeleteConnectorProfileRequest",
  "description": "DeleteConnectorProfileRequest schema from Amazon AppFlow API",
  "type": "object",
  "properties": {
    "connectorProfileName": {
      "type": "string",
      "maxLength": 256,
      "example": "my-salesforce-profile",
      "description": "The name of the connector profile."
    },
    "forceDelete": {
      "type": "boolean",
      "example": false,
      "description": "Indicates whether Amazon AppFlow should delete the profile, even if it is currently in use in one or more flows."
    }
  },
  "required": [
    "connectorProfileName"
  ]
}