Amazon AppFlow · Schema

DescribeConnectorRequest

DescribeConnectorRequest schema from Amazon AppFlow API

ConnectorsData FlowData IntegrationETLIntegrationSaaSData Transfer

Properties

Name Type Description
connectorType string The connector type, such as CUSTOMCONNECTOR, Saleforce, Marketo.
connectorLabel string The label of the connector. The label is unique for each ConnectorRegistration in your Amazon Web Services account.
View JSON Schema on GitHub

JSON Schema

appflow-describe-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-describe-connector-request-schema.json",
  "title": "DescribeConnectorRequest",
  "description": "DescribeConnectorRequest schema from Amazon AppFlow API",
  "type": "object",
  "properties": {
    "connectorType": {
      "type": "string",
      "example": "CustomConnector",
      "description": "The connector type, such as CUSTOMCONNECTOR, Saleforce, Marketo."
    },
    "connectorLabel": {
      "type": "string",
      "example": "MyCustomConnector",
      "description": "The label of the connector. The label is unique for each ConnectorRegistration in your Amazon Web Services account."
    }
  },
  "required": [
    "connectorType"
  ]
}