Amazon AppFlow · Schema
DescribeConnectorProfilesRequest
DescribeConnectorProfilesRequest schema from Amazon AppFlow API
ConnectorsData FlowData IntegrationETLIntegrationSaaSData Transfer
Properties
| Name | Type | Description |
|---|---|---|
| connectorProfileNames | array | The name of the connector profile. The name is unique for each ConnectorProfile in the AWS account. |
| connectorType | string | The type of connector, such as Salesforce, Marketo, and so on. |
| connectorLabel | string | The name of the connector. |
| maxResults | integer | Specifies the maximum number of items that should be returned in the result set. The default for maxResults is 20. |
| nextToken | string | The pagination token for next page of data. |
JSON Schema
{
"$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-profiles-request-schema.json",
"title": "DescribeConnectorProfilesRequest",
"description": "DescribeConnectorProfilesRequest schema from Amazon AppFlow API",
"type": "object",
"properties": {
"connectorProfileNames": {
"type": "array",
"items": {
"type": "string",
"example": ""
},
"example": [
"my-salesforce-profile"
],
"description": "The name of the connector profile. The name is unique for each ConnectorProfile in the AWS account."
},
"connectorType": {
"type": "string",
"example": "Salesforce",
"description": "The type of connector, such as Salesforce, Marketo, and so on."
},
"connectorLabel": {
"type": "string",
"example": "MyCustomConnector",
"description": "The name of the connector."
},
"maxResults": {
"type": "integer",
"minimum": 1,
"maximum": 100,
"example": 20,
"description": "Specifies the maximum number of items that should be returned in the result set. The default for maxResults is 20."
},
"nextToken": {
"type": "string",
"maxLength": 2048,
"example": "",
"description": "The pagination token for next page of data."
}
}
}