Amazon AppFlow · Schema

DescribeFlowExecutionRecordsRequest

DescribeFlowExecutionRecordsRequest schema from Amazon AppFlow API

ConnectorsData FlowData IntegrationETLIntegrationSaaSData Transfer

Properties

Name Type Description
flowName string The specified name of the flow.
maxResults integer Specifies the maximum number of items that should be returned in the result set.
nextToken string The pagination token for next page of data.
View JSON Schema on GitHub

JSON Schema

appflow-describe-flow-execution-records-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-flow-execution-records-request-schema.json",
  "title": "DescribeFlowExecutionRecordsRequest",
  "description": "DescribeFlowExecutionRecordsRequest schema from Amazon AppFlow API",
  "type": "object",
  "properties": {
    "flowName": {
      "type": "string",
      "maxLength": 256,
      "example": "my-salesforce-to-s3-flow",
      "description": "The specified name of the flow."
    },
    "maxResults": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100,
      "example": 20,
      "description": "Specifies the maximum number of items that should be returned in the result set."
    },
    "nextToken": {
      "type": "string",
      "maxLength": 2048,
      "example": "",
      "description": "The pagination token for next page of data."
    }
  },
  "required": [
    "flowName"
  ]
}