

This is the new *CloudFormation Template Reference Guide*. Please update your bookmarks and links. For help getting started with CloudFormation, see the [AWS CloudFormation User Guide](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/Welcome.html).

# AWS::AppFlow::Flow
<a name="aws-resource-appflow-flow"></a>

 The `AWS::AppFlow::Flow` resource is an Amazon AppFlow resource type that specifies a new flow. 

**Note**  
If you want to use CloudFormation to create a connector profile for connectors that implement OAuth (such as Salesforce, Slack, Zendesk, and Google Analytics), you must fetch the access and refresh tokens. You can do this by implementing your own UI for OAuth, or by retrieving the tokens from elsewhere. Alternatively, you can use the Amazon AppFlow console to create the connector profile, and then use that connector profile in the flow creation CloudFormation template. 

## Syntax
<a name="aws-resource-appflow-flow-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-resource-appflow-flow-syntax.json"></a>

```
{
  "Type" : "AWS::AppFlow::Flow",
  "Properties" : {
      "[Description](#cfn-appflow-flow-description)" : String,
      "[DestinationFlowConfigList](#cfn-appflow-flow-destinationflowconfiglist)" : [ DestinationFlowConfig, ... ],
      "[FlowName](#cfn-appflow-flow-flowname)" : String,
      "[FlowStatus](#cfn-appflow-flow-flowstatus)" : String,
      "[KMSArn](#cfn-appflow-flow-kmsarn)" : String,
      "[MetadataCatalogConfig](#cfn-appflow-flow-metadatacatalogconfig)" : MetadataCatalogConfig,
      "[SourceFlowConfig](#cfn-appflow-flow-sourceflowconfig)" : SourceFlowConfig,
      "[Tags](#cfn-appflow-flow-tags)" : [ Tag, ... ],
      "[Tasks](#cfn-appflow-flow-tasks)" : [ Task, ... ],
      "[TriggerConfig](#cfn-appflow-flow-triggerconfig)" : TriggerConfig
    }
}
```

### YAML
<a name="aws-resource-appflow-flow-syntax.yaml"></a>

```
Type: AWS::AppFlow::Flow
Properties:
  [Description](#cfn-appflow-flow-description): String
  [DestinationFlowConfigList](#cfn-appflow-flow-destinationflowconfiglist): 
    - DestinationFlowConfig
  [FlowName](#cfn-appflow-flow-flowname): String
  [FlowStatus](#cfn-appflow-flow-flowstatus): String
  [KMSArn](#cfn-appflow-flow-kmsarn): String
  [MetadataCatalogConfig](#cfn-appflow-flow-metadatacatalogconfig): 
    MetadataCatalogConfig
  [SourceFlowConfig](#cfn-appflow-flow-sourceflowconfig): 
    SourceFlowConfig
  [Tags](#cfn-appflow-flow-tags): 
    - Tag
  [Tasks](#cfn-appflow-flow-tasks): 
    - Task
  [TriggerConfig](#cfn-appflow-flow-triggerconfig): 
    TriggerConfig
```

## Properties
<a name="aws-resource-appflow-flow-properties"></a>

`Description`  <a name="cfn-appflow-flow-description"></a>
 A user-entered description of the flow.   
*Required*: No  
*Type*: String  
*Pattern*: `[\w!@#\-.?,\s]*`  
*Maximum*: `2048`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`DestinationFlowConfigList`  <a name="cfn-appflow-flow-destinationflowconfiglist"></a>
 The configuration that controls how Amazon AppFlow places data in the destination connector.   
*Required*: Yes  
*Type*: Array of [DestinationFlowConfig](aws-properties-appflow-flow-destinationflowconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`FlowName`  <a name="cfn-appflow-flow-flowname"></a>
 The specified name of the flow. Spaces are not allowed. Use underscores (\$1) or hyphens (-) only.   
*Required*: Yes  
*Type*: String  
*Pattern*: `[a-zA-Z0-9][\w!@#.-]+`  
*Minimum*: `1`  
*Maximum*: `256`  
*Update requires*: [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement)

`FlowStatus`  <a name="cfn-appflow-flow-flowstatus"></a>
Sets the status of the flow. You can specify one of the following values:    
Active  
The flow runs based on the trigger settings that you defined. Active scheduled flows run as scheduled, and active event-triggered flows run when the specified change event occurs. However, active on-demand flows run only when you manually start them by using Amazon AppFlow.  
Suspended  
You can use this option to deactivate an active flow. Scheduled and event-triggered flows will cease to run until you reactive them. This value only affects scheduled and event-triggered flows. It has no effect for on-demand flows.
If you omit the FlowStatus parameter, Amazon AppFlow creates the flow with a default status. The default status for on-demand flows is Active. The default status for scheduled and event-triggered flows is Draft, which means they’re not yet active.  
*Required*: No  
*Type*: String  
*Allowed values*: `Active | Suspended | Draft`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`KMSArn`  <a name="cfn-appflow-flow-kmsarn"></a>
 The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you provide for encryption. This is required if you do not want to use the Amazon AppFlow-managed KMS key. If you don't provide anything here, Amazon AppFlow uses the Amazon AppFlow-managed KMS key.   
*Required*: No  
*Type*: String  
*Pattern*: `arn:aws:kms:.*:[0-9]+:.*`  
*Minimum*: `20`  
*Maximum*: `2048`  
*Update requires*: [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement)

`MetadataCatalogConfig`  <a name="cfn-appflow-flow-metadatacatalogconfig"></a>
Specifies the configuration that Amazon AppFlow uses when it catalogs your data. When Amazon AppFlow catalogs your data, it stores metadata in a data catalog.  
*Required*: No  
*Type*: [MetadataCatalogConfig](aws-properties-appflow-flow-metadatacatalogconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`SourceFlowConfig`  <a name="cfn-appflow-flow-sourceflowconfig"></a>
 Contains information about the configuration of the source connector used in the flow.   
*Required*: Yes  
*Type*: [SourceFlowConfig](aws-properties-appflow-flow-sourceflowconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Tags`  <a name="cfn-appflow-flow-tags"></a>
 The tags used to organize, track, or control access for your flow.   
*Required*: No  
*Type*: Array of [Tag](aws-properties-appflow-flow-tag.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Tasks`  <a name="cfn-appflow-flow-tasks"></a>
 A list of tasks that Amazon AppFlow performs while transferring the data in the flow run.   
*Required*: Yes  
*Type*: Array of [Task](aws-properties-appflow-flow-task.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`TriggerConfig`  <a name="cfn-appflow-flow-triggerconfig"></a>
 The trigger settings that determine how and when Amazon AppFlow runs the specified flow.   
*Required*: Yes  
*Type*: [TriggerConfig](aws-properties-appflow-flow-triggerconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## Return values
<a name="aws-resource-appflow-flow-return-values"></a>

### Ref
<a name="aws-resource-appflow-flow-return-values-ref"></a>

When you pass the logical ID of this resource to the intrinsic `Ref` function, `Ref` returns the flow name. For example:

            `{ "Ref": "myFlowName" }`        

For more information about using the `Ref` function, see [https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/intrinsic-function-reference-ref.html](https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/intrinsic-function-reference-ref.html).

### Fn::GetAtt
<a name="aws-resource-appflow-flow-return-values-fn--getatt"></a>

The `Fn::GetAtt` intrinsic function returns a value for a specified attribute of this type. The following are the available attributes and sample return values.

For more information about using the `Fn::GetAtt` intrinsic function, see [https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/intrinsic-function-reference-getatt.html](https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/intrinsic-function-reference-getatt.html).

#### 
<a name="aws-resource-appflow-flow-return-values-fn--getatt-fn--getatt"></a>

`FlowArn`  <a name="FlowArn-fn::getatt"></a>
The flow's Amazon Resource Name (ARN).

## Examples
<a name="aws-resource-appflow-flow--examples"></a>



### Test flow for CloudFormation from Salesforce to Amazon S3
<a name="aws-resource-appflow-flow--examples--Test_flow_for_CloudFormation_from_Salesforce_to_Amazon_S3"></a>

The following example shows a test event flow for CloudFormation using Salesforce as the source and Amazon S3 as the destination.

#### JSON
<a name="aws-resource-appflow-flow--examples--Test_flow_for_CloudFormation_from_Salesforce_to_Amazon_S3--json"></a>

```
{
    "AWSTemplateFormatVersion":"2010-09-09",
    "Resources": {
        "TestFlow": {
            "Type": "AWS::AppFlow::Flow",
            "Properties": {
                "flowName": "MyEventFlow",
                "description": "Test event flow for CloudFormation from salesforce to s3",
                "triggerConfig": {
                    "triggerType": "Event"
                 },
                "sourceFlowConfig": {
                    "connectorType": "Salesforce",
                    "connectorProfileName": "TestConnectorProfile",
                    "sourceConnectorProperties": {
                        "Salesforce": {
                            "object": "Account",
                            "enableDynamicFieldUpdate": false,
                            "includeDeletedRecords": true
                        }
                    }
                },
                "destinationFlowConfigList": [
                    {
                        "connectorType": "S3",
                        "destinationConnectorProperties": {
                            "S3": {
                                "bucketName": "TestOutputBucket",
                                "s3OutputFormatConfig": {
                                    "fileType": "JSON",
                                    "aggregationConfig": {
                                        "aggregationType": "None"
                                    }
                                }
                            }
                        }
                    }
                ],
                "tasks": [
                    {
                        "taskType": "Filter",
                        "sourceFields": [
                            "Id",
                            "Name"
                        ],
                        "connectorOperator": {
"Salesforce": "PROJECTION"
                            }
                     },
                    {
                        "taskType": "Map",
                        "sourceFields": [
                            "Id"
                        ],
                        "taskProperties": [
                            {
                                "Key": "SOURCE_DATA_TYPE",
                                "Value": "id"
                            },
                             {
                                "Key": "DESTINATION_DATA_TYPE",
                                "Value": "id"
                            }
                        ],
                        "destinationField": "Id",
                        "connectorOperator": {
                            "Salesforce": "NO_OP"
                        }
                    },
                    {
                        "taskType": "Map",
                        "sourceFields": [
                            "Name"
                        ],
                        "taskProperties": [
                            {
                                "Key": "SOURCE_DATA_TYPE",
                                "Value": "string"
                            },
                            {
                                "Key": "DESTINATION_DATA_TYPE",
                                "Value": "string"
                            }
                        ],
                        "destinationField": "Name",
                        "connectorOperator": {
                            "Salesforce": "NO_OP"
                        }
                    }
                ],
                "tags": [
                    {
                        "Key": "testKey",
                        "Value": "testValue"
                    }
                ]
            }
        }
    }
}
```

#### YAML
<a name="aws-resource-appflow-flow--examples--Test_flow_for_CloudFormation_from_Salesforce_to_Amazon_S3--yaml"></a>

```
AWSTemplateFormatVersion: '2010-09-09'
Resources:
  TestFlow:
    Type: AWS::AppFlow::Flow
    Properties:
      FlowName: MyEventFlow
      Description: Test flow for CloudFormation from salesforce to s3
      TriggerConfig:
        TriggerType: Event
      SourceFlowConfig:
        ConnectorType: Salesforce
        ConnectorProfileName: TestConnectorProfile
        SourceConnectorProperties:
          Salesforce:
            Object: Account
            EnableDynamicFieldUpdate: false
            IncludeDeletedRecords: true
      DestinationFlowConfigList:
        - ConnectorType: S3
          DestinationConnectorProperties:
            S3:
              BucketName: TestOutputBucket
              S3OutputFormatConfig:
                FileType: JSON
                AggregationConfig:
                  AggregationType: None
      Tasks:
        - TaskType: Filter
          ConnectorOperator:
            Salesforce: PROJECTION
          SourceFields:
            - Id
        - TaskType: Map
          SourceFields:
            - Id
          TaskProperties:
            - Key: SOURCE_DATA_TYPE
              Value: id
            - Key: DESTINATION_DATA_TYPE
              Value: id
          DestinationField: Id
          ConnectorOperator:
            Salesforce: NO_OP
        - TaskType: Map
          SourceFields:
            - Name
          TaskProperties:
            - Key: SOURCE_DATA_TYPE
              Value: string
            - Key: DESTINATION_DATA_TYPE
              Value: string
          DestinationField: Name
          ConnectorOperator:
            Salesforce: NO_OP
```

## See also
<a name="aws-resource-appflow-flow--seealso"></a>
+ [CreateFlow](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_CreateFlow.html) in the *Amazon AppFlow API Reference*.
+ [DescribeFlow](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_DescribeFlow.html) in the *Amazon AppFlow API Reference*.
+ [DeleteFlow](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_DeleteFlow.html) in the *Amazon AppFlow API Reference*.
+ [UpdateFlow](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_UpdateFlow.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow AggregationConfig
<a name="aws-properties-appflow-flow-aggregationconfig"></a>

 The aggregation settings that you can use to customize the output format of your flow data. 

## Syntax
<a name="aws-properties-appflow-flow-aggregationconfig-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-aggregationconfig-syntax.json"></a>

```
{
  "[AggregationType](#cfn-appflow-flow-aggregationconfig-aggregationtype)" : String,
  "[TargetFileSize](#cfn-appflow-flow-aggregationconfig-targetfilesize)" : Integer
}
```

### YAML
<a name="aws-properties-appflow-flow-aggregationconfig-syntax.yaml"></a>

```
  [AggregationType](#cfn-appflow-flow-aggregationconfig-aggregationtype): String
  [TargetFileSize](#cfn-appflow-flow-aggregationconfig-targetfilesize): Integer
```

## Properties
<a name="aws-properties-appflow-flow-aggregationconfig-properties"></a>

`AggregationType`  <a name="cfn-appflow-flow-aggregationconfig-aggregationtype"></a>
 Specifies whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated.   
*Required*: No  
*Type*: String  
*Allowed values*: `None | SingleFile`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`TargetFileSize`  <a name="cfn-appflow-flow-aggregationconfig-targetfilesize"></a>
The desired file size, in MB, for each output file that Amazon AppFlow writes to the flow destination. For each file, Amazon AppFlow attempts to achieve the size that you specify. The actual file sizes might differ from this target based on the number and size of the records that each file contains.  
*Required*: No  
*Type*: Integer  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-aggregationconfig--seealso"></a>
+ [AggregationConfig](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_AggregationConfig.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow AmplitudeSourceProperties
<a name="aws-properties-appflow-flow-amplitudesourceproperties"></a>

 The properties that are applied when Amplitude is being used as a source. 

## Syntax
<a name="aws-properties-appflow-flow-amplitudesourceproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-amplitudesourceproperties-syntax.json"></a>

```
{
  "[Object](#cfn-appflow-flow-amplitudesourceproperties-object)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-amplitudesourceproperties-syntax.yaml"></a>

```
  [Object](#cfn-appflow-flow-amplitudesourceproperties-object): String
```

## Properties
<a name="aws-properties-appflow-flow-amplitudesourceproperties-properties"></a>

`Object`  <a name="cfn-appflow-flow-amplitudesourceproperties-object"></a>
 The object specified in the Amplitude flow source.   
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-amplitudesourceproperties--seealso"></a>
+ [AmplitudeSourceProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_AmplitudeSourceProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow ConnectorOperator
<a name="aws-properties-appflow-flow-connectoroperator"></a>

 The operation to be performed on the provided source fields. 

## Syntax
<a name="aws-properties-appflow-flow-connectoroperator-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-connectoroperator-syntax.json"></a>

```
{
  "[Amplitude](#cfn-appflow-flow-connectoroperator-amplitude)" : String,
  "[CustomConnector](#cfn-appflow-flow-connectoroperator-customconnector)" : String,
  "[Datadog](#cfn-appflow-flow-connectoroperator-datadog)" : String,
  "[Dynatrace](#cfn-appflow-flow-connectoroperator-dynatrace)" : String,
  "[GoogleAnalytics](#cfn-appflow-flow-connectoroperator-googleanalytics)" : String,
  "[InforNexus](#cfn-appflow-flow-connectoroperator-infornexus)" : String,
  "[Marketo](#cfn-appflow-flow-connectoroperator-marketo)" : String,
  "[Pardot](#cfn-appflow-flow-connectoroperator-pardot)" : String,
  "[S3](#cfn-appflow-flow-connectoroperator-s3)" : String,
  "[Salesforce](#cfn-appflow-flow-connectoroperator-salesforce)" : String,
  "[SAPOData](#cfn-appflow-flow-connectoroperator-sapodata)" : String,
  "[ServiceNow](#cfn-appflow-flow-connectoroperator-servicenow)" : String,
  "[Singular](#cfn-appflow-flow-connectoroperator-singular)" : String,
  "[Slack](#cfn-appflow-flow-connectoroperator-slack)" : String,
  "[Trendmicro](#cfn-appflow-flow-connectoroperator-trendmicro)" : String,
  "[Veeva](#cfn-appflow-flow-connectoroperator-veeva)" : String,
  "[Zendesk](#cfn-appflow-flow-connectoroperator-zendesk)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-connectoroperator-syntax.yaml"></a>

```
  [Amplitude](#cfn-appflow-flow-connectoroperator-amplitude): String
  [CustomConnector](#cfn-appflow-flow-connectoroperator-customconnector): String
  [Datadog](#cfn-appflow-flow-connectoroperator-datadog): String
  [Dynatrace](#cfn-appflow-flow-connectoroperator-dynatrace): String
  [GoogleAnalytics](#cfn-appflow-flow-connectoroperator-googleanalytics): String
  [InforNexus](#cfn-appflow-flow-connectoroperator-infornexus): String
  [Marketo](#cfn-appflow-flow-connectoroperator-marketo): String
  [Pardot](#cfn-appflow-flow-connectoroperator-pardot): String
  [S3](#cfn-appflow-flow-connectoroperator-s3): String
  [Salesforce](#cfn-appflow-flow-connectoroperator-salesforce): String
  [SAPOData](#cfn-appflow-flow-connectoroperator-sapodata): String
  [ServiceNow](#cfn-appflow-flow-connectoroperator-servicenow): String
  [Singular](#cfn-appflow-flow-connectoroperator-singular): String
  [Slack](#cfn-appflow-flow-connectoroperator-slack): String
  [Trendmicro](#cfn-appflow-flow-connectoroperator-trendmicro): String
  [Veeva](#cfn-appflow-flow-connectoroperator-veeva): String
  [Zendesk](#cfn-appflow-flow-connectoroperator-zendesk): String
```

## Properties
<a name="aws-properties-appflow-flow-connectoroperator-properties"></a>

`Amplitude`  <a name="cfn-appflow-flow-connectoroperator-amplitude"></a>
 The operation to be performed on the provided Amplitude source fields.   
*Required*: No  
*Type*: String  
*Allowed values*: `BETWEEN`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`CustomConnector`  <a name="cfn-appflow-flow-connectoroperator-customconnector"></a>
Operators supported by the custom connector.  
*Required*: No  
*Type*: String  
*Allowed values*: `PROJECTION | LESS_THAN | GREATER_THAN | CONTAINS | BETWEEN | LESS_THAN_OR_EQUAL_TO | GREATER_THAN_OR_EQUAL_TO | EQUAL_TO | NOT_EQUAL_TO | ADDITION | MULTIPLICATION | DIVISION | SUBTRACTION | MASK_ALL | MASK_FIRST_N | MASK_LAST_N | VALIDATE_NON_NULL | VALIDATE_NON_ZERO | VALIDATE_NON_NEGATIVE | VALIDATE_NUMERIC | NO_OP`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Datadog`  <a name="cfn-appflow-flow-connectoroperator-datadog"></a>
 The operation to be performed on the provided Datadog source fields.   
*Required*: No  
*Type*: String  
*Allowed values*: `PROJECTION | BETWEEN | EQUAL_TO | ADDITION | MULTIPLICATION | DIVISION | SUBTRACTION | MASK_ALL | MASK_FIRST_N | MASK_LAST_N | VALIDATE_NON_NULL | VALIDATE_NON_ZERO | VALIDATE_NON_NEGATIVE | VALIDATE_NUMERIC | NO_OP`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Dynatrace`  <a name="cfn-appflow-flow-connectoroperator-dynatrace"></a>
 The operation to be performed on the provided Dynatrace source fields.   
*Required*: No  
*Type*: String  
*Allowed values*: `PROJECTION | BETWEEN | EQUAL_TO | ADDITION | MULTIPLICATION | DIVISION | SUBTRACTION | MASK_ALL | MASK_FIRST_N | MASK_LAST_N | VALIDATE_NON_NULL | VALIDATE_NON_ZERO | VALIDATE_NON_NEGATIVE | VALIDATE_NUMERIC | NO_OP`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`GoogleAnalytics`  <a name="cfn-appflow-flow-connectoroperator-googleanalytics"></a>
 The operation to be performed on the provided Google Analytics source fields.   
*Required*: No  
*Type*: String  
*Allowed values*: `PROJECTION | BETWEEN`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`InforNexus`  <a name="cfn-appflow-flow-connectoroperator-infornexus"></a>
 The operation to be performed on the provided Infor Nexus source fields.   
*Required*: No  
*Type*: String  
*Allowed values*: `PROJECTION | BETWEEN | EQUAL_TO | ADDITION | MULTIPLICATION | DIVISION | SUBTRACTION | MASK_ALL | MASK_FIRST_N | MASK_LAST_N | VALIDATE_NON_NULL | VALIDATE_NON_ZERO | VALIDATE_NON_NEGATIVE | VALIDATE_NUMERIC | NO_OP`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Marketo`  <a name="cfn-appflow-flow-connectoroperator-marketo"></a>
 The operation to be performed on the provided Marketo source fields.   
*Required*: No  
*Type*: String  
*Allowed values*: `PROJECTION | LESS_THAN | GREATER_THAN | BETWEEN | ADDITION | MULTIPLICATION | DIVISION | SUBTRACTION | MASK_ALL | MASK_FIRST_N | MASK_LAST_N | VALIDATE_NON_NULL | VALIDATE_NON_ZERO | VALIDATE_NON_NEGATIVE | VALIDATE_NUMERIC | NO_OP`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Pardot`  <a name="cfn-appflow-flow-connectoroperator-pardot"></a>
The operation to be performed on the provided Salesforce Pardot source fields.  
*Required*: No  
*Type*: String  
*Allowed values*: `PROJECTION | EQUAL_TO | NO_OP | ADDITION | MULTIPLICATION | DIVISION | SUBTRACTION | MASK_ALL | MASK_FIRST_N | MASK_LAST_N | VALIDATE_NON_NULL | VALIDATE_NON_ZERO | VALIDATE_NON_NEGATIVE | VALIDATE_NUMERIC`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`S3`  <a name="cfn-appflow-flow-connectoroperator-s3"></a>
 The operation to be performed on the provided Amazon S3 source fields.   
*Required*: No  
*Type*: String  
*Allowed values*: `PROJECTION | LESS_THAN | GREATER_THAN | BETWEEN | LESS_THAN_OR_EQUAL_TO | GREATER_THAN_OR_EQUAL_TO | EQUAL_TO | NOT_EQUAL_TO | ADDITION | MULTIPLICATION | DIVISION | SUBTRACTION | MASK_ALL | MASK_FIRST_N | MASK_LAST_N | VALIDATE_NON_NULL | VALIDATE_NON_ZERO | VALIDATE_NON_NEGATIVE | VALIDATE_NUMERIC | NO_OP`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Salesforce`  <a name="cfn-appflow-flow-connectoroperator-salesforce"></a>
 The operation to be performed on the provided Salesforce source fields.   
*Required*: No  
*Type*: String  
*Allowed values*: `PROJECTION | LESS_THAN | CONTAINS | GREATER_THAN | BETWEEN | LESS_THAN_OR_EQUAL_TO | GREATER_THAN_OR_EQUAL_TO | EQUAL_TO | NOT_EQUAL_TO | ADDITION | MULTIPLICATION | DIVISION | SUBTRACTION | MASK_ALL | MASK_FIRST_N | MASK_LAST_N | VALIDATE_NON_NULL | VALIDATE_NON_ZERO | VALIDATE_NON_NEGATIVE | VALIDATE_NUMERIC | NO_OP`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`SAPOData`  <a name="cfn-appflow-flow-connectoroperator-sapodata"></a>
 The operation to be performed on the provided SAPOData source fields.   
*Required*: No  
*Type*: String  
*Allowed values*: `PROJECTION | LESS_THAN | CONTAINS | GREATER_THAN | BETWEEN | LESS_THAN_OR_EQUAL_TO | GREATER_THAN_OR_EQUAL_TO | EQUAL_TO | NOT_EQUAL_TO | ADDITION | MULTIPLICATION | DIVISION | SUBTRACTION | MASK_ALL | MASK_FIRST_N | MASK_LAST_N | VALIDATE_NON_NULL | VALIDATE_NON_ZERO | VALIDATE_NON_NEGATIVE | VALIDATE_NUMERIC | NO_OP`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ServiceNow`  <a name="cfn-appflow-flow-connectoroperator-servicenow"></a>
 The operation to be performed on the provided ServiceNow source fields.   
*Required*: No  
*Type*: String  
*Allowed values*: `PROJECTION | LESS_THAN | CONTAINS | GREATER_THAN | BETWEEN | LESS_THAN_OR_EQUAL_TO | GREATER_THAN_OR_EQUAL_TO | EQUAL_TO | NOT_EQUAL_TO | ADDITION | MULTIPLICATION | DIVISION | SUBTRACTION | MASK_ALL | MASK_FIRST_N | MASK_LAST_N | VALIDATE_NON_NULL | VALIDATE_NON_ZERO | VALIDATE_NON_NEGATIVE | VALIDATE_NUMERIC | NO_OP`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Singular`  <a name="cfn-appflow-flow-connectoroperator-singular"></a>
 The operation to be performed on the provided Singular source fields.   
*Required*: No  
*Type*: String  
*Allowed values*: `PROJECTION | EQUAL_TO | ADDITION | MULTIPLICATION | DIVISION | SUBTRACTION | MASK_ALL | MASK_FIRST_N | MASK_LAST_N | VALIDATE_NON_NULL | VALIDATE_NON_ZERO | VALIDATE_NON_NEGATIVE | VALIDATE_NUMERIC | NO_OP`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Slack`  <a name="cfn-appflow-flow-connectoroperator-slack"></a>
 The operation to be performed on the provided Slack source fields.   
*Required*: No  
*Type*: String  
*Allowed values*: `PROJECTION | BETWEEN | EQUAL_TO | ADDITION | MULTIPLICATION | DIVISION | SUBTRACTION | MASK_ALL | MASK_FIRST_N | MASK_LAST_N | VALIDATE_NON_NULL | VALIDATE_NON_ZERO | VALIDATE_NON_NEGATIVE | VALIDATE_NUMERIC | NO_OP`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Trendmicro`  <a name="cfn-appflow-flow-connectoroperator-trendmicro"></a>
 The operation to be performed on the provided Trend Micro source fields.   
*Required*: No  
*Type*: String  
*Allowed values*: `PROJECTION | EQUAL_TO | ADDITION | MULTIPLICATION | DIVISION | SUBTRACTION | MASK_ALL | MASK_FIRST_N | MASK_LAST_N | VALIDATE_NON_NULL | VALIDATE_NON_ZERO | VALIDATE_NON_NEGATIVE | VALIDATE_NUMERIC | NO_OP`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Veeva`  <a name="cfn-appflow-flow-connectoroperator-veeva"></a>
 The operation to be performed on the provided Veeva source fields.   
*Required*: No  
*Type*: String  
*Allowed values*: `PROJECTION | LESS_THAN | GREATER_THAN | BETWEEN | LESS_THAN_OR_EQUAL_TO | GREATER_THAN_OR_EQUAL_TO | EQUAL_TO | NOT_EQUAL_TO | ADDITION | MULTIPLICATION | DIVISION | SUBTRACTION | MASK_ALL | MASK_FIRST_N | MASK_LAST_N | VALIDATE_NON_NULL | VALIDATE_NON_ZERO | VALIDATE_NON_NEGATIVE | VALIDATE_NUMERIC | NO_OP`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Zendesk`  <a name="cfn-appflow-flow-connectoroperator-zendesk"></a>
 The operation to be performed on the provided Zendesk source fields.   
*Required*: No  
*Type*: String  
*Allowed values*: `PROJECTION | GREATER_THAN | ADDITION | MULTIPLICATION | DIVISION | SUBTRACTION | MASK_ALL | MASK_FIRST_N | MASK_LAST_N | VALIDATE_NON_NULL | VALIDATE_NON_ZERO | VALIDATE_NON_NEGATIVE | VALIDATE_NUMERIC | NO_OP`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-connectoroperator--seealso"></a>
+ [ConnectorOperator](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_ConnectorOperator.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow CustomConnectorDestinationProperties
<a name="aws-properties-appflow-flow-customconnectordestinationproperties"></a>

The properties that are applied when the custom connector is being used as a destination.

## Syntax
<a name="aws-properties-appflow-flow-customconnectordestinationproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-customconnectordestinationproperties-syntax.json"></a>

```
{
  "[CustomProperties](#cfn-appflow-flow-customconnectordestinationproperties-customproperties)" : {Key: Value, ...},
  "[EntityName](#cfn-appflow-flow-customconnectordestinationproperties-entityname)" : String,
  "[ErrorHandlingConfig](#cfn-appflow-flow-customconnectordestinationproperties-errorhandlingconfig)" : ErrorHandlingConfig,
  "[IdFieldNames](#cfn-appflow-flow-customconnectordestinationproperties-idfieldnames)" : [ String, ... ],
  "[WriteOperationType](#cfn-appflow-flow-customconnectordestinationproperties-writeoperationtype)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-customconnectordestinationproperties-syntax.yaml"></a>

```
  [CustomProperties](#cfn-appflow-flow-customconnectordestinationproperties-customproperties): 
    Key: Value
  [EntityName](#cfn-appflow-flow-customconnectordestinationproperties-entityname): String
  [ErrorHandlingConfig](#cfn-appflow-flow-customconnectordestinationproperties-errorhandlingconfig): 
    ErrorHandlingConfig
  [IdFieldNames](#cfn-appflow-flow-customconnectordestinationproperties-idfieldnames): 
    - String
  [WriteOperationType](#cfn-appflow-flow-customconnectordestinationproperties-writeoperationtype): String
```

## Properties
<a name="aws-properties-appflow-flow-customconnectordestinationproperties-properties"></a>

`CustomProperties`  <a name="cfn-appflow-flow-customconnectordestinationproperties-customproperties"></a>
The custom properties that are specific to the connector when it's used as a destination in the flow.  
*Required*: No  
*Type*: Object of String  
*Pattern*: `^[\w]{1,2048}$`  
*Minimum*: `1`  
*Maximum*: `2048`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`EntityName`  <a name="cfn-appflow-flow-customconnectordestinationproperties-entityname"></a>
The entity specified in the custom connector as a destination in the flow.  
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `1024`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ErrorHandlingConfig`  <a name="cfn-appflow-flow-customconnectordestinationproperties-errorhandlingconfig"></a>
The settings that determine how Amazon AppFlow handles an error when placing data in the custom connector as destination.  
*Required*: No  
*Type*: [ErrorHandlingConfig](aws-properties-appflow-flow-errorhandlingconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`IdFieldNames`  <a name="cfn-appflow-flow-customconnectordestinationproperties-idfieldnames"></a>
The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.  
*Required*: No  
*Type*: Array of String  
*Minimum*: `0`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`WriteOperationType`  <a name="cfn-appflow-flow-customconnectordestinationproperties-writeoperationtype"></a>
Specifies the type of write operation to be performed in the custom connector when it's used as destination.  
*Required*: No  
*Type*: String  
*Allowed values*: `INSERT | UPSERT | UPDATE | DELETE`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::AppFlow::Flow CustomConnectorSourceProperties
<a name="aws-properties-appflow-flow-customconnectorsourceproperties"></a>

The properties that are applied when the custom connector is being used as a source.

## Syntax
<a name="aws-properties-appflow-flow-customconnectorsourceproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-customconnectorsourceproperties-syntax.json"></a>

```
{
  "[CustomProperties](#cfn-appflow-flow-customconnectorsourceproperties-customproperties)" : {Key: Value, ...},
  "[DataTransferApi](#cfn-appflow-flow-customconnectorsourceproperties-datatransferapi)" : DataTransferApi,
  "[EntityName](#cfn-appflow-flow-customconnectorsourceproperties-entityname)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-customconnectorsourceproperties-syntax.yaml"></a>

```
  [CustomProperties](#cfn-appflow-flow-customconnectorsourceproperties-customproperties): 
    Key: Value
  [DataTransferApi](#cfn-appflow-flow-customconnectorsourceproperties-datatransferapi): 
    DataTransferApi
  [EntityName](#cfn-appflow-flow-customconnectorsourceproperties-entityname): String
```

## Properties
<a name="aws-properties-appflow-flow-customconnectorsourceproperties-properties"></a>

`CustomProperties`  <a name="cfn-appflow-flow-customconnectorsourceproperties-customproperties"></a>
Custom properties that are required to use the custom connector as a source.  
*Required*: No  
*Type*: Object of String  
*Pattern*: `^[\w]{1,2048}$`  
*Minimum*: `1`  
*Maximum*: `2048`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`DataTransferApi`  <a name="cfn-appflow-flow-customconnectorsourceproperties-datatransferapi"></a>
The API of the connector application that Amazon AppFlow uses to transfer your data.  
*Required*: No  
*Type*: [DataTransferApi](aws-properties-appflow-flow-datatransferapi.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`EntityName`  <a name="cfn-appflow-flow-customconnectorsourceproperties-entityname"></a>
The entity specified in the custom connector as a source in the flow.  
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `1024`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::AppFlow::Flow DatadogSourceProperties
<a name="aws-properties-appflow-flow-datadogsourceproperties"></a>

 The properties that are applied when Datadog is being used as a source. 

## Syntax
<a name="aws-properties-appflow-flow-datadogsourceproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-datadogsourceproperties-syntax.json"></a>

```
{
  "[Object](#cfn-appflow-flow-datadogsourceproperties-object)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-datadogsourceproperties-syntax.yaml"></a>

```
  [Object](#cfn-appflow-flow-datadogsourceproperties-object): String
```

## Properties
<a name="aws-properties-appflow-flow-datadogsourceproperties-properties"></a>

`Object`  <a name="cfn-appflow-flow-datadogsourceproperties-object"></a>
 The object specified in the Datadog flow source.   
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-datadogsourceproperties--seealso"></a>
+ [DatadogSourceProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_DatadogSourceProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow DataTransferApi
<a name="aws-properties-appflow-flow-datatransferapi"></a>

The API of the connector application that Amazon AppFlow uses to transfer your data.

## Syntax
<a name="aws-properties-appflow-flow-datatransferapi-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-datatransferapi-syntax.json"></a>

```
{
  "[Name](#cfn-appflow-flow-datatransferapi-name)" : String,
  "[Type](#cfn-appflow-flow-datatransferapi-type)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-datatransferapi-syntax.yaml"></a>

```
  [Name](#cfn-appflow-flow-datatransferapi-name): String
  [Type](#cfn-appflow-flow-datatransferapi-type): String
```

## Properties
<a name="aws-properties-appflow-flow-datatransferapi-properties"></a>

`Name`  <a name="cfn-appflow-flow-datatransferapi-name"></a>
The name of the connector application API.  
*Required*: Yes  
*Type*: String  
*Pattern*: `[\w/-]+`  
*Maximum*: `64`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Type`  <a name="cfn-appflow-flow-datatransferapi-type"></a>
You can specify one of the following types:    
AUTOMATIC  
The default. Optimizes a flow for datasets that fluctuate in size from small to large. For each flow run, Amazon AppFlow chooses to use the SYNC or ASYNC API type based on the amount of data that the run transfers.  
SYNC  
A synchronous API. This type of API optimizes a flow for small to medium-sized datasets.  
ASYNC  
An asynchronous API. This type of API optimizes a flow for large datasets.
*Required*: Yes  
*Type*: String  
*Allowed values*: `SYNC | ASYNC | AUTOMATIC`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::AppFlow::Flow DestinationConnectorProperties
<a name="aws-properties-appflow-flow-destinationconnectorproperties"></a>

 This stores the information that is required to query a particular connector. 

## Syntax
<a name="aws-properties-appflow-flow-destinationconnectorproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-destinationconnectorproperties-syntax.json"></a>

```
{
  "[CustomConnector](#cfn-appflow-flow-destinationconnectorproperties-customconnector)" : CustomConnectorDestinationProperties,
  "[EventBridge](#cfn-appflow-flow-destinationconnectorproperties-eventbridge)" : EventBridgeDestinationProperties,
  "[LookoutMetrics](#cfn-appflow-flow-destinationconnectorproperties-lookoutmetrics)" : LookoutMetricsDestinationProperties,
  "[Marketo](#cfn-appflow-flow-destinationconnectorproperties-marketo)" : MarketoDestinationProperties,
  "[Redshift](#cfn-appflow-flow-destinationconnectorproperties-redshift)" : RedshiftDestinationProperties,
  "[S3](#cfn-appflow-flow-destinationconnectorproperties-s3)" : S3DestinationProperties,
  "[Salesforce](#cfn-appflow-flow-destinationconnectorproperties-salesforce)" : SalesforceDestinationProperties,
  "[SAPOData](#cfn-appflow-flow-destinationconnectorproperties-sapodata)" : SAPODataDestinationProperties,
  "[Snowflake](#cfn-appflow-flow-destinationconnectorproperties-snowflake)" : SnowflakeDestinationProperties,
  "[Upsolver](#cfn-appflow-flow-destinationconnectorproperties-upsolver)" : UpsolverDestinationProperties,
  "[Zendesk](#cfn-appflow-flow-destinationconnectorproperties-zendesk)" : ZendeskDestinationProperties
}
```

### YAML
<a name="aws-properties-appflow-flow-destinationconnectorproperties-syntax.yaml"></a>

```
  [CustomConnector](#cfn-appflow-flow-destinationconnectorproperties-customconnector): 
    CustomConnectorDestinationProperties
  [EventBridge](#cfn-appflow-flow-destinationconnectorproperties-eventbridge): 
    EventBridgeDestinationProperties
  [LookoutMetrics](#cfn-appflow-flow-destinationconnectorproperties-lookoutmetrics): 
    LookoutMetricsDestinationProperties
  [Marketo](#cfn-appflow-flow-destinationconnectorproperties-marketo): 
    MarketoDestinationProperties
  [Redshift](#cfn-appflow-flow-destinationconnectorproperties-redshift): 
    RedshiftDestinationProperties
  [S3](#cfn-appflow-flow-destinationconnectorproperties-s3): 
    S3DestinationProperties
  [Salesforce](#cfn-appflow-flow-destinationconnectorproperties-salesforce): 
    SalesforceDestinationProperties
  [SAPOData](#cfn-appflow-flow-destinationconnectorproperties-sapodata): 
    SAPODataDestinationProperties
  [Snowflake](#cfn-appflow-flow-destinationconnectorproperties-snowflake): 
    SnowflakeDestinationProperties
  [Upsolver](#cfn-appflow-flow-destinationconnectorproperties-upsolver): 
    UpsolverDestinationProperties
  [Zendesk](#cfn-appflow-flow-destinationconnectorproperties-zendesk): 
    ZendeskDestinationProperties
```

## Properties
<a name="aws-properties-appflow-flow-destinationconnectorproperties-properties"></a>

`CustomConnector`  <a name="cfn-appflow-flow-destinationconnectorproperties-customconnector"></a>
The properties that are required to query the custom Connector.  
*Required*: No  
*Type*: [CustomConnectorDestinationProperties](aws-properties-appflow-flow-customconnectordestinationproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`EventBridge`  <a name="cfn-appflow-flow-destinationconnectorproperties-eventbridge"></a>
 The properties required to query Amazon EventBridge.   
*Required*: No  
*Type*: [EventBridgeDestinationProperties](aws-properties-appflow-flow-eventbridgedestinationproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`LookoutMetrics`  <a name="cfn-appflow-flow-destinationconnectorproperties-lookoutmetrics"></a>
 The properties required to query Amazon Lookout for Metrics.   
*Required*: No  
*Type*: [LookoutMetricsDestinationProperties](aws-properties-appflow-flow-lookoutmetricsdestinationproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Marketo`  <a name="cfn-appflow-flow-destinationconnectorproperties-marketo"></a>
The properties required to query Marketo.  
*Required*: No  
*Type*: [MarketoDestinationProperties](aws-properties-appflow-flow-marketodestinationproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Redshift`  <a name="cfn-appflow-flow-destinationconnectorproperties-redshift"></a>
 The properties required to query Amazon Redshift.   
*Required*: No  
*Type*: [RedshiftDestinationProperties](aws-properties-appflow-flow-redshiftdestinationproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`S3`  <a name="cfn-appflow-flow-destinationconnectorproperties-s3"></a>
 The properties required to query Amazon S3.   
*Required*: No  
*Type*: [S3DestinationProperties](aws-properties-appflow-flow-s3destinationproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Salesforce`  <a name="cfn-appflow-flow-destinationconnectorproperties-salesforce"></a>
 The properties required to query Salesforce.   
*Required*: No  
*Type*: [SalesforceDestinationProperties](aws-properties-appflow-flow-salesforcedestinationproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`SAPOData`  <a name="cfn-appflow-flow-destinationconnectorproperties-sapodata"></a>
The properties required to query SAPOData.  
*Required*: No  
*Type*: [SAPODataDestinationProperties](aws-properties-appflow-flow-sapodatadestinationproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Snowflake`  <a name="cfn-appflow-flow-destinationconnectorproperties-snowflake"></a>
 The properties required to query Snowflake.   
*Required*: No  
*Type*: [SnowflakeDestinationProperties](aws-properties-appflow-flow-snowflakedestinationproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Upsolver`  <a name="cfn-appflow-flow-destinationconnectorproperties-upsolver"></a>
 The properties required to query Upsolver.   
*Required*: No  
*Type*: [UpsolverDestinationProperties](aws-properties-appflow-flow-upsolverdestinationproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Zendesk`  <a name="cfn-appflow-flow-destinationconnectorproperties-zendesk"></a>
The properties required to query Zendesk.  
*Required*: No  
*Type*: [ZendeskDestinationProperties](aws-properties-appflow-flow-zendeskdestinationproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-destinationconnectorproperties--seealso"></a>
+ [DestinationConnectorProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_DestinationConnectorProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow DestinationFlowConfig
<a name="aws-properties-appflow-flow-destinationflowconfig"></a>

 Contains information about the configuration of destination connectors present in the flow. 

## Syntax
<a name="aws-properties-appflow-flow-destinationflowconfig-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-destinationflowconfig-syntax.json"></a>

```
{
  "[ApiVersion](#cfn-appflow-flow-destinationflowconfig-apiversion)" : String,
  "[ConnectorProfileName](#cfn-appflow-flow-destinationflowconfig-connectorprofilename)" : String,
  "[ConnectorType](#cfn-appflow-flow-destinationflowconfig-connectortype)" : String,
  "[DestinationConnectorProperties](#cfn-appflow-flow-destinationflowconfig-destinationconnectorproperties)" : DestinationConnectorProperties
}
```

### YAML
<a name="aws-properties-appflow-flow-destinationflowconfig-syntax.yaml"></a>

```
  [ApiVersion](#cfn-appflow-flow-destinationflowconfig-apiversion): String
  [ConnectorProfileName](#cfn-appflow-flow-destinationflowconfig-connectorprofilename): String
  [ConnectorType](#cfn-appflow-flow-destinationflowconfig-connectortype): String
  [DestinationConnectorProperties](#cfn-appflow-flow-destinationflowconfig-destinationconnectorproperties): 
    DestinationConnectorProperties
```

## Properties
<a name="aws-properties-appflow-flow-destinationflowconfig-properties"></a>

`ApiVersion`  <a name="cfn-appflow-flow-destinationflowconfig-apiversion"></a>
The API version that the destination connector uses.  
*Required*: No  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `256`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ConnectorProfileName`  <a name="cfn-appflow-flow-destinationflowconfig-connectorprofilename"></a>
 The name of the connector profile. This name must be unique for each connector profile in the AWS account.   
*Required*: No  
*Type*: String  
*Pattern*: `[\w/!@#+=.-]+`  
*Maximum*: `256`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ConnectorType`  <a name="cfn-appflow-flow-destinationflowconfig-connectortype"></a>
 The type of destination connector, such as Sales force, Amazon S3, and so on.  
*Required*: Yes  
*Type*: String  
*Allowed values*: `SAPOData | Salesforce | Pardot | Singular | Slack | Redshift | S3 | Marketo | Googleanalytics | Zendesk | Servicenow | Datadog | Trendmicro | Snowflake | Dynatrace | Infornexus | Amplitude | Veeva | CustomConnector | EventBridge | Upsolver | LookoutMetrics`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`DestinationConnectorProperties`  <a name="cfn-appflow-flow-destinationflowconfig-destinationconnectorproperties"></a>
 This stores the information that is required to query a particular connector.   
*Required*: Yes  
*Type*: [DestinationConnectorProperties](aws-properties-appflow-flow-destinationconnectorproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-destinationflowconfig--seealso"></a>
+ [DestinationConnectorProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_DestinationConnectorProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow DynatraceSourceProperties
<a name="aws-properties-appflow-flow-dynatracesourceproperties"></a>

 The properties that are applied when Dynatrace is being used as a source. 

## Syntax
<a name="aws-properties-appflow-flow-dynatracesourceproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-dynatracesourceproperties-syntax.json"></a>

```
{
  "[Object](#cfn-appflow-flow-dynatracesourceproperties-object)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-dynatracesourceproperties-syntax.yaml"></a>

```
  [Object](#cfn-appflow-flow-dynatracesourceproperties-object): String
```

## Properties
<a name="aws-properties-appflow-flow-dynatracesourceproperties-properties"></a>

`Object`  <a name="cfn-appflow-flow-dynatracesourceproperties-object"></a>
 The object specified in the Dynatrace flow source.   
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-dynatracesourceproperties--seealso"></a>
+ [DynatraceSourceProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_DynatraceSourceProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow ErrorHandlingConfig
<a name="aws-properties-appflow-flow-errorhandlingconfig"></a>

 The settings that determine how Amazon AppFlow handles an error when placing data in the destination. For example, this setting would determine if the flow should fail after one insertion error, or continue and attempt to insert every record regardless of the initial failure. `ErrorHandlingConfig` is a part of the destination connector details. 

## Syntax
<a name="aws-properties-appflow-flow-errorhandlingconfig-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-errorhandlingconfig-syntax.json"></a>

```
{
  "[BucketName](#cfn-appflow-flow-errorhandlingconfig-bucketname)" : String,
  "[BucketPrefix](#cfn-appflow-flow-errorhandlingconfig-bucketprefix)" : String,
  "[FailOnFirstError](#cfn-appflow-flow-errorhandlingconfig-failonfirsterror)" : Boolean
}
```

### YAML
<a name="aws-properties-appflow-flow-errorhandlingconfig-syntax.yaml"></a>

```
  [BucketName](#cfn-appflow-flow-errorhandlingconfig-bucketname): String
  [BucketPrefix](#cfn-appflow-flow-errorhandlingconfig-bucketprefix): String
  [FailOnFirstError](#cfn-appflow-flow-errorhandlingconfig-failonfirsterror): Boolean
```

## Properties
<a name="aws-properties-appflow-flow-errorhandlingconfig-properties"></a>

`BucketName`  <a name="cfn-appflow-flow-errorhandlingconfig-bucketname"></a>
 Specifies the name of the Amazon S3 bucket.   
*Required*: No  
*Type*: String  
*Pattern*: `\S+`  
*Minimum*: `3`  
*Maximum*: `63`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`BucketPrefix`  <a name="cfn-appflow-flow-errorhandlingconfig-bucketprefix"></a>
 Specifies the Amazon S3 bucket prefix.   
*Required*: No  
*Type*: String  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`FailOnFirstError`  <a name="cfn-appflow-flow-errorhandlingconfig-failonfirsterror"></a>
 Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.   
*Required*: No  
*Type*: Boolean  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-errorhandlingconfig--seealso"></a>
+ [ErrorHandlingConfig](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_ErrorHandlingConfig.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow EventBridgeDestinationProperties
<a name="aws-properties-appflow-flow-eventbridgedestinationproperties"></a>

 The properties that are applied when Amazon EventBridge is being used as a destination. 

## Syntax
<a name="aws-properties-appflow-flow-eventbridgedestinationproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-eventbridgedestinationproperties-syntax.json"></a>

```
{
  "[ErrorHandlingConfig](#cfn-appflow-flow-eventbridgedestinationproperties-errorhandlingconfig)" : ErrorHandlingConfig,
  "[Object](#cfn-appflow-flow-eventbridgedestinationproperties-object)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-eventbridgedestinationproperties-syntax.yaml"></a>

```
  [ErrorHandlingConfig](#cfn-appflow-flow-eventbridgedestinationproperties-errorhandlingconfig): 
    ErrorHandlingConfig
  [Object](#cfn-appflow-flow-eventbridgedestinationproperties-object): String
```

## Properties
<a name="aws-properties-appflow-flow-eventbridgedestinationproperties-properties"></a>

`ErrorHandlingConfig`  <a name="cfn-appflow-flow-eventbridgedestinationproperties-errorhandlingconfig"></a>
 The object specified in the Amplitude flow source.   
*Required*: No  
*Type*: [ErrorHandlingConfig](aws-properties-appflow-flow-errorhandlingconfig.md)  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Object`  <a name="cfn-appflow-flow-eventbridgedestinationproperties-object"></a>
 The object specified in the Amazon EventBridge flow destination.   
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-eventbridgedestinationproperties--seealso"></a>
+ [EventBridgeDestinationProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_EventBridgeDestinationProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow GlueDataCatalog
<a name="aws-properties-appflow-flow-gluedatacatalog"></a>

<a name="aws-properties-appflow-flow-gluedatacatalog-description"></a>The `GlueDataCatalog` property type specifies Property description not available. for an [AWS::AppFlow::Flow](aws-resource-appflow-flow.md).

## Syntax
<a name="aws-properties-appflow-flow-gluedatacatalog-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-gluedatacatalog-syntax.json"></a>

```
{
  "[DatabaseName](#cfn-appflow-flow-gluedatacatalog-databasename)" : String,
  "[RoleArn](#cfn-appflow-flow-gluedatacatalog-rolearn)" : String,
  "[TablePrefix](#cfn-appflow-flow-gluedatacatalog-tableprefix)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-gluedatacatalog-syntax.yaml"></a>

```
  [DatabaseName](#cfn-appflow-flow-gluedatacatalog-databasename): String
  [RoleArn](#cfn-appflow-flow-gluedatacatalog-rolearn): String
  [TablePrefix](#cfn-appflow-flow-gluedatacatalog-tableprefix): String
```

## Properties
<a name="aws-properties-appflow-flow-gluedatacatalog-properties"></a>

`DatabaseName`  <a name="cfn-appflow-flow-gluedatacatalog-databasename"></a>
Property description not available.  
*Required*: Yes  
*Type*: String  
*Pattern*: `[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\t]*`  
*Minimum*: `0`  
*Maximum*: `255`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`RoleArn`  <a name="cfn-appflow-flow-gluedatacatalog-rolearn"></a>
Property description not available.  
*Required*: Yes  
*Type*: String  
*Pattern*: `arn:aws:iam:.*:[0-9]+:.*`  
*Minimum*: `0`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`TablePrefix`  <a name="cfn-appflow-flow-gluedatacatalog-tableprefix"></a>
Property description not available.  
*Required*: Yes  
*Type*: String  
*Pattern*: `[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\t]*`  
*Minimum*: `0`  
*Maximum*: `128`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::AppFlow::Flow GoogleAnalyticsSourceProperties
<a name="aws-properties-appflow-flow-googleanalyticssourceproperties"></a>

 The properties that are applied when Google Analytics is being used as a source. 

## Syntax
<a name="aws-properties-appflow-flow-googleanalyticssourceproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-googleanalyticssourceproperties-syntax.json"></a>

```
{
  "[Object](#cfn-appflow-flow-googleanalyticssourceproperties-object)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-googleanalyticssourceproperties-syntax.yaml"></a>

```
  [Object](#cfn-appflow-flow-googleanalyticssourceproperties-object): String
```

## Properties
<a name="aws-properties-appflow-flow-googleanalyticssourceproperties-properties"></a>

`Object`  <a name="cfn-appflow-flow-googleanalyticssourceproperties-object"></a>
 The object specified in the Google Analytics flow source.   
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-googleanalyticssourceproperties--seealso"></a>
+ [GoogleAnalyticsSourceProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_GoogleAnalyticsSourceProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow IncrementalPullConfig
<a name="aws-properties-appflow-flow-incrementalpullconfig"></a>

 Specifies the configuration used when importing incremental records from the source. 

## Syntax
<a name="aws-properties-appflow-flow-incrementalpullconfig-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-incrementalpullconfig-syntax.json"></a>

```
{
  "[DatetimeTypeFieldName](#cfn-appflow-flow-incrementalpullconfig-datetimetypefieldname)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-incrementalpullconfig-syntax.yaml"></a>

```
  [DatetimeTypeFieldName](#cfn-appflow-flow-incrementalpullconfig-datetimetypefieldname): String
```

## Properties
<a name="aws-properties-appflow-flow-incrementalpullconfig-properties"></a>

`DatetimeTypeFieldName`  <a name="cfn-appflow-flow-incrementalpullconfig-datetimetypefieldname"></a>
 A field that specifies the date time or timestamp field as the criteria to use when importing incremental records from the source.   
*Required*: No  
*Type*: String  
*Maximum*: `256`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::AppFlow::Flow InforNexusSourceProperties
<a name="aws-properties-appflow-flow-infornexussourceproperties"></a>

 The properties that are applied when Infor Nexus is being used as a source. 

## Syntax
<a name="aws-properties-appflow-flow-infornexussourceproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-infornexussourceproperties-syntax.json"></a>

```
{
  "[Object](#cfn-appflow-flow-infornexussourceproperties-object)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-infornexussourceproperties-syntax.yaml"></a>

```
  [Object](#cfn-appflow-flow-infornexussourceproperties-object): String
```

## Properties
<a name="aws-properties-appflow-flow-infornexussourceproperties-properties"></a>

`Object`  <a name="cfn-appflow-flow-infornexussourceproperties-object"></a>
 The object specified in the Infor Nexus flow source.   
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-infornexussourceproperties--seealso"></a>
+ [InforNexusSourceProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_InforNexusSourceProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow LookoutMetricsDestinationProperties
<a name="aws-properties-appflow-flow-lookoutmetricsdestinationproperties"></a>

 The properties that are applied when Amazon Lookout for Metrics is used as a destination. 

## Syntax
<a name="aws-properties-appflow-flow-lookoutmetricsdestinationproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-lookoutmetricsdestinationproperties-syntax.json"></a>

```
{
  "[Object](#cfn-appflow-flow-lookoutmetricsdestinationproperties-object)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-lookoutmetricsdestinationproperties-syntax.yaml"></a>

```
  [Object](#cfn-appflow-flow-lookoutmetricsdestinationproperties-object): String
```

## Properties
<a name="aws-properties-appflow-flow-lookoutmetricsdestinationproperties-properties"></a>

`Object`  <a name="cfn-appflow-flow-lookoutmetricsdestinationproperties-object"></a>
 The object specified in the Amazon Lookout for Metrics flow destination.   
*Required*: No  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::AppFlow::Flow MarketoDestinationProperties
<a name="aws-properties-appflow-flow-marketodestinationproperties"></a>

The properties that Amazon AppFlow applies when you use Marketo as a flow destination.

## Syntax
<a name="aws-properties-appflow-flow-marketodestinationproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-marketodestinationproperties-syntax.json"></a>

```
{
  "[ErrorHandlingConfig](#cfn-appflow-flow-marketodestinationproperties-errorhandlingconfig)" : ErrorHandlingConfig,
  "[Object](#cfn-appflow-flow-marketodestinationproperties-object)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-marketodestinationproperties-syntax.yaml"></a>

```
  [ErrorHandlingConfig](#cfn-appflow-flow-marketodestinationproperties-errorhandlingconfig): 
    ErrorHandlingConfig
  [Object](#cfn-appflow-flow-marketodestinationproperties-object): String
```

## Properties
<a name="aws-properties-appflow-flow-marketodestinationproperties-properties"></a>

`ErrorHandlingConfig`  <a name="cfn-appflow-flow-marketodestinationproperties-errorhandlingconfig"></a>
 The settings that determine how Amazon AppFlow handles an error when placing data in the destination. For example, this setting would determine if the flow should fail after one insertion error, or continue and attempt to insert every record regardless of the initial failure. `ErrorHandlingConfig` is a part of the destination connector details.   
*Required*: No  
*Type*: [ErrorHandlingConfig](aws-properties-appflow-flow-errorhandlingconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Object`  <a name="cfn-appflow-flow-marketodestinationproperties-object"></a>
The object specified in the Marketo flow destination.  
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::AppFlow::Flow MarketoSourceProperties
<a name="aws-properties-appflow-flow-marketosourceproperties"></a>

 The properties that are applied when Marketo is being used as a source. 

## Syntax
<a name="aws-properties-appflow-flow-marketosourceproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-marketosourceproperties-syntax.json"></a>

```
{
  "[Object](#cfn-appflow-flow-marketosourceproperties-object)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-marketosourceproperties-syntax.yaml"></a>

```
  [Object](#cfn-appflow-flow-marketosourceproperties-object): String
```

## Properties
<a name="aws-properties-appflow-flow-marketosourceproperties-properties"></a>

`Object`  <a name="cfn-appflow-flow-marketosourceproperties-object"></a>
 The object specified in the Marketo flow source.   
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-marketosourceproperties--seealso"></a>
+ [MarketoSourceProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_MarketoSourceProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow MetadataCatalogConfig
<a name="aws-properties-appflow-flow-metadatacatalogconfig"></a>

Specifies the configuration that Amazon AppFlow uses when it catalogs your data. When Amazon AppFlow catalogs your data, it stores metadata in a data catalog.

## Syntax
<a name="aws-properties-appflow-flow-metadatacatalogconfig-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-metadatacatalogconfig-syntax.json"></a>

```
{
  "[GlueDataCatalog](#cfn-appflow-flow-metadatacatalogconfig-gluedatacatalog)" : GlueDataCatalog
}
```

### YAML
<a name="aws-properties-appflow-flow-metadatacatalogconfig-syntax.yaml"></a>

```
  [GlueDataCatalog](#cfn-appflow-flow-metadatacatalogconfig-gluedatacatalog): 
    GlueDataCatalog
```

## Properties
<a name="aws-properties-appflow-flow-metadatacatalogconfig-properties"></a>

`GlueDataCatalog`  <a name="cfn-appflow-flow-metadatacatalogconfig-gluedatacatalog"></a>
Specifies the configuration that Amazon AppFlow uses when it catalogs your data with the AWS Glue Data Catalog.  
*Required*: No  
*Type*: [GlueDataCatalog](aws-properties-appflow-flow-gluedatacatalog.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::AppFlow::Flow PardotSourceProperties
<a name="aws-properties-appflow-flow-pardotsourceproperties"></a>

The properties that are applied when Salesforce Pardot is being used as a source.

## Syntax
<a name="aws-properties-appflow-flow-pardotsourceproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-pardotsourceproperties-syntax.json"></a>

```
{
  "[Object](#cfn-appflow-flow-pardotsourceproperties-object)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-pardotsourceproperties-syntax.yaml"></a>

```
  [Object](#cfn-appflow-flow-pardotsourceproperties-object): String
```

## Properties
<a name="aws-properties-appflow-flow-pardotsourceproperties-properties"></a>

`Object`  <a name="cfn-appflow-flow-pardotsourceproperties-object"></a>
The object specified in the Salesforce Pardot flow source.  
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::AppFlow::Flow PrefixConfig
<a name="aws-properties-appflow-flow-prefixconfig"></a>

Specifies elements that Amazon AppFlow includes in the file and folder names in the flow destination.

## Syntax
<a name="aws-properties-appflow-flow-prefixconfig-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-prefixconfig-syntax.json"></a>

```
{
  "[PathPrefixHierarchy](#cfn-appflow-flow-prefixconfig-pathprefixhierarchy)" : [ String, ... ],
  "[PrefixFormat](#cfn-appflow-flow-prefixconfig-prefixformat)" : String,
  "[PrefixType](#cfn-appflow-flow-prefixconfig-prefixtype)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-prefixconfig-syntax.yaml"></a>

```
  [PathPrefixHierarchy](#cfn-appflow-flow-prefixconfig-pathprefixhierarchy): 
    - String
  [PrefixFormat](#cfn-appflow-flow-prefixconfig-prefixformat): String
  [PrefixType](#cfn-appflow-flow-prefixconfig-prefixtype): String
```

## Properties
<a name="aws-properties-appflow-flow-prefixconfig-properties"></a>

`PathPrefixHierarchy`  <a name="cfn-appflow-flow-prefixconfig-pathprefixhierarchy"></a>
Specifies whether the destination file path includes either or both of the following elements:    
EXECUTION\$1ID  
The ID that Amazon AppFlow assigns to the flow run.  
SCHEMA\$1VERSION  
The version number of your data schema. Amazon AppFlow assigns this version number. The version number increases by one when you change any of the following settings in your flow configuration:  
+ Source-to-destination field mappings
+ Field data types
+ Partition keys
*Required*: No  
*Type*: Array of String  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`PrefixFormat`  <a name="cfn-appflow-flow-prefixconfig-prefixformat"></a>
Determines the level of granularity for the date and time that's included in the prefix.   
*Required*: No  
*Type*: String  
*Allowed values*: `YEAR | MONTH | DAY | HOUR | MINUTE`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`PrefixType`  <a name="cfn-appflow-flow-prefixconfig-prefixtype"></a>
Determines the format of the prefix, and whether it applies to the file name, file path, or both.   
*Required*: No  
*Type*: String  
*Allowed values*: `FILENAME | PATH | PATH_AND_FILENAME`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-prefixconfig--seealso"></a>
+ [PrefixConfig](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_PrefixConfig.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow RedshiftDestinationProperties
<a name="aws-properties-appflow-flow-redshiftdestinationproperties"></a>

 The properties that are applied when Amazon Redshift is being used as a destination. 

## Syntax
<a name="aws-properties-appflow-flow-redshiftdestinationproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-redshiftdestinationproperties-syntax.json"></a>

```
{
  "[BucketPrefix](#cfn-appflow-flow-redshiftdestinationproperties-bucketprefix)" : String,
  "[ErrorHandlingConfig](#cfn-appflow-flow-redshiftdestinationproperties-errorhandlingconfig)" : ErrorHandlingConfig,
  "[IntermediateBucketName](#cfn-appflow-flow-redshiftdestinationproperties-intermediatebucketname)" : String,
  "[Object](#cfn-appflow-flow-redshiftdestinationproperties-object)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-redshiftdestinationproperties-syntax.yaml"></a>

```
  [BucketPrefix](#cfn-appflow-flow-redshiftdestinationproperties-bucketprefix): String
  [ErrorHandlingConfig](#cfn-appflow-flow-redshiftdestinationproperties-errorhandlingconfig): 
    ErrorHandlingConfig
  [IntermediateBucketName](#cfn-appflow-flow-redshiftdestinationproperties-intermediatebucketname): String
  [Object](#cfn-appflow-flow-redshiftdestinationproperties-object): String
```

## Properties
<a name="aws-properties-appflow-flow-redshiftdestinationproperties-properties"></a>

`BucketPrefix`  <a name="cfn-appflow-flow-redshiftdestinationproperties-bucketprefix"></a>
 The object key for the bucket in which Amazon AppFlow places the destination files.   
*Required*: No  
*Type*: String  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ErrorHandlingConfig`  <a name="cfn-appflow-flow-redshiftdestinationproperties-errorhandlingconfig"></a>
 The settings that determine how Amazon AppFlow handles an error when placing data in the Amazon Redshift destination. For example, this setting would determine if the flow should fail after one insertion error, or continue and attempt to insert every record regardless of the initial failure. `ErrorHandlingConfig` is a part of the destination connector details.   
*Required*: No  
*Type*: [ErrorHandlingConfig](aws-properties-appflow-flow-errorhandlingconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`IntermediateBucketName`  <a name="cfn-appflow-flow-redshiftdestinationproperties-intermediatebucketname"></a>
 The intermediate bucket that Amazon AppFlow uses when moving data into Amazon Redshift.   
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Minimum*: `3`  
*Maximum*: `63`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Object`  <a name="cfn-appflow-flow-redshiftdestinationproperties-object"></a>
 The object specified in the Amazon Redshift flow destination.   
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-redshiftdestinationproperties--seealso"></a>
+ [RedshiftDestinationProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_RedshiftDestinationProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow S3DestinationProperties
<a name="aws-properties-appflow-flow-s3destinationproperties"></a>

 The properties that are applied when Amazon S3 is used as a destination. 

## Syntax
<a name="aws-properties-appflow-flow-s3destinationproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-s3destinationproperties-syntax.json"></a>

```
{
  "[BucketName](#cfn-appflow-flow-s3destinationproperties-bucketname)" : String,
  "[BucketPrefix](#cfn-appflow-flow-s3destinationproperties-bucketprefix)" : String,
  "[S3OutputFormatConfig](#cfn-appflow-flow-s3destinationproperties-s3outputformatconfig)" : S3OutputFormatConfig
}
```

### YAML
<a name="aws-properties-appflow-flow-s3destinationproperties-syntax.yaml"></a>

```
  [BucketName](#cfn-appflow-flow-s3destinationproperties-bucketname): String
  [BucketPrefix](#cfn-appflow-flow-s3destinationproperties-bucketprefix): String
  [S3OutputFormatConfig](#cfn-appflow-flow-s3destinationproperties-s3outputformatconfig): 
    S3OutputFormatConfig
```

## Properties
<a name="aws-properties-appflow-flow-s3destinationproperties-properties"></a>

`BucketName`  <a name="cfn-appflow-flow-s3destinationproperties-bucketname"></a>
 The Amazon S3 bucket name in which Amazon AppFlow places the transferred data.   
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Minimum*: `3`  
*Maximum*: `63`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`BucketPrefix`  <a name="cfn-appflow-flow-s3destinationproperties-bucketprefix"></a>
 The object key for the destination bucket in which Amazon AppFlow places the files.   
*Required*: No  
*Type*: String  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`S3OutputFormatConfig`  <a name="cfn-appflow-flow-s3destinationproperties-s3outputformatconfig"></a>
 The configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination.   
*Required*: No  
*Type*: [S3OutputFormatConfig](aws-properties-appflow-flow-s3outputformatconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-s3destinationproperties--seealso"></a>
+ [S3DestinationProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_S3DestinationProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow S3InputFormatConfig
<a name="aws-properties-appflow-flow-s3inputformatconfig"></a>

 When you use Amazon S3 as the source, the configuration format that you provide the flow input data. 

## Syntax
<a name="aws-properties-appflow-flow-s3inputformatconfig-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-s3inputformatconfig-syntax.json"></a>

```
{
  "[S3InputFileType](#cfn-appflow-flow-s3inputformatconfig-s3inputfiletype)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-s3inputformatconfig-syntax.yaml"></a>

```
  [S3InputFileType](#cfn-appflow-flow-s3inputformatconfig-s3inputfiletype): String
```

## Properties
<a name="aws-properties-appflow-flow-s3inputformatconfig-properties"></a>

`S3InputFileType`  <a name="cfn-appflow-flow-s3inputformatconfig-s3inputfiletype"></a>
 The file type that Amazon AppFlow gets from your Amazon S3 bucket.   
*Required*: No  
*Type*: String  
*Allowed values*: `CSV | JSON`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::AppFlow::Flow S3OutputFormatConfig
<a name="aws-properties-appflow-flow-s3outputformatconfig"></a>

 The configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination. 

## Syntax
<a name="aws-properties-appflow-flow-s3outputformatconfig-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-s3outputformatconfig-syntax.json"></a>

```
{
  "[AggregationConfig](#cfn-appflow-flow-s3outputformatconfig-aggregationconfig)" : AggregationConfig,
  "[FileType](#cfn-appflow-flow-s3outputformatconfig-filetype)" : String,
  "[PrefixConfig](#cfn-appflow-flow-s3outputformatconfig-prefixconfig)" : PrefixConfig,
  "[PreserveSourceDataTyping](#cfn-appflow-flow-s3outputformatconfig-preservesourcedatatyping)" : Boolean
}
```

### YAML
<a name="aws-properties-appflow-flow-s3outputformatconfig-syntax.yaml"></a>

```
  [AggregationConfig](#cfn-appflow-flow-s3outputformatconfig-aggregationconfig): 
    AggregationConfig
  [FileType](#cfn-appflow-flow-s3outputformatconfig-filetype): String
  [PrefixConfig](#cfn-appflow-flow-s3outputformatconfig-prefixconfig): 
    PrefixConfig
  [PreserveSourceDataTyping](#cfn-appflow-flow-s3outputformatconfig-preservesourcedatatyping): Boolean
```

## Properties
<a name="aws-properties-appflow-flow-s3outputformatconfig-properties"></a>

`AggregationConfig`  <a name="cfn-appflow-flow-s3outputformatconfig-aggregationconfig"></a>
 The aggregation settings that you can use to customize the output format of your flow data.   
*Required*: No  
*Type*: [AggregationConfig](aws-properties-appflow-flow-aggregationconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`FileType`  <a name="cfn-appflow-flow-s3outputformatconfig-filetype"></a>
 Indicates the file type that Amazon AppFlow places in the Amazon S3 bucket.   
*Required*: No  
*Type*: String  
*Allowed values*: `CSV | JSON | PARQUET`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`PrefixConfig`  <a name="cfn-appflow-flow-s3outputformatconfig-prefixconfig"></a>
 Determines the prefix that Amazon AppFlow applies to the folder name in the Amazon S3 bucket. You can name folders according to the flow frequency and date.   
*Required*: No  
*Type*: [PrefixConfig](aws-properties-appflow-flow-prefixconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`PreserveSourceDataTyping`  <a name="cfn-appflow-flow-s3outputformatconfig-preservesourcedatatyping"></a>
If your file output format is Parquet, use this parameter to set whether Amazon AppFlow preserves the data types in your source data when it writes the output to Amazon S3.   
+ `true`: Amazon AppFlow preserves the data types when it writes to Amazon S3. For example, an integer or `1` in your source data is still an integer in your output.
+ `false`: Amazon AppFlow converts all of the source data into strings when it writes to Amazon S3. For example, an integer of `1` in your source data becomes the string `"1"` in the output.
*Required*: No  
*Type*: Boolean  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-s3outputformatconfig--seealso"></a>
+ [S3OutputFormatConfig](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_S3OutputFormatConfig.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow S3SourceProperties
<a name="aws-properties-appflow-flow-s3sourceproperties"></a>

 The properties that are applied when Amazon S3 is being used as the flow source. 

## Syntax
<a name="aws-properties-appflow-flow-s3sourceproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-s3sourceproperties-syntax.json"></a>

```
{
  "[BucketName](#cfn-appflow-flow-s3sourceproperties-bucketname)" : String,
  "[BucketPrefix](#cfn-appflow-flow-s3sourceproperties-bucketprefix)" : String,
  "[S3InputFormatConfig](#cfn-appflow-flow-s3sourceproperties-s3inputformatconfig)" : S3InputFormatConfig
}
```

### YAML
<a name="aws-properties-appflow-flow-s3sourceproperties-syntax.yaml"></a>

```
  [BucketName](#cfn-appflow-flow-s3sourceproperties-bucketname): String
  [BucketPrefix](#cfn-appflow-flow-s3sourceproperties-bucketprefix): String
  [S3InputFormatConfig](#cfn-appflow-flow-s3sourceproperties-s3inputformatconfig): 
    S3InputFormatConfig
```

## Properties
<a name="aws-properties-appflow-flow-s3sourceproperties-properties"></a>

`BucketName`  <a name="cfn-appflow-flow-s3sourceproperties-bucketname"></a>
 The Amazon S3 bucket name where the source files are stored.   
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Minimum*: `3`  
*Maximum*: `63`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`BucketPrefix`  <a name="cfn-appflow-flow-s3sourceproperties-bucketprefix"></a>
 The object key for the Amazon S3 bucket in which the source files are stored.   
*Required*: Yes  
*Type*: String  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`S3InputFormatConfig`  <a name="cfn-appflow-flow-s3sourceproperties-s3inputformatconfig"></a>
 When you use Amazon S3 as the source, the configuration format that you provide the flow input data.   
*Required*: No  
*Type*: [S3InputFormatConfig](aws-properties-appflow-flow-s3inputformatconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-s3sourceproperties--seealso"></a>
+ [S3SourceProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_S3SourceProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow SalesforceDestinationProperties
<a name="aws-properties-appflow-flow-salesforcedestinationproperties"></a>

 The properties that are applied when Salesforce is being used as a destination. 

## Syntax
<a name="aws-properties-appflow-flow-salesforcedestinationproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-salesforcedestinationproperties-syntax.json"></a>

```
{
  "[DataTransferApi](#cfn-appflow-flow-salesforcedestinationproperties-datatransferapi)" : String,
  "[ErrorHandlingConfig](#cfn-appflow-flow-salesforcedestinationproperties-errorhandlingconfig)" : ErrorHandlingConfig,
  "[IdFieldNames](#cfn-appflow-flow-salesforcedestinationproperties-idfieldnames)" : [ String, ... ],
  "[Object](#cfn-appflow-flow-salesforcedestinationproperties-object)" : String,
  "[WriteOperationType](#cfn-appflow-flow-salesforcedestinationproperties-writeoperationtype)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-salesforcedestinationproperties-syntax.yaml"></a>

```
  [DataTransferApi](#cfn-appflow-flow-salesforcedestinationproperties-datatransferapi): String
  [ErrorHandlingConfig](#cfn-appflow-flow-salesforcedestinationproperties-errorhandlingconfig): 
    ErrorHandlingConfig
  [IdFieldNames](#cfn-appflow-flow-salesforcedestinationproperties-idfieldnames): 
    - String
  [Object](#cfn-appflow-flow-salesforcedestinationproperties-object): String
  [WriteOperationType](#cfn-appflow-flow-salesforcedestinationproperties-writeoperationtype): String
```

## Properties
<a name="aws-properties-appflow-flow-salesforcedestinationproperties-properties"></a>

`DataTransferApi`  <a name="cfn-appflow-flow-salesforcedestinationproperties-datatransferapi"></a>
Specifies which Salesforce API is used by Amazon AppFlow when your flow transfers data to Salesforce.    
AUTOMATIC  
The default. Amazon AppFlow selects which API to use based on the number of records that your flow transfers to Salesforce. If your flow transfers fewer than 1,000 records, Amazon AppFlow uses Salesforce REST API. If your flow transfers 1,000 records or more, Amazon AppFlow uses Salesforce Bulk API 2.0.  
Each of these Salesforce APIs structures data differently. If Amazon AppFlow selects the API automatically, be aware that, for recurring flows, the data output might vary from one flow run to the next. For example, if a flow runs daily, it might use REST API on one day to transfer 900 records, and it might use Bulk API 2.0 on the next day to transfer 1,100 records. For each of these flow runs, the respective Salesforce API formats the data differently. Some of the differences include how dates are formatted and null values are represented. Also, Bulk API 2.0 doesn't transfer Salesforce compound fields.  
By choosing this option, you optimize flow performance for both small and large data transfers, but the tradeoff is inconsistent formatting in the output.  
BULKV2  
Amazon AppFlow uses only Salesforce Bulk API 2.0. This API runs asynchronous data transfers, and it's optimal for large sets of data. By choosing this option, you ensure that your flow writes consistent output, but you optimize performance only for large data transfers.  
Note that Bulk API 2.0 does not transfer Salesforce compound fields.  
REST\$1SYNC  
Amazon AppFlow uses only Salesforce REST API. By choosing this option, you ensure that your flow writes consistent output, but you decrease performance for large data transfers that are better suited for Bulk API 2.0. In some cases, if your flow attempts to transfer a vary large set of data, it might fail with a timed out error.
*Required*: No  
*Type*: [String](aws-properties-appflow-flow-datatransferapi.md)  
*Allowed values*: `AUTOMATIC | BULKV2 | REST_SYNC`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ErrorHandlingConfig`  <a name="cfn-appflow-flow-salesforcedestinationproperties-errorhandlingconfig"></a>
 The settings that determine how Amazon AppFlow handles an error when placing data in the Salesforce destination. For example, this setting would determine if the flow should fail after one insertion error, or continue and attempt to insert every record regardless of the initial failure. `ErrorHandlingConfig` is a part of the destination connector details.   
*Required*: No  
*Type*: [ErrorHandlingConfig](aws-properties-appflow-flow-errorhandlingconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`IdFieldNames`  <a name="cfn-appflow-flow-salesforcedestinationproperties-idfieldnames"></a>
 The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.   
*Required*: No  
*Type*: Array of String  
*Minimum*: `0`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Object`  <a name="cfn-appflow-flow-salesforcedestinationproperties-object"></a>
 The object specified in the Salesforce flow destination.   
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`WriteOperationType`  <a name="cfn-appflow-flow-salesforcedestinationproperties-writeoperationtype"></a>
 This specifies the type of write operation to be performed in Salesforce. When the value is `UPSERT`, then `idFieldNames` is required.   
*Required*: No  
*Type*: String  
*Allowed values*: `INSERT | UPSERT | UPDATE | DELETE`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-salesforcedestinationproperties--seealso"></a>
+ [SalesforceDestinationProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_SalesforceDestinationProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow SalesforceSourceProperties
<a name="aws-properties-appflow-flow-salesforcesourceproperties"></a>

 The properties that are applied when Salesforce is being used as a source. 

## Syntax
<a name="aws-properties-appflow-flow-salesforcesourceproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-salesforcesourceproperties-syntax.json"></a>

```
{
  "[DataTransferApi](#cfn-appflow-flow-salesforcesourceproperties-datatransferapi)" : String,
  "[EnableDynamicFieldUpdate](#cfn-appflow-flow-salesforcesourceproperties-enabledynamicfieldupdate)" : Boolean,
  "[IncludeDeletedRecords](#cfn-appflow-flow-salesforcesourceproperties-includedeletedrecords)" : Boolean,
  "[Object](#cfn-appflow-flow-salesforcesourceproperties-object)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-salesforcesourceproperties-syntax.yaml"></a>

```
  [DataTransferApi](#cfn-appflow-flow-salesforcesourceproperties-datatransferapi): String
  [EnableDynamicFieldUpdate](#cfn-appflow-flow-salesforcesourceproperties-enabledynamicfieldupdate): Boolean
  [IncludeDeletedRecords](#cfn-appflow-flow-salesforcesourceproperties-includedeletedrecords): Boolean
  [Object](#cfn-appflow-flow-salesforcesourceproperties-object): String
```

## Properties
<a name="aws-properties-appflow-flow-salesforcesourceproperties-properties"></a>

`DataTransferApi`  <a name="cfn-appflow-flow-salesforcesourceproperties-datatransferapi"></a>
Specifies which Salesforce API is used by Amazon AppFlow when your flow transfers data from Salesforce.    
AUTOMATIC  
The default. Amazon AppFlow selects which API to use based on the number of records that your flow transfers from Salesforce. If your flow transfers fewer than 1,000,000 records, Amazon AppFlow uses Salesforce REST API. If your flow transfers 1,000,000 records or more, Amazon AppFlow uses Salesforce Bulk API 2.0.  
Each of these Salesforce APIs structures data differently. If Amazon AppFlow selects the API automatically, be aware that, for recurring flows, the data output might vary from one flow run to the next. For example, if a flow runs daily, it might use REST API on one day to transfer 900,000 records, and it might use Bulk API 2.0 on the next day to transfer 1,100,000 records. For each of these flow runs, the respective Salesforce API formats the data differently. Some of the differences include how dates are formatted and null values are represented. Also, Bulk API 2.0 doesn't transfer Salesforce compound fields.  
By choosing this option, you optimize flow performance for both small and large data transfers, but the tradeoff is inconsistent formatting in the output.  
BULKV2  
Amazon AppFlow uses only Salesforce Bulk API 2.0. This API runs asynchronous data transfers, and it's optimal for large sets of data. By choosing this option, you ensure that your flow writes consistent output, but you optimize performance only for large data transfers.  
Note that Bulk API 2.0 does not transfer Salesforce compound fields.  
REST\$1SYNC  
Amazon AppFlow uses only Salesforce REST API. By choosing this option, you ensure that your flow writes consistent output, but you decrease performance for large data transfers that are better suited for Bulk API 2.0. In some cases, if your flow attempts to transfer a vary large set of data, it might fail wituh a timed out error.
*Required*: No  
*Type*: [String](aws-properties-appflow-flow-datatransferapi.md)  
*Allowed values*: `AUTOMATIC | BULKV2 | REST_SYNC`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`EnableDynamicFieldUpdate`  <a name="cfn-appflow-flow-salesforcesourceproperties-enabledynamicfieldupdate"></a>
 The flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a flow.   
*Required*: No  
*Type*: Boolean  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`IncludeDeletedRecords`  <a name="cfn-appflow-flow-salesforcesourceproperties-includedeletedrecords"></a>
 Indicates whether Amazon AppFlow includes deleted files in the flow run.   
*Required*: No  
*Type*: Boolean  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Object`  <a name="cfn-appflow-flow-salesforcesourceproperties-object"></a>
 The object specified in the Salesforce flow source.   
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-salesforcesourceproperties--seealso"></a>
+ [SalesforceSourceProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_SalesforceSourceProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow SAPODataDestinationProperties
<a name="aws-properties-appflow-flow-sapodatadestinationproperties"></a>

The properties that are applied when using SAPOData as a flow destination

## Syntax
<a name="aws-properties-appflow-flow-sapodatadestinationproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-sapodatadestinationproperties-syntax.json"></a>

```
{
  "[ErrorHandlingConfig](#cfn-appflow-flow-sapodatadestinationproperties-errorhandlingconfig)" : ErrorHandlingConfig,
  "[IdFieldNames](#cfn-appflow-flow-sapodatadestinationproperties-idfieldnames)" : [ String, ... ],
  "[ObjectPath](#cfn-appflow-flow-sapodatadestinationproperties-objectpath)" : String,
  "[SuccessResponseHandlingConfig](#cfn-appflow-flow-sapodatadestinationproperties-successresponsehandlingconfig)" : SuccessResponseHandlingConfig,
  "[WriteOperationType](#cfn-appflow-flow-sapodatadestinationproperties-writeoperationtype)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-sapodatadestinationproperties-syntax.yaml"></a>

```
  [ErrorHandlingConfig](#cfn-appflow-flow-sapodatadestinationproperties-errorhandlingconfig): 
    ErrorHandlingConfig
  [IdFieldNames](#cfn-appflow-flow-sapodatadestinationproperties-idfieldnames): 
    - String
  [ObjectPath](#cfn-appflow-flow-sapodatadestinationproperties-objectpath): String
  [SuccessResponseHandlingConfig](#cfn-appflow-flow-sapodatadestinationproperties-successresponsehandlingconfig): 
    SuccessResponseHandlingConfig
  [WriteOperationType](#cfn-appflow-flow-sapodatadestinationproperties-writeoperationtype): String
```

## Properties
<a name="aws-properties-appflow-flow-sapodatadestinationproperties-properties"></a>

`ErrorHandlingConfig`  <a name="cfn-appflow-flow-sapodatadestinationproperties-errorhandlingconfig"></a>
 The settings that determine how Amazon AppFlow handles an error when placing data in the destination. For example, this setting would determine if the flow should fail after one insertion error, or continue and attempt to insert every record regardless of the initial failure. `ErrorHandlingConfig` is a part of the destination connector details.   
*Required*: No  
*Type*: [ErrorHandlingConfig](aws-properties-appflow-flow-errorhandlingconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`IdFieldNames`  <a name="cfn-appflow-flow-sapodatadestinationproperties-idfieldnames"></a>
 A list of field names that can be used as an ID field when performing a write operation.   
*Required*: No  
*Type*: Array of String  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ObjectPath`  <a name="cfn-appflow-flow-sapodatadestinationproperties-objectpath"></a>
The object path specified in the SAPOData flow destination.  
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`SuccessResponseHandlingConfig`  <a name="cfn-appflow-flow-sapodatadestinationproperties-successresponsehandlingconfig"></a>
Determines how Amazon AppFlow handles the success response that it gets from the connector after placing data.  
For example, this setting would determine where to write the response from a destination connector upon a successful insert operation.  
*Required*: No  
*Type*: [SuccessResponseHandlingConfig](aws-properties-appflow-flow-successresponsehandlingconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`WriteOperationType`  <a name="cfn-appflow-flow-sapodatadestinationproperties-writeoperationtype"></a>
 The possible write operations in the destination connector. When this value is not provided, this defaults to the `INSERT` operation.   
*Required*: No  
*Type*: String  
*Allowed values*: `INSERT | UPSERT | UPDATE | DELETE`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::AppFlow::Flow SAPODataPaginationConfig
<a name="aws-properties-appflow-flow-sapodatapaginationconfig"></a>

Sets the page size for each *concurrent process* that transfers OData records from your SAP instance. A concurrent process is query that retrieves a batch of records as part of a flow run. Amazon AppFlow can run multiple concurrent processes in parallel to transfer data faster.

## Syntax
<a name="aws-properties-appflow-flow-sapodatapaginationconfig-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-sapodatapaginationconfig-syntax.json"></a>

```
{
  "[maxPageSize](#cfn-appflow-flow-sapodatapaginationconfig-maxpagesize)" : Integer
}
```

### YAML
<a name="aws-properties-appflow-flow-sapodatapaginationconfig-syntax.yaml"></a>

```
  [maxPageSize](#cfn-appflow-flow-sapodatapaginationconfig-maxpagesize): Integer
```

## Properties
<a name="aws-properties-appflow-flow-sapodatapaginationconfig-properties"></a>

`maxPageSize`  <a name="cfn-appflow-flow-sapodatapaginationconfig-maxpagesize"></a>
The maximum number of records that Amazon AppFlow receives in each page of the response from your SAP application. For transfers of OData records, the maximum page size is 3,000. For transfers of data that comes from an ODP provider, the maximum page size is 10,000.  
*Required*: Yes  
*Type*: Integer  
*Minimum*: `1`  
*Maximum*: `10000`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::AppFlow::Flow SAPODataParallelismConfig
<a name="aws-properties-appflow-flow-sapodataparallelismconfig"></a>

Sets the number of *concurrent processes* that transfer OData records from your SAP instance. A concurrent process is query that retrieves a batch of records as part of a flow run. Amazon AppFlow can run multiple concurrent processes in parallel to transfer data faster.

## Syntax
<a name="aws-properties-appflow-flow-sapodataparallelismconfig-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-sapodataparallelismconfig-syntax.json"></a>

```
{
  "[maxParallelism](#cfn-appflow-flow-sapodataparallelismconfig-maxparallelism)" : Integer
}
```

### YAML
<a name="aws-properties-appflow-flow-sapodataparallelismconfig-syntax.yaml"></a>

```
  [maxParallelism](#cfn-appflow-flow-sapodataparallelismconfig-maxparallelism): Integer
```

## Properties
<a name="aws-properties-appflow-flow-sapodataparallelismconfig-properties"></a>

`maxParallelism`  <a name="cfn-appflow-flow-sapodataparallelismconfig-maxparallelism"></a>
The maximum number of processes that Amazon AppFlow runs at the same time when it retrieves your data from your SAP application.  
*Required*: Yes  
*Type*: Integer  
*Minimum*: `1`  
*Maximum*: `10`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::AppFlow::Flow SAPODataSourceProperties
<a name="aws-properties-appflow-flow-sapodatasourceproperties"></a>

 The properties that are applied when using SAPOData as a flow source. 

## Syntax
<a name="aws-properties-appflow-flow-sapodatasourceproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-sapodatasourceproperties-syntax.json"></a>

```
{
  "[ObjectPath](#cfn-appflow-flow-sapodatasourceproperties-objectpath)" : String,
  "[paginationConfig](#cfn-appflow-flow-sapodatasourceproperties-paginationconfig)" : SAPODataPaginationConfig,
  "[parallelismConfig](#cfn-appflow-flow-sapodatasourceproperties-parallelismconfig)" : SAPODataParallelismConfig
}
```

### YAML
<a name="aws-properties-appflow-flow-sapodatasourceproperties-syntax.yaml"></a>

```
  [ObjectPath](#cfn-appflow-flow-sapodatasourceproperties-objectpath): String
  [paginationConfig](#cfn-appflow-flow-sapodatasourceproperties-paginationconfig): 
    SAPODataPaginationConfig
  [parallelismConfig](#cfn-appflow-flow-sapodatasourceproperties-parallelismconfig): 
    SAPODataParallelismConfig
```

## Properties
<a name="aws-properties-appflow-flow-sapodatasourceproperties-properties"></a>

`ObjectPath`  <a name="cfn-appflow-flow-sapodatasourceproperties-objectpath"></a>
 The object path specified in the SAPOData flow source.   
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`paginationConfig`  <a name="cfn-appflow-flow-sapodatasourceproperties-paginationconfig"></a>
Sets the page size for each concurrent process that transfers OData records from your SAP instance.  
*Required*: No  
*Type*: [SAPODataPaginationConfig](aws-properties-appflow-flow-sapodatapaginationconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`parallelismConfig`  <a name="cfn-appflow-flow-sapodatasourceproperties-parallelismconfig"></a>
Sets the number of concurrent processes that transfers OData records from your SAP instance.  
*Required*: No  
*Type*: [SAPODataParallelismConfig](aws-properties-appflow-flow-sapodataparallelismconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::AppFlow::Flow ScheduledTriggerProperties
<a name="aws-properties-appflow-flow-scheduledtriggerproperties"></a>

 Specifies the configuration details of a schedule-triggered flow as defined by the user. Currently, these settings only apply to the `Scheduled` trigger type. 

## Syntax
<a name="aws-properties-appflow-flow-scheduledtriggerproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-scheduledtriggerproperties-syntax.json"></a>

```
{
  "[DataPullMode](#cfn-appflow-flow-scheduledtriggerproperties-datapullmode)" : String,
  "[FirstExecutionFrom](#cfn-appflow-flow-scheduledtriggerproperties-firstexecutionfrom)" : Number,
  "[FlowErrorDeactivationThreshold](#cfn-appflow-flow-scheduledtriggerproperties-flowerrordeactivationthreshold)" : Integer,
  "[ScheduleEndTime](#cfn-appflow-flow-scheduledtriggerproperties-scheduleendtime)" : Number,
  "[ScheduleExpression](#cfn-appflow-flow-scheduledtriggerproperties-scheduleexpression)" : String,
  "[ScheduleOffset](#cfn-appflow-flow-scheduledtriggerproperties-scheduleoffset)" : Number,
  "[ScheduleStartTime](#cfn-appflow-flow-scheduledtriggerproperties-schedulestarttime)" : Number,
  "[TimeZone](#cfn-appflow-flow-scheduledtriggerproperties-timezone)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-scheduledtriggerproperties-syntax.yaml"></a>

```
  [DataPullMode](#cfn-appflow-flow-scheduledtriggerproperties-datapullmode): String
  [FirstExecutionFrom](#cfn-appflow-flow-scheduledtriggerproperties-firstexecutionfrom): Number
  [FlowErrorDeactivationThreshold](#cfn-appflow-flow-scheduledtriggerproperties-flowerrordeactivationthreshold): Integer
  [ScheduleEndTime](#cfn-appflow-flow-scheduledtriggerproperties-scheduleendtime): Number
  [ScheduleExpression](#cfn-appflow-flow-scheduledtriggerproperties-scheduleexpression): String
  [ScheduleOffset](#cfn-appflow-flow-scheduledtriggerproperties-scheduleoffset): Number
  [ScheduleStartTime](#cfn-appflow-flow-scheduledtriggerproperties-schedulestarttime): Number
  [TimeZone](#cfn-appflow-flow-scheduledtriggerproperties-timezone): String
```

## Properties
<a name="aws-properties-appflow-flow-scheduledtriggerproperties-properties"></a>

`DataPullMode`  <a name="cfn-appflow-flow-scheduledtriggerproperties-datapullmode"></a>
 Specifies whether a scheduled flow has an incremental data transfer or a complete data transfer for each flow run.   
*Required*: No  
*Type*: String  
*Allowed values*: `Incremental | Complete`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`FirstExecutionFrom`  <a name="cfn-appflow-flow-scheduledtriggerproperties-firstexecutionfrom"></a>
 Specifies the date range for the records to import from the connector in the first flow run.   
*Required*: No  
*Type*: Number  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`FlowErrorDeactivationThreshold`  <a name="cfn-appflow-flow-scheduledtriggerproperties-flowerrordeactivationthreshold"></a>
Defines how many times a scheduled flow fails consecutively before Amazon AppFlow deactivates it.  
*Required*: No  
*Type*: Integer  
*Minimum*: `1`  
*Maximum*: `100`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ScheduleEndTime`  <a name="cfn-appflow-flow-scheduledtriggerproperties-scheduleendtime"></a>
The time at which the scheduled flow ends. The time is formatted as a timestamp that follows the ISO 8601 standard, such as `2022-04-27T13:00:00-07:00`.  
*Required*: No  
*Type*: Number  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ScheduleExpression`  <a name="cfn-appflow-flow-scheduledtriggerproperties-scheduleexpression"></a>
 The scheduling expression that determines the rate at which the schedule will run, for example `rate(5minutes)`.   
*Required*: Yes  
*Type*: String  
*Minimum*: `1`  
*Maximum*: `256`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ScheduleOffset`  <a name="cfn-appflow-flow-scheduledtriggerproperties-scheduleoffset"></a>
 Specifies the optional offset that is added to the time interval for a schedule-triggered flow.   
*Required*: No  
*Type*: Number  
*Minimum*: `0`  
*Maximum*: `36000`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ScheduleStartTime`  <a name="cfn-appflow-flow-scheduledtriggerproperties-schedulestarttime"></a>
The time at which the scheduled flow starts. The time is formatted as a timestamp that follows the ISO 8601 standard, such as `2022-04-26T13:00:00-07:00`.  
*Required*: No  
*Type*: Number  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`TimeZone`  <a name="cfn-appflow-flow-scheduledtriggerproperties-timezone"></a>
Specifies the time zone used when referring to the dates and times of a scheduled flow, such as `America/New_York`. This time zone is only a descriptive label. It doesn't affect how Amazon AppFlow interprets the timestamps that you specify to schedule the flow.  
If you want to schedule a flow by using times in a particular time zone, indicate the time zone as a UTC offset in your timestamps. For example, the UTC offsets for the `America/New_York` timezone are `-04:00` EDT and `-05:00 EST`.  
*Required*: No  
*Type*: String  
*Maximum*: `256`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-scheduledtriggerproperties--seealso"></a>
+ [ScheduledTriggerProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_ScheduledTriggerProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow ServiceNowSourceProperties
<a name="aws-properties-appflow-flow-servicenowsourceproperties"></a>

 The properties that are applied when ServiceNow is being used as a source. 

## Syntax
<a name="aws-properties-appflow-flow-servicenowsourceproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-servicenowsourceproperties-syntax.json"></a>

```
{
  "[Object](#cfn-appflow-flow-servicenowsourceproperties-object)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-servicenowsourceproperties-syntax.yaml"></a>

```
  [Object](#cfn-appflow-flow-servicenowsourceproperties-object): String
```

## Properties
<a name="aws-properties-appflow-flow-servicenowsourceproperties-properties"></a>

`Object`  <a name="cfn-appflow-flow-servicenowsourceproperties-object"></a>
 The object specified in the ServiceNow flow source.   
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-servicenowsourceproperties--seealso"></a>
+ [ServiceNowSourceProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_ServiceNowSourceProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow SingularSourceProperties
<a name="aws-properties-appflow-flow-singularsourceproperties"></a>

 The properties that are applied when Singular is being used as a source. 

## Syntax
<a name="aws-properties-appflow-flow-singularsourceproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-singularsourceproperties-syntax.json"></a>

```
{
  "[Object](#cfn-appflow-flow-singularsourceproperties-object)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-singularsourceproperties-syntax.yaml"></a>

```
  [Object](#cfn-appflow-flow-singularsourceproperties-object): String
```

## Properties
<a name="aws-properties-appflow-flow-singularsourceproperties-properties"></a>

`Object`  <a name="cfn-appflow-flow-singularsourceproperties-object"></a>
 The object specified in the Singular flow source.   
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-singularsourceproperties--seealso"></a>
+ [SingularSourceProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_SingularSourceProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow SlackSourceProperties
<a name="aws-properties-appflow-flow-slacksourceproperties"></a>

 The properties that are applied when Slack is being used as a source. 

## Syntax
<a name="aws-properties-appflow-flow-slacksourceproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-slacksourceproperties-syntax.json"></a>

```
{
  "[Object](#cfn-appflow-flow-slacksourceproperties-object)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-slacksourceproperties-syntax.yaml"></a>

```
  [Object](#cfn-appflow-flow-slacksourceproperties-object): String
```

## Properties
<a name="aws-properties-appflow-flow-slacksourceproperties-properties"></a>

`Object`  <a name="cfn-appflow-flow-slacksourceproperties-object"></a>
 The object specified in the Slack flow source.   
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-slacksourceproperties--seealso"></a>
+ [SlackSourceProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_SlackSourceProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow SnowflakeDestinationProperties
<a name="aws-properties-appflow-flow-snowflakedestinationproperties"></a>

 The properties that are applied when Snowflake is being used as a destination. 

## Syntax
<a name="aws-properties-appflow-flow-snowflakedestinationproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-snowflakedestinationproperties-syntax.json"></a>

```
{
  "[BucketPrefix](#cfn-appflow-flow-snowflakedestinationproperties-bucketprefix)" : String,
  "[ErrorHandlingConfig](#cfn-appflow-flow-snowflakedestinationproperties-errorhandlingconfig)" : ErrorHandlingConfig,
  "[IntermediateBucketName](#cfn-appflow-flow-snowflakedestinationproperties-intermediatebucketname)" : String,
  "[Object](#cfn-appflow-flow-snowflakedestinationproperties-object)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-snowflakedestinationproperties-syntax.yaml"></a>

```
  [BucketPrefix](#cfn-appflow-flow-snowflakedestinationproperties-bucketprefix): String
  [ErrorHandlingConfig](#cfn-appflow-flow-snowflakedestinationproperties-errorhandlingconfig): 
    ErrorHandlingConfig
  [IntermediateBucketName](#cfn-appflow-flow-snowflakedestinationproperties-intermediatebucketname): String
  [Object](#cfn-appflow-flow-snowflakedestinationproperties-object): String
```

## Properties
<a name="aws-properties-appflow-flow-snowflakedestinationproperties-properties"></a>

`BucketPrefix`  <a name="cfn-appflow-flow-snowflakedestinationproperties-bucketprefix"></a>
 The object key for the destination bucket in which Amazon AppFlow places the files.   
*Required*: No  
*Type*: String  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ErrorHandlingConfig`  <a name="cfn-appflow-flow-snowflakedestinationproperties-errorhandlingconfig"></a>
 The settings that determine how Amazon AppFlow handles an error when placing data in the Snowflake destination. For example, this setting would determine if the flow should fail after one insertion error, or continue and attempt to insert every record regardless of the initial failure. `ErrorHandlingConfig` is a part of the destination connector details.   
*Required*: No  
*Type*: [ErrorHandlingConfig](aws-properties-appflow-flow-errorhandlingconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`IntermediateBucketName`  <a name="cfn-appflow-flow-snowflakedestinationproperties-intermediatebucketname"></a>
 The intermediate bucket that Amazon AppFlow uses when moving data into Snowflake.   
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Minimum*: `3`  
*Maximum*: `63`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Object`  <a name="cfn-appflow-flow-snowflakedestinationproperties-object"></a>
 The object specified in the Snowflake flow destination.   
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-snowflakedestinationproperties--seealso"></a>
+ [SnowflakeDestinationProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_SnowflakeDestinationProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow SourceConnectorProperties
<a name="aws-properties-appflow-flow-sourceconnectorproperties"></a>

 Specifies the information that is required to query a particular connector. 

## Syntax
<a name="aws-properties-appflow-flow-sourceconnectorproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-sourceconnectorproperties-syntax.json"></a>

```
{
  "[Amplitude](#cfn-appflow-flow-sourceconnectorproperties-amplitude)" : AmplitudeSourceProperties,
  "[CustomConnector](#cfn-appflow-flow-sourceconnectorproperties-customconnector)" : CustomConnectorSourceProperties,
  "[Datadog](#cfn-appflow-flow-sourceconnectorproperties-datadog)" : DatadogSourceProperties,
  "[Dynatrace](#cfn-appflow-flow-sourceconnectorproperties-dynatrace)" : DynatraceSourceProperties,
  "[GoogleAnalytics](#cfn-appflow-flow-sourceconnectorproperties-googleanalytics)" : GoogleAnalyticsSourceProperties,
  "[InforNexus](#cfn-appflow-flow-sourceconnectorproperties-infornexus)" : InforNexusSourceProperties,
  "[Marketo](#cfn-appflow-flow-sourceconnectorproperties-marketo)" : MarketoSourceProperties,
  "[Pardot](#cfn-appflow-flow-sourceconnectorproperties-pardot)" : PardotSourceProperties,
  "[S3](#cfn-appflow-flow-sourceconnectorproperties-s3)" : S3SourceProperties,
  "[Salesforce](#cfn-appflow-flow-sourceconnectorproperties-salesforce)" : SalesforceSourceProperties,
  "[SAPOData](#cfn-appflow-flow-sourceconnectorproperties-sapodata)" : SAPODataSourceProperties,
  "[ServiceNow](#cfn-appflow-flow-sourceconnectorproperties-servicenow)" : ServiceNowSourceProperties,
  "[Singular](#cfn-appflow-flow-sourceconnectorproperties-singular)" : SingularSourceProperties,
  "[Slack](#cfn-appflow-flow-sourceconnectorproperties-slack)" : SlackSourceProperties,
  "[Trendmicro](#cfn-appflow-flow-sourceconnectorproperties-trendmicro)" : TrendmicroSourceProperties,
  "[Veeva](#cfn-appflow-flow-sourceconnectorproperties-veeva)" : VeevaSourceProperties,
  "[Zendesk](#cfn-appflow-flow-sourceconnectorproperties-zendesk)" : ZendeskSourceProperties
}
```

### YAML
<a name="aws-properties-appflow-flow-sourceconnectorproperties-syntax.yaml"></a>

```
  [Amplitude](#cfn-appflow-flow-sourceconnectorproperties-amplitude): 
    AmplitudeSourceProperties
  [CustomConnector](#cfn-appflow-flow-sourceconnectorproperties-customconnector): 
    CustomConnectorSourceProperties
  [Datadog](#cfn-appflow-flow-sourceconnectorproperties-datadog): 
    DatadogSourceProperties
  [Dynatrace](#cfn-appflow-flow-sourceconnectorproperties-dynatrace): 
    DynatraceSourceProperties
  [GoogleAnalytics](#cfn-appflow-flow-sourceconnectorproperties-googleanalytics): 
    GoogleAnalyticsSourceProperties
  [InforNexus](#cfn-appflow-flow-sourceconnectorproperties-infornexus): 
    InforNexusSourceProperties
  [Marketo](#cfn-appflow-flow-sourceconnectorproperties-marketo): 
    MarketoSourceProperties
  [Pardot](#cfn-appflow-flow-sourceconnectorproperties-pardot): 
    PardotSourceProperties
  [S3](#cfn-appflow-flow-sourceconnectorproperties-s3): 
    S3SourceProperties
  [Salesforce](#cfn-appflow-flow-sourceconnectorproperties-salesforce): 
    SalesforceSourceProperties
  [SAPOData](#cfn-appflow-flow-sourceconnectorproperties-sapodata): 
    SAPODataSourceProperties
  [ServiceNow](#cfn-appflow-flow-sourceconnectorproperties-servicenow): 
    ServiceNowSourceProperties
  [Singular](#cfn-appflow-flow-sourceconnectorproperties-singular): 
    SingularSourceProperties
  [Slack](#cfn-appflow-flow-sourceconnectorproperties-slack): 
    SlackSourceProperties
  [Trendmicro](#cfn-appflow-flow-sourceconnectorproperties-trendmicro): 
    TrendmicroSourceProperties
  [Veeva](#cfn-appflow-flow-sourceconnectorproperties-veeva): 
    VeevaSourceProperties
  [Zendesk](#cfn-appflow-flow-sourceconnectorproperties-zendesk): 
    ZendeskSourceProperties
```

## Properties
<a name="aws-properties-appflow-flow-sourceconnectorproperties-properties"></a>

`Amplitude`  <a name="cfn-appflow-flow-sourceconnectorproperties-amplitude"></a>
 Specifies the information that is required for querying Amplitude.   
*Required*: No  
*Type*: [AmplitudeSourceProperties](aws-properties-appflow-flow-amplitudesourceproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`CustomConnector`  <a name="cfn-appflow-flow-sourceconnectorproperties-customconnector"></a>
The properties that are applied when the custom connector is being used as a source.  
*Required*: No  
*Type*: [CustomConnectorSourceProperties](aws-properties-appflow-flow-customconnectorsourceproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Datadog`  <a name="cfn-appflow-flow-sourceconnectorproperties-datadog"></a>
 Specifies the information that is required for querying Datadog.   
*Required*: No  
*Type*: [DatadogSourceProperties](aws-properties-appflow-flow-datadogsourceproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Dynatrace`  <a name="cfn-appflow-flow-sourceconnectorproperties-dynatrace"></a>
 Specifies the information that is required for querying Dynatrace.   
*Required*: No  
*Type*: [DynatraceSourceProperties](aws-properties-appflow-flow-dynatracesourceproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`GoogleAnalytics`  <a name="cfn-appflow-flow-sourceconnectorproperties-googleanalytics"></a>
 Specifies the information that is required for querying Google Analytics.   
*Required*: No  
*Type*: [GoogleAnalyticsSourceProperties](aws-properties-appflow-flow-googleanalyticssourceproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`InforNexus`  <a name="cfn-appflow-flow-sourceconnectorproperties-infornexus"></a>
 Specifies the information that is required for querying Infor Nexus.   
*Required*: No  
*Type*: [InforNexusSourceProperties](aws-properties-appflow-flow-infornexussourceproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Marketo`  <a name="cfn-appflow-flow-sourceconnectorproperties-marketo"></a>
 Specifies the information that is required for querying Marketo.   
*Required*: No  
*Type*: [MarketoSourceProperties](aws-properties-appflow-flow-marketosourceproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Pardot`  <a name="cfn-appflow-flow-sourceconnectorproperties-pardot"></a>
Specifies the information that is required for querying Salesforce Pardot.  
*Required*: No  
*Type*: [PardotSourceProperties](aws-properties-appflow-flow-pardotsourceproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`S3`  <a name="cfn-appflow-flow-sourceconnectorproperties-s3"></a>
 Specifies the information that is required for querying Amazon S3.   
*Required*: No  
*Type*: [S3SourceProperties](aws-properties-appflow-flow-s3sourceproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Salesforce`  <a name="cfn-appflow-flow-sourceconnectorproperties-salesforce"></a>
 Specifies the information that is required for querying Salesforce.   
*Required*: No  
*Type*: [SalesforceSourceProperties](aws-properties-appflow-flow-salesforcesourceproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`SAPOData`  <a name="cfn-appflow-flow-sourceconnectorproperties-sapodata"></a>
 The properties that are applied when using SAPOData as a flow source.   
*Required*: No  
*Type*: [SAPODataSourceProperties](aws-properties-appflow-flow-sapodatasourceproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ServiceNow`  <a name="cfn-appflow-flow-sourceconnectorproperties-servicenow"></a>
 Specifies the information that is required for querying ServiceNow.   
*Required*: No  
*Type*: [ServiceNowSourceProperties](aws-properties-appflow-flow-servicenowsourceproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Singular`  <a name="cfn-appflow-flow-sourceconnectorproperties-singular"></a>
 Specifies the information that is required for querying Singular.   
*Required*: No  
*Type*: [SingularSourceProperties](aws-properties-appflow-flow-singularsourceproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Slack`  <a name="cfn-appflow-flow-sourceconnectorproperties-slack"></a>
 Specifies the information that is required for querying Slack.   
*Required*: No  
*Type*: [SlackSourceProperties](aws-properties-appflow-flow-slacksourceproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Trendmicro`  <a name="cfn-appflow-flow-sourceconnectorproperties-trendmicro"></a>
 Specifies the information that is required for querying Trend Micro.   
*Required*: No  
*Type*: [TrendmicroSourceProperties](aws-properties-appflow-flow-trendmicrosourceproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Veeva`  <a name="cfn-appflow-flow-sourceconnectorproperties-veeva"></a>
 Specifies the information that is required for querying Veeva.   
*Required*: No  
*Type*: [VeevaSourceProperties](aws-properties-appflow-flow-veevasourceproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Zendesk`  <a name="cfn-appflow-flow-sourceconnectorproperties-zendesk"></a>
 Specifies the information that is required for querying Zendesk.   
*Required*: No  
*Type*: [ZendeskSourceProperties](aws-properties-appflow-flow-zendesksourceproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-sourceconnectorproperties--seealso"></a>
+ [SourceConnectorProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_SourceConnectorProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow SourceFlowConfig
<a name="aws-properties-appflow-flow-sourceflowconfig"></a>

 Contains information about the configuration of the source connector used in the flow. 

## Syntax
<a name="aws-properties-appflow-flow-sourceflowconfig-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-sourceflowconfig-syntax.json"></a>

```
{
  "[ApiVersion](#cfn-appflow-flow-sourceflowconfig-apiversion)" : String,
  "[ConnectorProfileName](#cfn-appflow-flow-sourceflowconfig-connectorprofilename)" : String,
  "[ConnectorType](#cfn-appflow-flow-sourceflowconfig-connectortype)" : String,
  "[IncrementalPullConfig](#cfn-appflow-flow-sourceflowconfig-incrementalpullconfig)" : IncrementalPullConfig,
  "[SourceConnectorProperties](#cfn-appflow-flow-sourceflowconfig-sourceconnectorproperties)" : SourceConnectorProperties
}
```

### YAML
<a name="aws-properties-appflow-flow-sourceflowconfig-syntax.yaml"></a>

```
  [ApiVersion](#cfn-appflow-flow-sourceflowconfig-apiversion): String
  [ConnectorProfileName](#cfn-appflow-flow-sourceflowconfig-connectorprofilename): String
  [ConnectorType](#cfn-appflow-flow-sourceflowconfig-connectortype): String
  [IncrementalPullConfig](#cfn-appflow-flow-sourceflowconfig-incrementalpullconfig): 
    IncrementalPullConfig
  [SourceConnectorProperties](#cfn-appflow-flow-sourceflowconfig-sourceconnectorproperties): 
    SourceConnectorProperties
```

## Properties
<a name="aws-properties-appflow-flow-sourceflowconfig-properties"></a>

`ApiVersion`  <a name="cfn-appflow-flow-sourceflowconfig-apiversion"></a>
The API version of the connector when it's used as a source in the flow.  
*Required*: No  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `256`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ConnectorProfileName`  <a name="cfn-appflow-flow-sourceflowconfig-connectorprofilename"></a>
 The name of the connector profile. This name must be unique for each connector profile in the AWS account.   
*Required*: No  
*Type*: String  
*Pattern*: `[\w/!@#+=.-]+`  
*Maximum*: `256`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ConnectorType`  <a name="cfn-appflow-flow-sourceflowconfig-connectortype"></a>
 The type of connector, such as Salesforce, Amplitude, and so on.   
*Required*: Yes  
*Type*: String  
*Allowed values*: `SAPOData | Salesforce | Pardot | Singular | Slack | Redshift | S3 | Marketo | Googleanalytics | Zendesk | Servicenow | Datadog | Trendmicro | Snowflake | Dynatrace | Infornexus | Amplitude | Veeva | CustomConnector | EventBridge | Upsolver | LookoutMetrics`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`IncrementalPullConfig`  <a name="cfn-appflow-flow-sourceflowconfig-incrementalpullconfig"></a>
 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*: No  
*Type*: [IncrementalPullConfig](aws-properties-appflow-flow-incrementalpullconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`SourceConnectorProperties`  <a name="cfn-appflow-flow-sourceflowconfig-sourceconnectorproperties"></a>
 Specifies the information that is required to query a particular source connector.   
*Required*: Yes  
*Type*: [SourceConnectorProperties](aws-properties-appflow-flow-sourceconnectorproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-sourceflowconfig--seealso"></a>
+ [SourceFlowConfig](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_SourceFlowConfig.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow SuccessResponseHandlingConfig
<a name="aws-properties-appflow-flow-successresponsehandlingconfig"></a>

Determines how Amazon AppFlow handles the success response that it gets from the connector after placing data.

For example, this setting would determine where to write the response from the destination connector upon a successful insert operation.

## Syntax
<a name="aws-properties-appflow-flow-successresponsehandlingconfig-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-successresponsehandlingconfig-syntax.json"></a>

```
{
  "[BucketName](#cfn-appflow-flow-successresponsehandlingconfig-bucketname)" : String,
  "[BucketPrefix](#cfn-appflow-flow-successresponsehandlingconfig-bucketprefix)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-successresponsehandlingconfig-syntax.yaml"></a>

```
  [BucketName](#cfn-appflow-flow-successresponsehandlingconfig-bucketname): String
  [BucketPrefix](#cfn-appflow-flow-successresponsehandlingconfig-bucketprefix): String
```

## Properties
<a name="aws-properties-appflow-flow-successresponsehandlingconfig-properties"></a>

`BucketName`  <a name="cfn-appflow-flow-successresponsehandlingconfig-bucketname"></a>
The name of the Amazon S3 bucket.  
*Required*: No  
*Type*: String  
*Pattern*: `\S+`  
*Minimum*: `3`  
*Maximum*: `63`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`BucketPrefix`  <a name="cfn-appflow-flow-successresponsehandlingconfig-bucketprefix"></a>
The Amazon S3 bucket prefix.  
*Required*: No  
*Type*: String  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::AppFlow::Flow Tag
<a name="aws-properties-appflow-flow-tag"></a>

<a name="aws-properties-appflow-flow-tag-description"></a>The `Tag` property type specifies Property description not available. for an [AWS::AppFlow::Flow](aws-resource-appflow-flow.md).

## Syntax
<a name="aws-properties-appflow-flow-tag-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-tag-syntax.json"></a>

```
{
  "[Key](#cfn-appflow-flow-tag-key)" : String,
  "[Value](#cfn-appflow-flow-tag-value)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-tag-syntax.yaml"></a>

```
  [Key](#cfn-appflow-flow-tag-key): String
  [Value](#cfn-appflow-flow-tag-value): String
```

## Properties
<a name="aws-properties-appflow-flow-tag-properties"></a>

`Key`  <a name="cfn-appflow-flow-tag-key"></a>
Property description not available.  
*Required*: Yes  
*Type*: String  
*Minimum*: `1`  
*Maximum*: `128`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Value`  <a name="cfn-appflow-flow-tag-value"></a>
Property description not available.  
*Required*: Yes  
*Type*: String  
*Minimum*: `0`  
*Maximum*: `256`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::AppFlow::Flow Task
<a name="aws-properties-appflow-flow-task"></a>

 A class for modeling different type of tasks. Task implementation varies based on the `TaskType`. 

## Syntax
<a name="aws-properties-appflow-flow-task-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-task-syntax.json"></a>

```
{
  "[ConnectorOperator](#cfn-appflow-flow-task-connectoroperator)" : ConnectorOperator,
  "[DestinationField](#cfn-appflow-flow-task-destinationfield)" : String,
  "[SourceFields](#cfn-appflow-flow-task-sourcefields)" : [ String, ... ],
  "[TaskProperties](#cfn-appflow-flow-task-taskproperties)" : [ TaskPropertiesObject, ... ],
  "[TaskType](#cfn-appflow-flow-task-tasktype)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-task-syntax.yaml"></a>

```
  [ConnectorOperator](#cfn-appflow-flow-task-connectoroperator): 
    ConnectorOperator
  [DestinationField](#cfn-appflow-flow-task-destinationfield): String
  [SourceFields](#cfn-appflow-flow-task-sourcefields): 
    - String
  [TaskProperties](#cfn-appflow-flow-task-taskproperties): 
    - TaskPropertiesObject
  [TaskType](#cfn-appflow-flow-task-tasktype): String
```

## Properties
<a name="aws-properties-appflow-flow-task-properties"></a>

`ConnectorOperator`  <a name="cfn-appflow-flow-task-connectoroperator"></a>
 The operation to be performed on the provided source fields.   
*Required*: No  
*Type*: [ConnectorOperator](aws-properties-appflow-flow-connectoroperator.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`DestinationField`  <a name="cfn-appflow-flow-task-destinationfield"></a>
 A field in a destination connector, or a field value against which Amazon AppFlow validates a source field.   
*Required*: No  
*Type*: String  
*Maximum*: `256`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`SourceFields`  <a name="cfn-appflow-flow-task-sourcefields"></a>
 The source fields to which a particular task is applied.   
*Required*: Yes  
*Type*: Array of String  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`TaskProperties`  <a name="cfn-appflow-flow-task-taskproperties"></a>
 A map used to store task-related information. The execution service looks for particular information based on the `TaskType`.   
*Required*: No  
*Type*: Array of [TaskPropertiesObject](aws-properties-appflow-flow-taskpropertiesobject.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`TaskType`  <a name="cfn-appflow-flow-task-tasktype"></a>
Specifies the particular task implementation that Amazon AppFlow performs.  
*Allowed values*: `Arithmetic` \$1 `Filter` \$1 `Map` \$1 `Map_all` \$1 `Mask` \$1 `Merge` \$1 `Truncate` \$1 `Validate`  
*Required*: Yes  
*Type*: String  
*Allowed values*: `Arithmetic | Filter | Map | Map_all | Mask | Merge | Passthrough | Truncate | Validate | Partition`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-task--seealso"></a>
+ [Task](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_Task.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow TaskPropertiesObject
<a name="aws-properties-appflow-flow-taskpropertiesobject"></a>

 A map used to store task-related information. The execution service looks for particular information based on the `TaskType`. 

## Syntax
<a name="aws-properties-appflow-flow-taskpropertiesobject-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-taskpropertiesobject-syntax.json"></a>

```
{
  "[Key](#cfn-appflow-flow-taskpropertiesobject-key)" : String,
  "[Value](#cfn-appflow-flow-taskpropertiesobject-value)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-taskpropertiesobject-syntax.yaml"></a>

```
  [Key](#cfn-appflow-flow-taskpropertiesobject-key): String
  [Value](#cfn-appflow-flow-taskpropertiesobject-value): String
```

## Properties
<a name="aws-properties-appflow-flow-taskpropertiesobject-properties"></a>

`Key`  <a name="cfn-appflow-flow-taskpropertiesobject-key"></a>
 The task property key.   
*Required*: Yes  
*Type*: String  
*Allowed values*: `VALUE | VALUES | DATA_TYPE | UPPER_BOUND | LOWER_BOUND | SOURCE_DATA_TYPE | DESTINATION_DATA_TYPE | VALIDATION_ACTION | MASK_VALUE | MASK_LENGTH | TRUNCATE_LENGTH | MATH_OPERATION_FIELDS_ORDER | CONCAT_FORMAT | SUBFIELD_CATEGORY_MAP | EXCLUDE_SOURCE_FIELDS_LIST | INCLUDE_NEW_FIELDS | ORDERED_PARTITION_KEYS_LIST`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Value`  <a name="cfn-appflow-flow-taskpropertiesobject-value"></a>
 The task property value.   
*Required*: Yes  
*Type*: String  
*Pattern*: `.+`  
*Maximum*: `2048`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::AppFlow::Flow TrendmicroSourceProperties
<a name="aws-properties-appflow-flow-trendmicrosourceproperties"></a>

 The properties that are applied when using Trend Micro as a flow source. 

## Syntax
<a name="aws-properties-appflow-flow-trendmicrosourceproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-trendmicrosourceproperties-syntax.json"></a>

```
{
  "[Object](#cfn-appflow-flow-trendmicrosourceproperties-object)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-trendmicrosourceproperties-syntax.yaml"></a>

```
  [Object](#cfn-appflow-flow-trendmicrosourceproperties-object): String
```

## Properties
<a name="aws-properties-appflow-flow-trendmicrosourceproperties-properties"></a>

`Object`  <a name="cfn-appflow-flow-trendmicrosourceproperties-object"></a>
 The object specified in the Trend Micro flow source.   
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-trendmicrosourceproperties--seealso"></a>
+ [TrendmicroSourceProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_TrendmicroSourceProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow TriggerConfig
<a name="aws-properties-appflow-flow-triggerconfig"></a>

 The trigger settings that determine how and when Amazon AppFlow runs the specified flow. 

## Syntax
<a name="aws-properties-appflow-flow-triggerconfig-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-triggerconfig-syntax.json"></a>

```
{
  "[TriggerProperties](#cfn-appflow-flow-triggerconfig-triggerproperties)" : ScheduledTriggerProperties,
  "[TriggerType](#cfn-appflow-flow-triggerconfig-triggertype)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-triggerconfig-syntax.yaml"></a>

```
  [TriggerProperties](#cfn-appflow-flow-triggerconfig-triggerproperties): 
    ScheduledTriggerProperties
  [TriggerType](#cfn-appflow-flow-triggerconfig-triggertype): String
```

## Properties
<a name="aws-properties-appflow-flow-triggerconfig-properties"></a>

`TriggerProperties`  <a name="cfn-appflow-flow-triggerconfig-triggerproperties"></a>
 Specifies the configuration details of a schedule-triggered flow as defined by the user. Currently, these settings only apply to the `Scheduled` trigger type.   
*Required*: No  
*Type*: [ScheduledTriggerProperties](aws-properties-appflow-flow-scheduledtriggerproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`TriggerType`  <a name="cfn-appflow-flow-triggerconfig-triggertype"></a>
 Specifies the type of flow trigger. This can be `OnDemand`, `Scheduled`, or `Event`.   
*Required*: Yes  
*Type*: String  
*Allowed values*: `Scheduled | Event | OnDemand`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-triggerconfig--seealso"></a>
+ [TriggerConfig](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_TriggerConfig.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow UpsolverDestinationProperties
<a name="aws-properties-appflow-flow-upsolverdestinationproperties"></a>

 The properties that are applied when Upsolver is used as a destination. 

## Syntax
<a name="aws-properties-appflow-flow-upsolverdestinationproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-upsolverdestinationproperties-syntax.json"></a>

```
{
  "[BucketName](#cfn-appflow-flow-upsolverdestinationproperties-bucketname)" : String,
  "[BucketPrefix](#cfn-appflow-flow-upsolverdestinationproperties-bucketprefix)" : String,
  "[S3OutputFormatConfig](#cfn-appflow-flow-upsolverdestinationproperties-s3outputformatconfig)" : UpsolverS3OutputFormatConfig
}
```

### YAML
<a name="aws-properties-appflow-flow-upsolverdestinationproperties-syntax.yaml"></a>

```
  [BucketName](#cfn-appflow-flow-upsolverdestinationproperties-bucketname): String
  [BucketPrefix](#cfn-appflow-flow-upsolverdestinationproperties-bucketprefix): String
  [S3OutputFormatConfig](#cfn-appflow-flow-upsolverdestinationproperties-s3outputformatconfig): 
    UpsolverS3OutputFormatConfig
```

## Properties
<a name="aws-properties-appflow-flow-upsolverdestinationproperties-properties"></a>

`BucketName`  <a name="cfn-appflow-flow-upsolverdestinationproperties-bucketname"></a>
 The Upsolver Amazon S3 bucket name in which Amazon AppFlow places the transferred data.   
*Required*: Yes  
*Type*: String  
*Pattern*: `^(upsolver-appflow)\S*`  
*Minimum*: `16`  
*Maximum*: `63`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`BucketPrefix`  <a name="cfn-appflow-flow-upsolverdestinationproperties-bucketprefix"></a>
 The object key for the destination Upsolver Amazon S3 bucket in which Amazon AppFlow places the files.   
*Required*: No  
*Type*: String  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`S3OutputFormatConfig`  <a name="cfn-appflow-flow-upsolverdestinationproperties-s3outputformatconfig"></a>
 The configuration that determines how data is formatted when Upsolver is used as the flow destination.   
*Required*: Yes  
*Type*: [UpsolverS3OutputFormatConfig](aws-properties-appflow-flow-upsolvers3outputformatconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-upsolverdestinationproperties--seealso"></a>
+ [UpsolverDestinationProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_UpsolverDestinationProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow UpsolverS3OutputFormatConfig
<a name="aws-properties-appflow-flow-upsolvers3outputformatconfig"></a>

 The configuration that determines how Amazon AppFlow formats the flow output data when Upsolver is used as the destination. 

## Syntax
<a name="aws-properties-appflow-flow-upsolvers3outputformatconfig-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-upsolvers3outputformatconfig-syntax.json"></a>

```
{
  "[AggregationConfig](#cfn-appflow-flow-upsolvers3outputformatconfig-aggregationconfig)" : AggregationConfig,
  "[FileType](#cfn-appflow-flow-upsolvers3outputformatconfig-filetype)" : String,
  "[PrefixConfig](#cfn-appflow-flow-upsolvers3outputformatconfig-prefixconfig)" : PrefixConfig
}
```

### YAML
<a name="aws-properties-appflow-flow-upsolvers3outputformatconfig-syntax.yaml"></a>

```
  [AggregationConfig](#cfn-appflow-flow-upsolvers3outputformatconfig-aggregationconfig): 
    AggregationConfig
  [FileType](#cfn-appflow-flow-upsolvers3outputformatconfig-filetype): String
  [PrefixConfig](#cfn-appflow-flow-upsolvers3outputformatconfig-prefixconfig): 
    PrefixConfig
```

## Properties
<a name="aws-properties-appflow-flow-upsolvers3outputformatconfig-properties"></a>

`AggregationConfig`  <a name="cfn-appflow-flow-upsolvers3outputformatconfig-aggregationconfig"></a>
 The aggregation settings that you can use to customize the output format of your flow data.   
*Required*: No  
*Type*: [AggregationConfig](aws-properties-appflow-flow-aggregationconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`FileType`  <a name="cfn-appflow-flow-upsolvers3outputformatconfig-filetype"></a>
 Indicates the file type that Amazon AppFlow places in the Upsolver Amazon S3 bucket.   
*Required*: No  
*Type*: String  
*Allowed values*: `CSV | JSON | PARQUET`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`PrefixConfig`  <a name="cfn-appflow-flow-upsolvers3outputformatconfig-prefixconfig"></a>
Specifies elements that Amazon AppFlow includes in the file and folder names in the flow destination.  
*Required*: Yes  
*Type*: [PrefixConfig](aws-properties-appflow-flow-prefixconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-upsolvers3outputformatconfig--seealso"></a>
+ [UpsolverS3OutputFormatConfig](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_UpsolverS3OutputFormatConfig.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow VeevaSourceProperties
<a name="aws-properties-appflow-flow-veevasourceproperties"></a>

 The properties that are applied when using Veeva as a flow source. 

## Syntax
<a name="aws-properties-appflow-flow-veevasourceproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-veevasourceproperties-syntax.json"></a>

```
{
  "[DocumentType](#cfn-appflow-flow-veevasourceproperties-documenttype)" : String,
  "[IncludeAllVersions](#cfn-appflow-flow-veevasourceproperties-includeallversions)" : Boolean,
  "[IncludeRenditions](#cfn-appflow-flow-veevasourceproperties-includerenditions)" : Boolean,
  "[IncludeSourceFiles](#cfn-appflow-flow-veevasourceproperties-includesourcefiles)" : Boolean,
  "[Object](#cfn-appflow-flow-veevasourceproperties-object)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-veevasourceproperties-syntax.yaml"></a>

```
  [DocumentType](#cfn-appflow-flow-veevasourceproperties-documenttype): String
  [IncludeAllVersions](#cfn-appflow-flow-veevasourceproperties-includeallversions): Boolean
  [IncludeRenditions](#cfn-appflow-flow-veevasourceproperties-includerenditions): Boolean
  [IncludeSourceFiles](#cfn-appflow-flow-veevasourceproperties-includesourcefiles): Boolean
  [Object](#cfn-appflow-flow-veevasourceproperties-object): String
```

## Properties
<a name="aws-properties-appflow-flow-veevasourceproperties-properties"></a>

`DocumentType`  <a name="cfn-appflow-flow-veevasourceproperties-documenttype"></a>
The document type specified in the Veeva document extract flow.  
*Required*: No  
*Type*: String  
*Pattern*: `[\s\w_-]+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`IncludeAllVersions`  <a name="cfn-appflow-flow-veevasourceproperties-includeallversions"></a>
Boolean value to include All Versions of files in Veeva document extract flow.  
*Required*: No  
*Type*: Boolean  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`IncludeRenditions`  <a name="cfn-appflow-flow-veevasourceproperties-includerenditions"></a>
Boolean value to include file renditions in Veeva document extract flow.  
*Required*: No  
*Type*: Boolean  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`IncludeSourceFiles`  <a name="cfn-appflow-flow-veevasourceproperties-includesourcefiles"></a>
Boolean value to include source files in Veeva document extract flow.  
*Required*: No  
*Type*: Boolean  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Object`  <a name="cfn-appflow-flow-veevasourceproperties-object"></a>
 The object specified in the Veeva flow source.   
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-veevasourceproperties--seealso"></a>
+ [VeevaSourceProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_VeevaSourceProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::Flow ZendeskDestinationProperties
<a name="aws-properties-appflow-flow-zendeskdestinationproperties"></a>

The properties that are applied when Zendesk is used as a destination.

## Syntax
<a name="aws-properties-appflow-flow-zendeskdestinationproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-zendeskdestinationproperties-syntax.json"></a>

```
{
  "[ErrorHandlingConfig](#cfn-appflow-flow-zendeskdestinationproperties-errorhandlingconfig)" : ErrorHandlingConfig,
  "[IdFieldNames](#cfn-appflow-flow-zendeskdestinationproperties-idfieldnames)" : [ String, ... ],
  "[Object](#cfn-appflow-flow-zendeskdestinationproperties-object)" : String,
  "[WriteOperationType](#cfn-appflow-flow-zendeskdestinationproperties-writeoperationtype)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-zendeskdestinationproperties-syntax.yaml"></a>

```
  [ErrorHandlingConfig](#cfn-appflow-flow-zendeskdestinationproperties-errorhandlingconfig): 
    ErrorHandlingConfig
  [IdFieldNames](#cfn-appflow-flow-zendeskdestinationproperties-idfieldnames): 
    - String
  [Object](#cfn-appflow-flow-zendeskdestinationproperties-object): String
  [WriteOperationType](#cfn-appflow-flow-zendeskdestinationproperties-writeoperationtype): String
```

## Properties
<a name="aws-properties-appflow-flow-zendeskdestinationproperties-properties"></a>

`ErrorHandlingConfig`  <a name="cfn-appflow-flow-zendeskdestinationproperties-errorhandlingconfig"></a>
 The settings that determine how Amazon AppFlow handles an error when placing data in the destination. For example, this setting would determine if the flow should fail after one insertion error, or continue and attempt to insert every record regardless of the initial failure. `ErrorHandlingConfig` is a part of the destination connector details.   
*Required*: No  
*Type*: [ErrorHandlingConfig](aws-properties-appflow-flow-errorhandlingconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`IdFieldNames`  <a name="cfn-appflow-flow-zendeskdestinationproperties-idfieldnames"></a>
 A list of field names that can be used as an ID field when performing a write operation.   
*Required*: No  
*Type*: Array of String  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Object`  <a name="cfn-appflow-flow-zendeskdestinationproperties-object"></a>
The object specified in the Zendesk flow destination.  
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`WriteOperationType`  <a name="cfn-appflow-flow-zendeskdestinationproperties-writeoperationtype"></a>
 The possible write operations in the destination connector. When this value is not provided, this defaults to the `INSERT` operation.   
*Required*: No  
*Type*: String  
*Allowed values*: `INSERT | UPSERT | UPDATE | DELETE`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::AppFlow::Flow ZendeskSourceProperties
<a name="aws-properties-appflow-flow-zendesksourceproperties"></a>

 The properties that are applied when using Zendesk as a flow source. 

## Syntax
<a name="aws-properties-appflow-flow-zendesksourceproperties-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-appflow-flow-zendesksourceproperties-syntax.json"></a>

```
{
  "[Object](#cfn-appflow-flow-zendesksourceproperties-object)" : String
}
```

### YAML
<a name="aws-properties-appflow-flow-zendesksourceproperties-syntax.yaml"></a>

```
  [Object](#cfn-appflow-flow-zendesksourceproperties-object): String
```

## Properties
<a name="aws-properties-appflow-flow-zendesksourceproperties-properties"></a>

`Object`  <a name="cfn-appflow-flow-zendesksourceproperties-object"></a>
 The object specified in the Zendesk flow source.   
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## See also
<a name="aws-properties-appflow-flow-zendesksourceproperties--seealso"></a>
+ [ZendeskSourceProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_ZendeskSourceProperties.html) in the *Amazon AppFlow API Reference*.

