Amazon AppFlow · Schema
UpdateFlowRequest
UpdateFlowRequest schema from Amazon AppFlow API
ConnectorsData FlowData IntegrationETLIntegrationSaaSData Transfer
Properties
| Name | Type | Description |
|---|---|---|
| flowName | string | The specified name of the flow. |
| clientToken | string | Idempotency token. |
| description | string | A description of the flow. |
| triggerConfig | object | |
| sourceFlowConfig | object | |
| destinationFlowConfigList | array | |
| tasks | array | |
| metadataCatalogConfig | object |
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-update-flow-request-schema.json",
"title": "UpdateFlowRequest",
"description": "UpdateFlowRequest 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."
},
"clientToken": {
"type": "string",
"example": "client-token-500123",
"description": "Idempotency token."
},
"description": {
"type": "string",
"maxLength": 2048,
"example": "Updated description",
"description": "A description of the flow."
},
"triggerConfig": {
"type": "object",
"properties": {
"triggerType": {
"type": "string",
"enum": [
"Scheduled",
"Event",
"OnDemand"
],
"example": "Scheduled",
"description": "Specifies the type of flow trigger. It can be OnDemand, Scheduled, or Event."
},
"triggerProperties": {
"type": "object",
"properties": {
"Scheduled": {}
},
"description": "Specifies the configuration details of a schedule-triggered flow as defined by the user."
}
},
"required": [
"triggerType"
]
},
"sourceFlowConfig": {
"type": "object",
"properties": {
"connectorType": {
"type": "string",
"example": "Salesforce",
"description": "The type of connector used as a source."
},
"apiVersion": {
"type": "string",
"example": "v55.0",
"description": "The API version of the connector used in the source."
},
"connectorProfileName": {
"type": "string",
"example": "my-salesforce-profile",
"description": "The name of the connector profile. Required for all connectors except Amplitude, Datadog, Dynatrace, GoogleAnalytics, Marketo, SAPOData, Salesforce, ServiceNow, Singular, Slack, Trendmicro, and Veeva."
},
"sourceConnectorProperties": {
"type": "object",
"example": {
"Salesforce": {
"object": "Account"
}
},
"description": "Specifies the information that is required to query a particular source connector."
},
"incrementalPullConfig": {
"type": "object",
"properties": {
"datetimeTypeFieldName": {
"type": "string",
"example": "LastModifiedDate",
"description": "A field that specifies the date time or timestamp field as the criteria to use when importing incremental records from the source."
}
},
"description": "Defines the configuration for a scheduled incremental data pull. If a valid configuration is provided, the fields specified in the configuration are used when querying for the incremental data pull."
}
},
"required": [
"connectorType",
"sourceConnectorProperties"
]
},
"destinationFlowConfigList": {
"type": "array",
"items": {}
},
"tasks": {
"type": "array",
"items": {}
},
"metadataCatalogConfig": {
"type": "object",
"properties": {
"glueDataCatalog": {
"type": "object",
"properties": {
"roleArn": {
"type": "string",
"example": "arn:aws:iam::123456789012:role/AppFlowGlueRole",
"description": "The ARN of an IAM role that grants AppFlow the permissions it needs to create Data Catalog tables, databases, and partitions."
},
"databaseName": {
"type": "string",
"example": "appflow-catalog-db",
"description": "The name of an existing Glue Data Catalog database."
},
"tablePrefix": {
"type": "string",
"example": "sf_",
"description": "A naming prefix for each Data Catalog table that Amazon AppFlow creates."
}
},
"description": "Specifies the configuration that Amazon AppFlow uses when it catalogs data with the Glue Data Catalog."
}
}
}
},
"required": [
"flowName",
"triggerConfig",
"sourceFlowConfig",
"destinationFlowConfigList",
"tasks"
]
}