Amazon AppFlow · JSON Structure

Appflow Start Flow Response Structure

StartFlowResponse schema from Amazon AppFlow API

Type: object Properties: 3
ConnectorsData FlowData IntegrationETLIntegrationSaaSData Transfer

Appflow Start Flow Response Structure is a JSON Structure definition published by Amazon AppFlow, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

flowArn flowStatus executionId

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

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "StartFlowResponse schema from Amazon AppFlow API",
  "properties": {
    "flowArn": {
      "type": "string",
      "description": "The flow's Amazon Resource Name (ARN).",
      "example": "arn:aws:appflow:us-east-1:123456789012:flow/my-salesforce-to-s3-flow"
    },
    "flowStatus": {
      "type": "string",
      "description": "Indicates the current status of the flow.",
      "enum": [
        "Active",
        "Deprecated",
        "Deleted",
        "Draft",
        "Errored",
        "Suspended"
      ],
      "example": "Active"
    },
    "executionId": {
      "type": "string",
      "description": "Returns the internal execution ID of an on-demand flow when the flow is started.",
      "example": "exec-500123"
    }
  },
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-appflow/refs/heads/main/json-structure/appflow-start-flow-response-structure.json"
}