Amazon AppFlow · JSON Structure

Appflow Update Connector Profile Request Structure

UpdateConnectorProfileRequest schema from Amazon AppFlow API

Type: object Properties: 4 Required: 3
ConnectorsData FlowData IntegrationETLIntegrationSaaSData Transfer

Appflow Update Connector Profile Request Structure is a JSON Structure definition published by Amazon AppFlow, describing 4 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

connectorProfileName clientToken connectionMode connectorProfileConfig

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "UpdateConnectorProfileRequest schema from Amazon AppFlow API",
  "properties": {
    "connectorProfileName": {
      "type": "string",
      "description": "The name of the connector profile and is unique for each ConnectorProfile in the AWS account.",
      "maxLength": 256,
      "example": "my-salesforce-profile"
    },
    "clientToken": {
      "type": "string",
      "description": "Idempotency token.",
      "example": "client-token-500123"
    },
    "connectionMode": {
      "type": "string",
      "description": "Indicates the connection mode and if it is public or private.",
      "enum": [
        "Public",
        "Private"
      ],
      "example": "Public"
    },
    "connectorProfileConfig": {
      "type": "object",
      "description": "Defines the connector-specific profile configuration and credentials."
    }
  },
  "required": [
    "connectorProfileName",
    "connectionMode",
    "connectorProfileConfig"
  ],
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-appflow/refs/heads/main/json-structure/appflow-update-connector-profile-request-structure.json"
}