

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).

# Amazon AppFlow
<a name="AWS_AppFlow"></a>

**Resource types**
+ [AWS::AppFlow::Connector](aws-resource-appflow-connector.md)
+ [AWS::AppFlow::ConnectorProfile](aws-resource-appflow-connectorprofile.md)
+ [AWS::AppFlow::Flow](aws-resource-appflow-flow.md)

# AWS::AppFlow::Connector
<a name="aws-resource-appflow-connector"></a>

 Creates a new connector profile associated with your AWS account. There is a soft quota of 100 connector profiles per AWS account. If you need more connector profiles than this quota allows, you can submit a request to the Amazon AppFlow team through the Amazon AppFlow support channel. In each connector profile that you create, you can provide the credentials and properties for only one connector.

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

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

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

```
{
  "Type" : "AWS::AppFlow::Connector",
  "Properties" : {
      "[ConnectorLabel](#cfn-appflow-connector-connectorlabel)" : String,
      "[ConnectorProvisioningConfig](#cfn-appflow-connector-connectorprovisioningconfig)" : ConnectorProvisioningConfig,
      "[ConnectorProvisioningType](#cfn-appflow-connector-connectorprovisioningtype)" : String,
      "[Description](#cfn-appflow-connector-description)" : String
    }
}
```

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

```
Type: AWS::AppFlow::Connector
Properties:
  [ConnectorLabel](#cfn-appflow-connector-connectorlabel): String
  [ConnectorProvisioningConfig](#cfn-appflow-connector-connectorprovisioningconfig): 
    ConnectorProvisioningConfig
  [ConnectorProvisioningType](#cfn-appflow-connector-connectorprovisioningtype): String
  [Description](#cfn-appflow-connector-description): String
```

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

`ConnectorLabel`  <a name="cfn-appflow-connector-connectorlabel"></a>
The label used for registering the connector.  
*Required*: No  
*Type*: String  
*Pattern*: `[a-zA-Z0-9][\w!@#.-]+`  
*Maximum*: `512`  
*Update requires*: [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement)

`ConnectorProvisioningConfig`  <a name="cfn-appflow-connector-connectorprovisioningconfig"></a>
The configuration required for registering the connector.  
*Required*: Yes  
*Type*: [ConnectorProvisioningConfig](aws-properties-appflow-connector-connectorprovisioningconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ConnectorProvisioningType`  <a name="cfn-appflow-connector-connectorprovisioningtype"></a>
The provisioning type used to register the connector.  
*Required*: Yes  
*Type*: String  
*Pattern*: `[a-zA-Z0-9][\w!@#.-]+`  
*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)

`Description`  <a name="cfn-appflow-connector-description"></a>
A description about the connector runtime setting.  
*Required*: No  
*Type*: String  
*Pattern*: `[\s\w/!@#+=.-]*`  
*Maximum*: `2048`  
*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-connector-return-values"></a>

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

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

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

`ConnectorArn`  <a name="ConnectorArn-fn::getatt"></a>
Property description not available.

# AWS::AppFlow::Connector ConnectorProvisioningConfig
<a name="aws-properties-appflow-connector-connectorprovisioningconfig"></a>

Contains information about the configuration of the connector being registered.

## Syntax
<a name="aws-properties-appflow-connector-connectorprovisioningconfig-syntax"></a>

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

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

```
{
  "[Lambda](#cfn-appflow-connector-connectorprovisioningconfig-lambda)" : LambdaConnectorProvisioningConfig
}
```

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

```
  [Lambda](#cfn-appflow-connector-connectorprovisioningconfig-lambda): 
    LambdaConnectorProvisioningConfig
```

## Properties
<a name="aws-properties-appflow-connector-connectorprovisioningconfig-properties"></a>

`Lambda`  <a name="cfn-appflow-connector-connectorprovisioningconfig-lambda"></a>
Contains information about the configuration of the lambda which is being registered as the connector.  
*Required*: No  
*Type*: [LambdaConnectorProvisioningConfig](aws-properties-appflow-connector-lambdaconnectorprovisioningconfig.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::Connector LambdaConnectorProvisioningConfig
<a name="aws-properties-appflow-connector-lambdaconnectorprovisioningconfig"></a>

Contains information about the configuration of the lambda which is being registered as the connector.

## Syntax
<a name="aws-properties-appflow-connector-lambdaconnectorprovisioningconfig-syntax"></a>

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

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

```
{
  "[LambdaArn](#cfn-appflow-connector-lambdaconnectorprovisioningconfig-lambdaarn)" : String
}
```

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

```
  [LambdaArn](#cfn-appflow-connector-lambdaconnectorprovisioningconfig-lambdaarn): String
```

## Properties
<a name="aws-properties-appflow-connector-lambdaconnectorprovisioningconfig-properties"></a>

`LambdaArn`  <a name="cfn-appflow-connector-lambdaconnectorprovisioningconfig-lambdaarn"></a>
Lambda ARN of the connector being registered.  
*Required*: Yes  
*Type*: String  
*Pattern*: `arn:*:.*:.*:[0-9]+:.*`  
*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::ConnectorProfile
<a name="aws-resource-appflow-connectorprofile"></a>

 The `AWS::AppFlow::ConnectorProfile` resource is an Amazon AppFlow resource type that specifies the configuration profile for an instance of a connector. This includes the provided name, credentials ARN, connection-mode, and so on. The fields that are common to all types of connector profiles are explicitly specified under the `Properties` field. The rest of the connector-specific properties are specified under `Properties/ConnectorProfileConfig`. 

**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-connectorprofile-syntax"></a>

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

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

```
{
  "Type" : "AWS::AppFlow::ConnectorProfile",
  "Properties" : {
      "[ConnectionMode](#cfn-appflow-connectorprofile-connectionmode)" : String,
      "[ConnectorLabel](#cfn-appflow-connectorprofile-connectorlabel)" : String,
      "[ConnectorProfileConfig](#cfn-appflow-connectorprofile-connectorprofileconfig)" : ConnectorProfileConfig,
      "[ConnectorProfileName](#cfn-appflow-connectorprofile-connectorprofilename)" : String,
      "[ConnectorType](#cfn-appflow-connectorprofile-connectortype)" : String,
      "[KMSArn](#cfn-appflow-connectorprofile-kmsarn)" : String
    }
}
```

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

```
Type: AWS::AppFlow::ConnectorProfile
Properties:
  [ConnectionMode](#cfn-appflow-connectorprofile-connectionmode): String
  [ConnectorLabel](#cfn-appflow-connectorprofile-connectorlabel): String
  [ConnectorProfileConfig](#cfn-appflow-connectorprofile-connectorprofileconfig): 
    ConnectorProfileConfig
  [ConnectorProfileName](#cfn-appflow-connectorprofile-connectorprofilename): String
  [ConnectorType](#cfn-appflow-connectorprofile-connectortype): String
  [KMSArn](#cfn-appflow-connectorprofile-kmsarn): String
```

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

`ConnectionMode`  <a name="cfn-appflow-connectorprofile-connectionmode"></a>
 Indicates the connection mode and if it is public or private.   
*Required*: Yes  
*Type*: String  
*Allowed values*: `Public | Private`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ConnectorLabel`  <a name="cfn-appflow-connectorprofile-connectorlabel"></a>
The label for the connector profile being created.  
*Required*: No  
*Type*: String  
*Pattern*: `[\w!@#.-]+`  
*Maximum*: `256`  
*Update requires*: [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement)

`ConnectorProfileConfig`  <a name="cfn-appflow-connectorprofile-connectorprofileconfig"></a>
 Defines the connector-specific configuration and credentials.   
*Required*: No  
*Type*: [ConnectorProfileConfig](aws-properties-appflow-connectorprofile-connectorprofileconfig.md)  
*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-connectorprofile-connectorprofilename"></a>
 The name of the connector profile. The name is unique for each `ConnectorProfile` in the AWS account.   
*Required*: Yes  
*Type*: String  
*Pattern*: `[\w/!@#+=.-]+`  
*Maximum*: `256`  
*Update requires*: [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement)

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

`KMSArn`  <a name="cfn-appflow-connectorprofile-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*: [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-connectorprofile-return-values"></a>

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

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

            `{ "Ref": "myConnectorProfile" }`        

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-connectorprofile-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-connectorprofile-return-values-fn--getatt-fn--getatt"></a>

`ConnectorProfileArn`  <a name="ConnectorProfileArn-fn::getatt"></a>
The Amazon Resource Name (ARN) of the connector profile.

`CredentialsArn`  <a name="CredentialsArn-fn::getatt"></a>
The Amazon Resource Name (ARN) of the connector profile credentials.

## See also
<a name="aws-resource-appflow-connectorprofile--seealso"></a>
+ [CreateConnectorProfile](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_CreateConnectorProfile.html) in the *Amazon AppFlow API Reference*.
+ [DescribeConnectorProfiles](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_DescribeConnectorProfiles.html) in the *Amazon AppFlow API Reference*.
+ [DeleteConnectorProfile](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_DeleteConnectorProfile.html) in the *Amazon AppFlow API Reference*.
+ [UpdateConnectorProfile](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_UpdateConnectorProfile.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::ConnectorProfile AmplitudeConnectorProfileCredentials
<a name="aws-properties-appflow-connectorprofile-amplitudeconnectorprofilecredentials"></a>

 The connector-specific credentials required when using Amplitude. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-amplitudeconnectorprofilecredentials-syntax"></a>

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

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

```
{
  "[ApiKey](#cfn-appflow-connectorprofile-amplitudeconnectorprofilecredentials-apikey)" : String,
  "[SecretKey](#cfn-appflow-connectorprofile-amplitudeconnectorprofilecredentials-secretkey)" : String
}
```

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

```
  [ApiKey](#cfn-appflow-connectorprofile-amplitudeconnectorprofilecredentials-apikey): String
  [SecretKey](#cfn-appflow-connectorprofile-amplitudeconnectorprofilecredentials-secretkey): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-amplitudeconnectorprofilecredentials-properties"></a>

`ApiKey`  <a name="cfn-appflow-connectorprofile-amplitudeconnectorprofilecredentials-apikey"></a>
 A unique alphanumeric identifier used to authenticate a user, developer, or calling program to your API.   
*Required*: Yes  
*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)

`SecretKey`  <a name="cfn-appflow-connectorprofile-amplitudeconnectorprofilecredentials-secretkey"></a>
 The Secret Access Key portion of the credentials.   
*Required*: Yes  
*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)

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



# AWS::AppFlow::ConnectorProfile ApiKeyCredentials
<a name="aws-properties-appflow-connectorprofile-apikeycredentials"></a>

The API key credentials required for API key authentication.

## Syntax
<a name="aws-properties-appflow-connectorprofile-apikeycredentials-syntax"></a>

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

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

```
{
  "[ApiKey](#cfn-appflow-connectorprofile-apikeycredentials-apikey)" : String,
  "[ApiSecretKey](#cfn-appflow-connectorprofile-apikeycredentials-apisecretkey)" : String
}
```

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

```
  [ApiKey](#cfn-appflow-connectorprofile-apikeycredentials-apikey): String
  [ApiSecretKey](#cfn-appflow-connectorprofile-apikeycredentials-apisecretkey): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-apikeycredentials-properties"></a>

`ApiKey`  <a name="cfn-appflow-connectorprofile-apikeycredentials-apikey"></a>
The API key required for API key authentication.  
*Required*: Yes  
*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)

`ApiSecretKey`  <a name="cfn-appflow-connectorprofile-apikeycredentials-apisecretkey"></a>
The API secret key required for API key authentication.  
*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)

# AWS::AppFlow::ConnectorProfile BasicAuthCredentials
<a name="aws-properties-appflow-connectorprofile-basicauthcredentials"></a>

 The basic auth credentials required for basic authentication. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-basicauthcredentials-syntax"></a>

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

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

```
{
  "[Password](#cfn-appflow-connectorprofile-basicauthcredentials-password)" : String,
  "[Username](#cfn-appflow-connectorprofile-basicauthcredentials-username)" : String
}
```

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

```
  [Password](#cfn-appflow-connectorprofile-basicauthcredentials-password): String
  [Username](#cfn-appflow-connectorprofile-basicauthcredentials-username): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-basicauthcredentials-properties"></a>

`Password`  <a name="cfn-appflow-connectorprofile-basicauthcredentials-password"></a>
 The password to use to connect to a resource.  
*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)

`Username`  <a name="cfn-appflow-connectorprofile-basicauthcredentials-username"></a>
 The username to use to connect to a resource.   
*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::ConnectorProfile ConnectorOAuthRequest
<a name="aws-properties-appflow-connectorprofile-connectoroauthrequest"></a>

 Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-connectoroauthrequest-syntax"></a>

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

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

```
{
  "[AuthCode](#cfn-appflow-connectorprofile-connectoroauthrequest-authcode)" : String,
  "[RedirectUri](#cfn-appflow-connectorprofile-connectoroauthrequest-redirecturi)" : String
}
```

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

```
  [AuthCode](#cfn-appflow-connectorprofile-connectoroauthrequest-authcode): String
  [RedirectUri](#cfn-appflow-connectorprofile-connectoroauthrequest-redirecturi): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-connectoroauthrequest-properties"></a>

`AuthCode`  <a name="cfn-appflow-connectorprofile-connectoroauthrequest-authcode"></a>
 The code provided by the connector when it has been authenticated via the connected app.   
*Required*: No  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `4096`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`RedirectUri`  <a name="cfn-appflow-connectorprofile-connectoroauthrequest-redirecturi"></a>
 The URL to which the authentication server redirects the browser after authorization has been granted.   
*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)

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



# AWS::AppFlow::ConnectorProfile ConnectorProfileConfig
<a name="aws-properties-appflow-connectorprofile-connectorprofileconfig"></a>

 Defines the connector-specific configuration and credentials for the connector profile. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-connectorprofileconfig-syntax"></a>

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

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

```
{
  "[ConnectorProfileCredentials](#cfn-appflow-connectorprofile-connectorprofileconfig-connectorprofilecredentials)" : ConnectorProfileCredentials,
  "[ConnectorProfileProperties](#cfn-appflow-connectorprofile-connectorprofileconfig-connectorprofileproperties)" : ConnectorProfileProperties
}
```

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

```
  [ConnectorProfileCredentials](#cfn-appflow-connectorprofile-connectorprofileconfig-connectorprofilecredentials): 
    ConnectorProfileCredentials
  [ConnectorProfileProperties](#cfn-appflow-connectorprofile-connectorprofileconfig-connectorprofileproperties): 
    ConnectorProfileProperties
```

## Properties
<a name="aws-properties-appflow-connectorprofile-connectorprofileconfig-properties"></a>

`ConnectorProfileCredentials`  <a name="cfn-appflow-connectorprofile-connectorprofileconfig-connectorprofilecredentials"></a>
 The connector-specific credentials required by each connector.   
*Required*: No  
*Type*: [ConnectorProfileCredentials](aws-properties-appflow-connectorprofile-connectorprofilecredentials.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ConnectorProfileProperties`  <a name="cfn-appflow-connectorprofile-connectorprofileconfig-connectorprofileproperties"></a>
 The connector-specific properties of the profile configuration.   
*Required*: No  
*Type*: [ConnectorProfileProperties](aws-properties-appflow-connectorprofile-connectorprofileproperties.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-connectorprofile-connectorprofileconfig--seealso"></a>
+ [ConnectorProfileConfig](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_ConnectorProfileConfig.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::ConnectorProfile ConnectorProfileCredentials
<a name="aws-properties-appflow-connectorprofile-connectorprofilecredentials"></a>

 The connector-specific credentials required by a connector. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-connectorprofilecredentials-syntax"></a>

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

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

```
{
  "[Amplitude](#cfn-appflow-connectorprofile-connectorprofilecredentials-amplitude)" : AmplitudeConnectorProfileCredentials,
  "[CustomConnector](#cfn-appflow-connectorprofile-connectorprofilecredentials-customconnector)" : CustomConnectorProfileCredentials,
  "[Datadog](#cfn-appflow-connectorprofile-connectorprofilecredentials-datadog)" : DatadogConnectorProfileCredentials,
  "[Dynatrace](#cfn-appflow-connectorprofile-connectorprofilecredentials-dynatrace)" : DynatraceConnectorProfileCredentials,
  "[GoogleAnalytics](#cfn-appflow-connectorprofile-connectorprofilecredentials-googleanalytics)" : GoogleAnalyticsConnectorProfileCredentials,
  "[InforNexus](#cfn-appflow-connectorprofile-connectorprofilecredentials-infornexus)" : InforNexusConnectorProfileCredentials,
  "[Marketo](#cfn-appflow-connectorprofile-connectorprofilecredentials-marketo)" : MarketoConnectorProfileCredentials,
  "[Pardot](#cfn-appflow-connectorprofile-connectorprofilecredentials-pardot)" : PardotConnectorProfileCredentials,
  "[Redshift](#cfn-appflow-connectorprofile-connectorprofilecredentials-redshift)" : RedshiftConnectorProfileCredentials,
  "[Salesforce](#cfn-appflow-connectorprofile-connectorprofilecredentials-salesforce)" : SalesforceConnectorProfileCredentials,
  "[SAPOData](#cfn-appflow-connectorprofile-connectorprofilecredentials-sapodata)" : SAPODataConnectorProfileCredentials,
  "[ServiceNow](#cfn-appflow-connectorprofile-connectorprofilecredentials-servicenow)" : ServiceNowConnectorProfileCredentials,
  "[Singular](#cfn-appflow-connectorprofile-connectorprofilecredentials-singular)" : SingularConnectorProfileCredentials,
  "[Slack](#cfn-appflow-connectorprofile-connectorprofilecredentials-slack)" : SlackConnectorProfileCredentials,
  "[Snowflake](#cfn-appflow-connectorprofile-connectorprofilecredentials-snowflake)" : SnowflakeConnectorProfileCredentials,
  "[Trendmicro](#cfn-appflow-connectorprofile-connectorprofilecredentials-trendmicro)" : TrendmicroConnectorProfileCredentials,
  "[Veeva](#cfn-appflow-connectorprofile-connectorprofilecredentials-veeva)" : VeevaConnectorProfileCredentials,
  "[Zendesk](#cfn-appflow-connectorprofile-connectorprofilecredentials-zendesk)" : ZendeskConnectorProfileCredentials
}
```

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

```
  [Amplitude](#cfn-appflow-connectorprofile-connectorprofilecredentials-amplitude): 
    AmplitudeConnectorProfileCredentials
  [CustomConnector](#cfn-appflow-connectorprofile-connectorprofilecredentials-customconnector): 
    CustomConnectorProfileCredentials
  [Datadog](#cfn-appflow-connectorprofile-connectorprofilecredentials-datadog): 
    DatadogConnectorProfileCredentials
  [Dynatrace](#cfn-appflow-connectorprofile-connectorprofilecredentials-dynatrace): 
    DynatraceConnectorProfileCredentials
  [GoogleAnalytics](#cfn-appflow-connectorprofile-connectorprofilecredentials-googleanalytics): 
    GoogleAnalyticsConnectorProfileCredentials
  [InforNexus](#cfn-appflow-connectorprofile-connectorprofilecredentials-infornexus): 
    InforNexusConnectorProfileCredentials
  [Marketo](#cfn-appflow-connectorprofile-connectorprofilecredentials-marketo): 
    MarketoConnectorProfileCredentials
  [Pardot](#cfn-appflow-connectorprofile-connectorprofilecredentials-pardot): 
    PardotConnectorProfileCredentials
  [Redshift](#cfn-appflow-connectorprofile-connectorprofilecredentials-redshift): 
    RedshiftConnectorProfileCredentials
  [Salesforce](#cfn-appflow-connectorprofile-connectorprofilecredentials-salesforce): 
    SalesforceConnectorProfileCredentials
  [SAPOData](#cfn-appflow-connectorprofile-connectorprofilecredentials-sapodata): 
    SAPODataConnectorProfileCredentials
  [ServiceNow](#cfn-appflow-connectorprofile-connectorprofilecredentials-servicenow): 
    ServiceNowConnectorProfileCredentials
  [Singular](#cfn-appflow-connectorprofile-connectorprofilecredentials-singular): 
    SingularConnectorProfileCredentials
  [Slack](#cfn-appflow-connectorprofile-connectorprofilecredentials-slack): 
    SlackConnectorProfileCredentials
  [Snowflake](#cfn-appflow-connectorprofile-connectorprofilecredentials-snowflake): 
    SnowflakeConnectorProfileCredentials
  [Trendmicro](#cfn-appflow-connectorprofile-connectorprofilecredentials-trendmicro): 
    TrendmicroConnectorProfileCredentials
  [Veeva](#cfn-appflow-connectorprofile-connectorprofilecredentials-veeva): 
    VeevaConnectorProfileCredentials
  [Zendesk](#cfn-appflow-connectorprofile-connectorprofilecredentials-zendesk): 
    ZendeskConnectorProfileCredentials
```

## Properties
<a name="aws-properties-appflow-connectorprofile-connectorprofilecredentials-properties"></a>

`Amplitude`  <a name="cfn-appflow-connectorprofile-connectorprofilecredentials-amplitude"></a>
 The connector-specific credentials required when using Amplitude.   
*Required*: No  
*Type*: [AmplitudeConnectorProfileCredentials](aws-properties-appflow-connectorprofile-amplitudeconnectorprofilecredentials.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-connectorprofile-connectorprofilecredentials-customconnector"></a>
The connector-specific profile credentials that are required when using the custom connector.  
*Required*: No  
*Type*: [CustomConnectorProfileCredentials](aws-properties-appflow-connectorprofile-customconnectorprofilecredentials.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-connectorprofile-connectorprofilecredentials-datadog"></a>
 The connector-specific credentials required when using Datadog.   
*Required*: No  
*Type*: [DatadogConnectorProfileCredentials](aws-properties-appflow-connectorprofile-datadogconnectorprofilecredentials.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-connectorprofile-connectorprofilecredentials-dynatrace"></a>
 The connector-specific credentials required when using Dynatrace.   
*Required*: No  
*Type*: [DynatraceConnectorProfileCredentials](aws-properties-appflow-connectorprofile-dynatraceconnectorprofilecredentials.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-connectorprofile-connectorprofilecredentials-googleanalytics"></a>
 The connector-specific credentials required when using Google Analytics.   
*Required*: No  
*Type*: [GoogleAnalyticsConnectorProfileCredentials](aws-properties-appflow-connectorprofile-googleanalyticsconnectorprofilecredentials.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-connectorprofile-connectorprofilecredentials-infornexus"></a>
 The connector-specific credentials required when using Infor Nexus.   
*Required*: No  
*Type*: [InforNexusConnectorProfileCredentials](aws-properties-appflow-connectorprofile-infornexusconnectorprofilecredentials.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-connectorprofile-connectorprofilecredentials-marketo"></a>
 The connector-specific credentials required when using Marketo.   
*Required*: No  
*Type*: [MarketoConnectorProfileCredentials](aws-properties-appflow-connectorprofile-marketoconnectorprofilecredentials.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-connectorprofile-connectorprofilecredentials-pardot"></a>
The connector-specific credentials required when using Salesforce Pardot.  
*Required*: No  
*Type*: [PardotConnectorProfileCredentials](aws-properties-appflow-connectorprofile-pardotconnectorprofilecredentials.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-connectorprofile-connectorprofilecredentials-redshift"></a>
 The connector-specific credentials required when using Amazon Redshift.   
*Required*: No  
*Type*: [RedshiftConnectorProfileCredentials](aws-properties-appflow-connectorprofile-redshiftconnectorprofilecredentials.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-connectorprofile-connectorprofilecredentials-salesforce"></a>
 The connector-specific credentials required when using Salesforce.   
*Required*: No  
*Type*: [SalesforceConnectorProfileCredentials](aws-properties-appflow-connectorprofile-salesforceconnectorprofilecredentials.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-connectorprofile-connectorprofilecredentials-sapodata"></a>
 The connector-specific profile credentials required when using SAPOData.   
*Required*: No  
*Type*: [SAPODataConnectorProfileCredentials](aws-properties-appflow-connectorprofile-sapodataconnectorprofilecredentials.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-connectorprofile-connectorprofilecredentials-servicenow"></a>
 The connector-specific credentials required when using ServiceNow.   
*Required*: No  
*Type*: [ServiceNowConnectorProfileCredentials](aws-properties-appflow-connectorprofile-servicenowconnectorprofilecredentials.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-connectorprofile-connectorprofilecredentials-singular"></a>
 The connector-specific credentials required when using Singular.   
*Required*: No  
*Type*: [SingularConnectorProfileCredentials](aws-properties-appflow-connectorprofile-singularconnectorprofilecredentials.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-connectorprofile-connectorprofilecredentials-slack"></a>
 The connector-specific credentials required when using Slack.   
*Required*: No  
*Type*: [SlackConnectorProfileCredentials](aws-properties-appflow-connectorprofile-slackconnectorprofilecredentials.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-connectorprofile-connectorprofilecredentials-snowflake"></a>
 The connector-specific credentials required when using Snowflake.   
*Required*: No  
*Type*: [SnowflakeConnectorProfileCredentials](aws-properties-appflow-connectorprofile-snowflakeconnectorprofilecredentials.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-connectorprofile-connectorprofilecredentials-trendmicro"></a>
 The connector-specific credentials required when using Trend Micro.   
*Required*: No  
*Type*: [TrendmicroConnectorProfileCredentials](aws-properties-appflow-connectorprofile-trendmicroconnectorprofilecredentials.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-connectorprofile-connectorprofilecredentials-veeva"></a>
 The connector-specific credentials required when using Veeva.   
*Required*: No  
*Type*: [VeevaConnectorProfileCredentials](aws-properties-appflow-connectorprofile-veevaconnectorprofilecredentials.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-connectorprofile-connectorprofilecredentials-zendesk"></a>
 The connector-specific credentials required when using Zendesk.   
*Required*: No  
*Type*: [ZendeskConnectorProfileCredentials](aws-properties-appflow-connectorprofile-zendeskconnectorprofilecredentials.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-connectorprofile-connectorprofilecredentials--seealso"></a>
+ [ConnectorProfileCredentials](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_ConnectorProfileCredentials.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::ConnectorProfile ConnectorProfileProperties
<a name="aws-properties-appflow-connectorprofile-connectorprofileproperties"></a>

 The connector-specific profile properties required by each connector. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-connectorprofileproperties-syntax"></a>

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

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

```
{
  "[CustomConnector](#cfn-appflow-connectorprofile-connectorprofileproperties-customconnector)" : CustomConnectorProfileProperties,
  "[Datadog](#cfn-appflow-connectorprofile-connectorprofileproperties-datadog)" : DatadogConnectorProfileProperties,
  "[Dynatrace](#cfn-appflow-connectorprofile-connectorprofileproperties-dynatrace)" : DynatraceConnectorProfileProperties,
  "[InforNexus](#cfn-appflow-connectorprofile-connectorprofileproperties-infornexus)" : InforNexusConnectorProfileProperties,
  "[Marketo](#cfn-appflow-connectorprofile-connectorprofileproperties-marketo)" : MarketoConnectorProfileProperties,
  "[Pardot](#cfn-appflow-connectorprofile-connectorprofileproperties-pardot)" : PardotConnectorProfileProperties,
  "[Redshift](#cfn-appflow-connectorprofile-connectorprofileproperties-redshift)" : RedshiftConnectorProfileProperties,
  "[Salesforce](#cfn-appflow-connectorprofile-connectorprofileproperties-salesforce)" : SalesforceConnectorProfileProperties,
  "[SAPOData](#cfn-appflow-connectorprofile-connectorprofileproperties-sapodata)" : SAPODataConnectorProfileProperties,
  "[ServiceNow](#cfn-appflow-connectorprofile-connectorprofileproperties-servicenow)" : ServiceNowConnectorProfileProperties,
  "[Slack](#cfn-appflow-connectorprofile-connectorprofileproperties-slack)" : SlackConnectorProfileProperties,
  "[Snowflake](#cfn-appflow-connectorprofile-connectorprofileproperties-snowflake)" : SnowflakeConnectorProfileProperties,
  "[Veeva](#cfn-appflow-connectorprofile-connectorprofileproperties-veeva)" : VeevaConnectorProfileProperties,
  "[Zendesk](#cfn-appflow-connectorprofile-connectorprofileproperties-zendesk)" : ZendeskConnectorProfileProperties
}
```

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

```
  [CustomConnector](#cfn-appflow-connectorprofile-connectorprofileproperties-customconnector): 
    CustomConnectorProfileProperties
  [Datadog](#cfn-appflow-connectorprofile-connectorprofileproperties-datadog): 
    DatadogConnectorProfileProperties
  [Dynatrace](#cfn-appflow-connectorprofile-connectorprofileproperties-dynatrace): 
    DynatraceConnectorProfileProperties
  [InforNexus](#cfn-appflow-connectorprofile-connectorprofileproperties-infornexus): 
    InforNexusConnectorProfileProperties
  [Marketo](#cfn-appflow-connectorprofile-connectorprofileproperties-marketo): 
    MarketoConnectorProfileProperties
  [Pardot](#cfn-appflow-connectorprofile-connectorprofileproperties-pardot): 
    PardotConnectorProfileProperties
  [Redshift](#cfn-appflow-connectorprofile-connectorprofileproperties-redshift): 
    RedshiftConnectorProfileProperties
  [Salesforce](#cfn-appflow-connectorprofile-connectorprofileproperties-salesforce): 
    SalesforceConnectorProfileProperties
  [SAPOData](#cfn-appflow-connectorprofile-connectorprofileproperties-sapodata): 
    SAPODataConnectorProfileProperties
  [ServiceNow](#cfn-appflow-connectorprofile-connectorprofileproperties-servicenow): 
    ServiceNowConnectorProfileProperties
  [Slack](#cfn-appflow-connectorprofile-connectorprofileproperties-slack): 
    SlackConnectorProfileProperties
  [Snowflake](#cfn-appflow-connectorprofile-connectorprofileproperties-snowflake): 
    SnowflakeConnectorProfileProperties
  [Veeva](#cfn-appflow-connectorprofile-connectorprofileproperties-veeva): 
    VeevaConnectorProfileProperties
  [Zendesk](#cfn-appflow-connectorprofile-connectorprofileproperties-zendesk): 
    ZendeskConnectorProfileProperties
```

## Properties
<a name="aws-properties-appflow-connectorprofile-connectorprofileproperties-properties"></a>

`CustomConnector`  <a name="cfn-appflow-connectorprofile-connectorprofileproperties-customconnector"></a>
The properties required by the custom connector.  
*Required*: No  
*Type*: [CustomConnectorProfileProperties](aws-properties-appflow-connectorprofile-customconnectorprofileproperties.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-connectorprofile-connectorprofileproperties-datadog"></a>
 The connector-specific properties required by Datadog.   
*Required*: No  
*Type*: [DatadogConnectorProfileProperties](aws-properties-appflow-connectorprofile-datadogconnectorprofileproperties.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-connectorprofile-connectorprofileproperties-dynatrace"></a>
 The connector-specific properties required by Dynatrace.   
*Required*: No  
*Type*: [DynatraceConnectorProfileProperties](aws-properties-appflow-connectorprofile-dynatraceconnectorprofileproperties.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-connectorprofile-connectorprofileproperties-infornexus"></a>
 The connector-specific properties required by Infor Nexus.   
*Required*: No  
*Type*: [InforNexusConnectorProfileProperties](aws-properties-appflow-connectorprofile-infornexusconnectorprofileproperties.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-connectorprofile-connectorprofileproperties-marketo"></a>
 The connector-specific properties required by Marketo.   
*Required*: No  
*Type*: [MarketoConnectorProfileProperties](aws-properties-appflow-connectorprofile-marketoconnectorprofileproperties.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-connectorprofile-connectorprofileproperties-pardot"></a>
The connector-specific properties required by Salesforce Pardot.  
*Required*: No  
*Type*: [PardotConnectorProfileProperties](aws-properties-appflow-connectorprofile-pardotconnectorprofileproperties.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-connectorprofile-connectorprofileproperties-redshift"></a>
 The connector-specific properties required by Amazon Redshift.   
*Required*: No  
*Type*: [RedshiftConnectorProfileProperties](aws-properties-appflow-connectorprofile-redshiftconnectorprofileproperties.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-connectorprofile-connectorprofileproperties-salesforce"></a>
 The connector-specific properties required by Salesforce.   
*Required*: No  
*Type*: [SalesforceConnectorProfileProperties](aws-properties-appflow-connectorprofile-salesforceconnectorprofileproperties.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-connectorprofile-connectorprofileproperties-sapodata"></a>
 The connector-specific profile properties required when using SAPOData.   
*Required*: No  
*Type*: [SAPODataConnectorProfileProperties](aws-properties-appflow-connectorprofile-sapodataconnectorprofileproperties.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-connectorprofile-connectorprofileproperties-servicenow"></a>
 The connector-specific properties required by serviceNow.   
*Required*: No  
*Type*: [ServiceNowConnectorProfileProperties](aws-properties-appflow-connectorprofile-servicenowconnectorprofileproperties.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-connectorprofile-connectorprofileproperties-slack"></a>
 The connector-specific properties required by Slack.   
*Required*: No  
*Type*: [SlackConnectorProfileProperties](aws-properties-appflow-connectorprofile-slackconnectorprofileproperties.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-connectorprofile-connectorprofileproperties-snowflake"></a>
 The connector-specific properties required by Snowflake.   
*Required*: No  
*Type*: [SnowflakeConnectorProfileProperties](aws-properties-appflow-connectorprofile-snowflakeconnectorprofileproperties.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-connectorprofile-connectorprofileproperties-veeva"></a>
 The connector-specific properties required by Veeva.   
*Required*: No  
*Type*: [VeevaConnectorProfileProperties](aws-properties-appflow-connectorprofile-veevaconnectorprofileproperties.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-connectorprofile-connectorprofileproperties-zendesk"></a>
 The connector-specific properties required by Zendesk.   
*Required*: No  
*Type*: [ZendeskConnectorProfileProperties](aws-properties-appflow-connectorprofile-zendeskconnectorprofileproperties.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-connectorprofile-connectorprofileproperties--seealso"></a>
+ [ConnectorProfileProperties](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_ConnectorProfileProperties.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::ConnectorProfile CustomAuthCredentials
<a name="aws-properties-appflow-connectorprofile-customauthcredentials"></a>

The custom credentials required for custom authentication.

## Syntax
<a name="aws-properties-appflow-connectorprofile-customauthcredentials-syntax"></a>

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

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

```
{
  "[CredentialsMap](#cfn-appflow-connectorprofile-customauthcredentials-credentialsmap)" : {Key: Value, ...},
  "[CustomAuthenticationType](#cfn-appflow-connectorprofile-customauthcredentials-customauthenticationtype)" : String
}
```

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

```
  [CredentialsMap](#cfn-appflow-connectorprofile-customauthcredentials-credentialsmap): 
    Key: Value
  [CustomAuthenticationType](#cfn-appflow-connectorprofile-customauthcredentials-customauthenticationtype): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-customauthcredentials-properties"></a>

`CredentialsMap`  <a name="cfn-appflow-connectorprofile-customauthcredentials-credentialsmap"></a>
A map that holds custom authentication credentials.  
*Required*: No  
*Type*: Object of String  
*Pattern*: `^[\w]{1,128}$`  
*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)

`CustomAuthenticationType`  <a name="cfn-appflow-connectorprofile-customauthcredentials-customauthenticationtype"></a>
The custom authentication type that the connector uses.  
*Required*: Yes  
*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)

# AWS::AppFlow::ConnectorProfile CustomConnectorProfileCredentials
<a name="aws-properties-appflow-connectorprofile-customconnectorprofilecredentials"></a>

The connector-specific profile credentials that are required when using the custom connector.

## Syntax
<a name="aws-properties-appflow-connectorprofile-customconnectorprofilecredentials-syntax"></a>

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

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

```
{
  "[ApiKey](#cfn-appflow-connectorprofile-customconnectorprofilecredentials-apikey)" : ApiKeyCredentials,
  "[AuthenticationType](#cfn-appflow-connectorprofile-customconnectorprofilecredentials-authenticationtype)" : String,
  "[Basic](#cfn-appflow-connectorprofile-customconnectorprofilecredentials-basic)" : BasicAuthCredentials,
  "[Custom](#cfn-appflow-connectorprofile-customconnectorprofilecredentials-custom)" : CustomAuthCredentials,
  "[Oauth2](#cfn-appflow-connectorprofile-customconnectorprofilecredentials-oauth2)" : OAuth2Credentials
}
```

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

```
  [ApiKey](#cfn-appflow-connectorprofile-customconnectorprofilecredentials-apikey): 
    ApiKeyCredentials
  [AuthenticationType](#cfn-appflow-connectorprofile-customconnectorprofilecredentials-authenticationtype): String
  [Basic](#cfn-appflow-connectorprofile-customconnectorprofilecredentials-basic): 
    BasicAuthCredentials
  [Custom](#cfn-appflow-connectorprofile-customconnectorprofilecredentials-custom): 
    CustomAuthCredentials
  [Oauth2](#cfn-appflow-connectorprofile-customconnectorprofilecredentials-oauth2): 
    OAuth2Credentials
```

## Properties
<a name="aws-properties-appflow-connectorprofile-customconnectorprofilecredentials-properties"></a>

`ApiKey`  <a name="cfn-appflow-connectorprofile-customconnectorprofilecredentials-apikey"></a>
The API keys required for the authentication of the user.  
*Required*: No  
*Type*: [ApiKeyCredentials](aws-properties-appflow-connectorprofile-apikeycredentials.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`AuthenticationType`  <a name="cfn-appflow-connectorprofile-customconnectorprofilecredentials-authenticationtype"></a>
The authentication type that the custom connector uses for authenticating while creating a connector profile.  
*Required*: Yes  
*Type*: String  
*Allowed values*: `OAUTH2 | APIKEY | BASIC | CUSTOM`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Basic`  <a name="cfn-appflow-connectorprofile-customconnectorprofilecredentials-basic"></a>
The basic credentials that are required for the authentication of the user.  
*Required*: No  
*Type*: [BasicAuthCredentials](aws-properties-appflow-connectorprofile-basicauthcredentials.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Custom`  <a name="cfn-appflow-connectorprofile-customconnectorprofilecredentials-custom"></a>
If the connector uses the custom authentication mechanism, this holds the required credentials.  
*Required*: No  
*Type*: [CustomAuthCredentials](aws-properties-appflow-connectorprofile-customauthcredentials.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Oauth2`  <a name="cfn-appflow-connectorprofile-customconnectorprofilecredentials-oauth2"></a>
The OAuth 2.0 credentials required for the authentication of the user.  
*Required*: No  
*Type*: [OAuth2Credentials](aws-properties-appflow-connectorprofile-oauth2credentials.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::ConnectorProfile CustomConnectorProfileProperties
<a name="aws-properties-appflow-connectorprofile-customconnectorprofileproperties"></a>

The profile properties required by the custom connector.

## Syntax
<a name="aws-properties-appflow-connectorprofile-customconnectorprofileproperties-syntax"></a>

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

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

```
{
  "[OAuth2Properties](#cfn-appflow-connectorprofile-customconnectorprofileproperties-oauth2properties)" : OAuth2Properties,
  "[ProfileProperties](#cfn-appflow-connectorprofile-customconnectorprofileproperties-profileproperties)" : {Key: Value, ...}
}
```

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

```
  [OAuth2Properties](#cfn-appflow-connectorprofile-customconnectorprofileproperties-oauth2properties): 
    OAuth2Properties
  [ProfileProperties](#cfn-appflow-connectorprofile-customconnectorprofileproperties-profileproperties): 
    Key: Value
```

## Properties
<a name="aws-properties-appflow-connectorprofile-customconnectorprofileproperties-properties"></a>

`OAuth2Properties`  <a name="cfn-appflow-connectorprofile-customconnectorprofileproperties-oauth2properties"></a>
The OAuth 2.0 properties required for OAuth 2.0 authentication.  
*Required*: No  
*Type*: [OAuth2Properties](aws-properties-appflow-connectorprofile-oauth2properties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ProfileProperties`  <a name="cfn-appflow-connectorprofile-customconnectorprofileproperties-profileproperties"></a>
A map of properties that are required to create a profile for the custom connector.  
*Required*: No  
*Type*: Object of String  
*Pattern*: `^[\w]{1,256}$`  
*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)

# AWS::AppFlow::ConnectorProfile DatadogConnectorProfileCredentials
<a name="aws-properties-appflow-connectorprofile-datadogconnectorprofilecredentials"></a>

 The connector-specific credentials required by Datadog. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-datadogconnectorprofilecredentials-syntax"></a>

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

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

```
{
  "[ApiKey](#cfn-appflow-connectorprofile-datadogconnectorprofilecredentials-apikey)" : String,
  "[ApplicationKey](#cfn-appflow-connectorprofile-datadogconnectorprofilecredentials-applicationkey)" : String
}
```

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

```
  [ApiKey](#cfn-appflow-connectorprofile-datadogconnectorprofilecredentials-apikey): String
  [ApplicationKey](#cfn-appflow-connectorprofile-datadogconnectorprofilecredentials-applicationkey): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-datadogconnectorprofilecredentials-properties"></a>

`ApiKey`  <a name="cfn-appflow-connectorprofile-datadogconnectorprofilecredentials-apikey"></a>
 A unique alphanumeric identifier used to authenticate a user, developer, or calling program to your API.   
*Required*: Yes  
*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)

`ApplicationKey`  <a name="cfn-appflow-connectorprofile-datadogconnectorprofilecredentials-applicationkey"></a>
 Application keys, in conjunction with your API key, give you full access to Datadog’s programmatic API. Application keys are associated with the user account that created them. The application key is used to log all requests made to the API.   
*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-connectorprofile-datadogconnectorprofilecredentials--seealso"></a>
+ [DatadogConnectorProfileCredentials](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_DatadogConnectorProfileCredentials.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::ConnectorProfile DatadogConnectorProfileProperties
<a name="aws-properties-appflow-connectorprofile-datadogconnectorprofileproperties"></a>

 The connector-specific profile properties required by Datadog. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-datadogconnectorprofileproperties-syntax"></a>

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

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

```
{
  "[InstanceUrl](#cfn-appflow-connectorprofile-datadogconnectorprofileproperties-instanceurl)" : String
}
```

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

```
  [InstanceUrl](#cfn-appflow-connectorprofile-datadogconnectorprofileproperties-instanceurl): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-datadogconnectorprofileproperties-properties"></a>

`InstanceUrl`  <a name="cfn-appflow-connectorprofile-datadogconnectorprofileproperties-instanceurl"></a>
 The location of the Datadog resource.   
*Required*: Yes  
*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)

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



# AWS::AppFlow::ConnectorProfile DynatraceConnectorProfileCredentials
<a name="aws-properties-appflow-connectorprofile-dynatraceconnectorprofilecredentials"></a>

 The connector-specific profile credentials required by Dynatrace. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-dynatraceconnectorprofilecredentials-syntax"></a>

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

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

```
{
  "[ApiToken](#cfn-appflow-connectorprofile-dynatraceconnectorprofilecredentials-apitoken)" : String
}
```

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

```
  [ApiToken](#cfn-appflow-connectorprofile-dynatraceconnectorprofilecredentials-apitoken): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-dynatraceconnectorprofilecredentials-properties"></a>

`ApiToken`  <a name="cfn-appflow-connectorprofile-dynatraceconnectorprofilecredentials-apitoken"></a>
 The API tokens used by Dynatrace API to authenticate various API calls.   
*Required*: Yes  
*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)

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



# AWS::AppFlow::ConnectorProfile DynatraceConnectorProfileProperties
<a name="aws-properties-appflow-connectorprofile-dynatraceconnectorprofileproperties"></a>

 The connector-specific profile properties required by Dynatrace. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-dynatraceconnectorprofileproperties-syntax"></a>

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

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

```
{
  "[InstanceUrl](#cfn-appflow-connectorprofile-dynatraceconnectorprofileproperties-instanceurl)" : String
}
```

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

```
  [InstanceUrl](#cfn-appflow-connectorprofile-dynatraceconnectorprofileproperties-instanceurl): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-dynatraceconnectorprofileproperties-properties"></a>

`InstanceUrl`  <a name="cfn-appflow-connectorprofile-dynatraceconnectorprofileproperties-instanceurl"></a>
 The location of the Dynatrace resource.   
*Required*: Yes  
*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)

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



# AWS::AppFlow::ConnectorProfile GoogleAnalyticsConnectorProfileCredentials
<a name="aws-properties-appflow-connectorprofile-googleanalyticsconnectorprofilecredentials"></a>

 The connector-specific profile credentials required by Google Analytics. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-googleanalyticsconnectorprofilecredentials-syntax"></a>

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

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

```
{
  "[AccessToken](#cfn-appflow-connectorprofile-googleanalyticsconnectorprofilecredentials-accesstoken)" : String,
  "[ClientId](#cfn-appflow-connectorprofile-googleanalyticsconnectorprofilecredentials-clientid)" : String,
  "[ClientSecret](#cfn-appflow-connectorprofile-googleanalyticsconnectorprofilecredentials-clientsecret)" : String,
  "[ConnectorOAuthRequest](#cfn-appflow-connectorprofile-googleanalyticsconnectorprofilecredentials-connectoroauthrequest)" : ConnectorOAuthRequest,
  "[RefreshToken](#cfn-appflow-connectorprofile-googleanalyticsconnectorprofilecredentials-refreshtoken)" : String
}
```

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

```
  [AccessToken](#cfn-appflow-connectorprofile-googleanalyticsconnectorprofilecredentials-accesstoken): String
  [ClientId](#cfn-appflow-connectorprofile-googleanalyticsconnectorprofilecredentials-clientid): String
  [ClientSecret](#cfn-appflow-connectorprofile-googleanalyticsconnectorprofilecredentials-clientsecret): String
  [ConnectorOAuthRequest](#cfn-appflow-connectorprofile-googleanalyticsconnectorprofilecredentials-connectoroauthrequest): 
    ConnectorOAuthRequest
  [RefreshToken](#cfn-appflow-connectorprofile-googleanalyticsconnectorprofilecredentials-refreshtoken): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-googleanalyticsconnectorprofilecredentials-properties"></a>

`AccessToken`  <a name="cfn-appflow-connectorprofile-googleanalyticsconnectorprofilecredentials-accesstoken"></a>
 The credentials used to access protected Google Analytics resources.   
*Required*: No  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `4096`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ClientId`  <a name="cfn-appflow-connectorprofile-googleanalyticsconnectorprofilecredentials-clientid"></a>
 The identifier for the desired client.   
*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)

`ClientSecret`  <a name="cfn-appflow-connectorprofile-googleanalyticsconnectorprofilecredentials-clientsecret"></a>
 The client secret used by the OAuth client to authenticate to the authorization server.   
*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)

`ConnectorOAuthRequest`  <a name="cfn-appflow-connectorprofile-googleanalyticsconnectorprofilecredentials-connectoroauthrequest"></a>
 Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.   
*Required*: No  
*Type*: [ConnectorOAuthRequest](aws-properties-appflow-connectorprofile-connectoroauthrequest.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`RefreshToken`  <a name="cfn-appflow-connectorprofile-googleanalyticsconnectorprofilecredentials-refreshtoken"></a>
 The credentials used to acquire new access tokens. This is required only for OAuth2 access tokens, and is not required for OAuth1 access tokens.   
*Required*: No  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `4096`  
*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-connectorprofile-googleanalyticsconnectorprofilecredentials--seealso"></a>
+ [GoogleAnalyticsConnectorProfileCredentials](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_GoogleAnalyticsConnectorProfileCredentials.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::ConnectorProfile InforNexusConnectorProfileCredentials
<a name="aws-properties-appflow-connectorprofile-infornexusconnectorprofilecredentials"></a>

 The connector-specific profile credentials required by Infor Nexus. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-infornexusconnectorprofilecredentials-syntax"></a>

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

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

```
{
  "[AccessKeyId](#cfn-appflow-connectorprofile-infornexusconnectorprofilecredentials-accesskeyid)" : String,
  "[Datakey](#cfn-appflow-connectorprofile-infornexusconnectorprofilecredentials-datakey)" : String,
  "[SecretAccessKey](#cfn-appflow-connectorprofile-infornexusconnectorprofilecredentials-secretaccesskey)" : String,
  "[UserId](#cfn-appflow-connectorprofile-infornexusconnectorprofilecredentials-userid)" : String
}
```

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

```
  [AccessKeyId](#cfn-appflow-connectorprofile-infornexusconnectorprofilecredentials-accesskeyid): String
  [Datakey](#cfn-appflow-connectorprofile-infornexusconnectorprofilecredentials-datakey): String
  [SecretAccessKey](#cfn-appflow-connectorprofile-infornexusconnectorprofilecredentials-secretaccesskey): String
  [UserId](#cfn-appflow-connectorprofile-infornexusconnectorprofilecredentials-userid): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-infornexusconnectorprofilecredentials-properties"></a>

`AccessKeyId`  <a name="cfn-appflow-connectorprofile-infornexusconnectorprofilecredentials-accesskeyid"></a>
 The Access Key portion of the credentials.   
*Required*: Yes  
*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)

`Datakey`  <a name="cfn-appflow-connectorprofile-infornexusconnectorprofilecredentials-datakey"></a>
 The encryption keys used to encrypt data.   
*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)

`SecretAccessKey`  <a name="cfn-appflow-connectorprofile-infornexusconnectorprofilecredentials-secretaccesskey"></a>
 The secret key used to sign requests.   
*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)

`UserId`  <a name="cfn-appflow-connectorprofile-infornexusconnectorprofilecredentials-userid"></a>
 The identifier for the user.   
*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-connectorprofile-infornexusconnectorprofilecredentials--seealso"></a>
+ [InforNexusConnectorProfileCredentials](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_InforNexusConnectorProfileCredentials.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::ConnectorProfile InforNexusConnectorProfileProperties
<a name="aws-properties-appflow-connectorprofile-infornexusconnectorprofileproperties"></a>

 The connector-specific profile properties required by Infor Nexus. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-infornexusconnectorprofileproperties-syntax"></a>

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

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

```
{
  "[InstanceUrl](#cfn-appflow-connectorprofile-infornexusconnectorprofileproperties-instanceurl)" : String
}
```

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

```
  [InstanceUrl](#cfn-appflow-connectorprofile-infornexusconnectorprofileproperties-instanceurl): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-infornexusconnectorprofileproperties-properties"></a>

`InstanceUrl`  <a name="cfn-appflow-connectorprofile-infornexusconnectorprofileproperties-instanceurl"></a>
 The location of the Infor Nexus resource.   
*Required*: Yes  
*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)

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



# AWS::AppFlow::ConnectorProfile MarketoConnectorProfileCredentials
<a name="aws-properties-appflow-connectorprofile-marketoconnectorprofilecredentials"></a>

 The connector-specific profile credentials required by Marketo. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-marketoconnectorprofilecredentials-syntax"></a>

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

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

```
{
  "[AccessToken](#cfn-appflow-connectorprofile-marketoconnectorprofilecredentials-accesstoken)" : String,
  "[ClientId](#cfn-appflow-connectorprofile-marketoconnectorprofilecredentials-clientid)" : String,
  "[ClientSecret](#cfn-appflow-connectorprofile-marketoconnectorprofilecredentials-clientsecret)" : String,
  "[ConnectorOAuthRequest](#cfn-appflow-connectorprofile-marketoconnectorprofilecredentials-connectoroauthrequest)" : ConnectorOAuthRequest
}
```

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

```
  [AccessToken](#cfn-appflow-connectorprofile-marketoconnectorprofilecredentials-accesstoken): String
  [ClientId](#cfn-appflow-connectorprofile-marketoconnectorprofilecredentials-clientid): String
  [ClientSecret](#cfn-appflow-connectorprofile-marketoconnectorprofilecredentials-clientsecret): String
  [ConnectorOAuthRequest](#cfn-appflow-connectorprofile-marketoconnectorprofilecredentials-connectoroauthrequest): 
    ConnectorOAuthRequest
```

## Properties
<a name="aws-properties-appflow-connectorprofile-marketoconnectorprofilecredentials-properties"></a>

`AccessToken`  <a name="cfn-appflow-connectorprofile-marketoconnectorprofilecredentials-accesstoken"></a>
 The credentials used to access protected Marketo resources.   
*Required*: No  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `4096`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ClientId`  <a name="cfn-appflow-connectorprofile-marketoconnectorprofilecredentials-clientid"></a>
 The identifier for the desired client.   
*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)

`ClientSecret`  <a name="cfn-appflow-connectorprofile-marketoconnectorprofilecredentials-clientsecret"></a>
 The client secret used by the OAuth client to authenticate to the authorization server.   
*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)

`ConnectorOAuthRequest`  <a name="cfn-appflow-connectorprofile-marketoconnectorprofilecredentials-connectoroauthrequest"></a>
 Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.   
*Required*: No  
*Type*: [ConnectorOAuthRequest](aws-properties-appflow-connectorprofile-connectoroauthrequest.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-connectorprofile-marketoconnectorprofilecredentials--seealso"></a>
+ [MarketoConnectorProfileCredentials](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_MarketoConnectorProfileCredentials.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::ConnectorProfile MarketoConnectorProfileProperties
<a name="aws-properties-appflow-connectorprofile-marketoconnectorprofileproperties"></a>

 The connector-specific profile properties required when using Marketo. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-marketoconnectorprofileproperties-syntax"></a>

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

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

```
{
  "[InstanceUrl](#cfn-appflow-connectorprofile-marketoconnectorprofileproperties-instanceurl)" : String
}
```

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

```
  [InstanceUrl](#cfn-appflow-connectorprofile-marketoconnectorprofileproperties-instanceurl): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-marketoconnectorprofileproperties-properties"></a>

`InstanceUrl`  <a name="cfn-appflow-connectorprofile-marketoconnectorprofileproperties-instanceurl"></a>
 The location of the Marketo resource.   
*Required*: Yes  
*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)

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



# AWS::AppFlow::ConnectorProfile OAuth2Credentials
<a name="aws-properties-appflow-connectorprofile-oauth2credentials"></a>

The OAuth 2.0 credentials required for OAuth 2.0 authentication.

## Syntax
<a name="aws-properties-appflow-connectorprofile-oauth2credentials-syntax"></a>

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

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

```
{
  "[AccessToken](#cfn-appflow-connectorprofile-oauth2credentials-accesstoken)" : String,
  "[ClientId](#cfn-appflow-connectorprofile-oauth2credentials-clientid)" : String,
  "[ClientSecret](#cfn-appflow-connectorprofile-oauth2credentials-clientsecret)" : String,
  "[OAuthRequest](#cfn-appflow-connectorprofile-oauth2credentials-oauthrequest)" : ConnectorOAuthRequest,
  "[RefreshToken](#cfn-appflow-connectorprofile-oauth2credentials-refreshtoken)" : String
}
```

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

```
  [AccessToken](#cfn-appflow-connectorprofile-oauth2credentials-accesstoken): String
  [ClientId](#cfn-appflow-connectorprofile-oauth2credentials-clientid): String
  [ClientSecret](#cfn-appflow-connectorprofile-oauth2credentials-clientsecret): String
  [OAuthRequest](#cfn-appflow-connectorprofile-oauth2credentials-oauthrequest): 
    ConnectorOAuthRequest
  [RefreshToken](#cfn-appflow-connectorprofile-oauth2credentials-refreshtoken): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-oauth2credentials-properties"></a>

`AccessToken`  <a name="cfn-appflow-connectorprofile-oauth2credentials-accesstoken"></a>
The access token used to access the connector on your behalf.  
*Required*: No  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `4096`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ClientId`  <a name="cfn-appflow-connectorprofile-oauth2credentials-clientid"></a>
The identifier for the desired client.  
*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)

`ClientSecret`  <a name="cfn-appflow-connectorprofile-oauth2credentials-clientsecret"></a>
The client secret used by the OAuth client to authenticate to the authorization server.  
*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)

`OAuthRequest`  <a name="cfn-appflow-connectorprofile-oauth2credentials-oauthrequest"></a>
Property description not available.  
*Required*: No  
*Type*: [ConnectorOAuthRequest](aws-properties-appflow-connectorprofile-connectoroauthrequest.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`RefreshToken`  <a name="cfn-appflow-connectorprofile-oauth2credentials-refreshtoken"></a>
The refresh token used to refresh an expired access token.  
*Required*: No  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `4096`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::AppFlow::ConnectorProfile OAuth2Properties
<a name="aws-properties-appflow-connectorprofile-oauth2properties"></a>

The OAuth 2.0 properties required for OAuth 2.0 authentication.

## Syntax
<a name="aws-properties-appflow-connectorprofile-oauth2properties-syntax"></a>

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

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

```
{
  "[OAuth2GrantType](#cfn-appflow-connectorprofile-oauth2properties-oauth2granttype)" : String,
  "[TokenUrl](#cfn-appflow-connectorprofile-oauth2properties-tokenurl)" : String,
  "[TokenUrlCustomProperties](#cfn-appflow-connectorprofile-oauth2properties-tokenurlcustomproperties)" : {Key: Value, ...}
}
```

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

```
  [OAuth2GrantType](#cfn-appflow-connectorprofile-oauth2properties-oauth2granttype): String
  [TokenUrl](#cfn-appflow-connectorprofile-oauth2properties-tokenurl): String
  [TokenUrlCustomProperties](#cfn-appflow-connectorprofile-oauth2properties-tokenurlcustomproperties): 
    Key: Value
```

## Properties
<a name="aws-properties-appflow-connectorprofile-oauth2properties-properties"></a>

`OAuth2GrantType`  <a name="cfn-appflow-connectorprofile-oauth2properties-oauth2granttype"></a>
The OAuth 2.0 grant type used by connector for OAuth 2.0 authentication.  
*Required*: No  
*Type*: String  
*Allowed values*: `CLIENT_CREDENTIALS | AUTHORIZATION_CODE | JWT_BEARER`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`TokenUrl`  <a name="cfn-appflow-connectorprofile-oauth2properties-tokenurl"></a>
The token URL required for OAuth 2.0 authentication.  
*Required*: No  
*Type*: String  
*Pattern*: `^(https?)://[-a-zA-Z0-9+&amp;@#/%?=~_|!:,.;]*[-a-zA-Z0-9+&amp;@#/%=~_|]`  
*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)

`TokenUrlCustomProperties`  <a name="cfn-appflow-connectorprofile-oauth2properties-tokenurlcustomproperties"></a>
Associates your token URL with a map of properties that you define. Use this parameter to provide any additional details that the connector requires to authenticate your request.  
*Required*: No  
*Type*: Object of String  
*Pattern*: `^[\w]{1,128}$`  
*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)

# AWS::AppFlow::ConnectorProfile OAuthCredentials
<a name="aws-properties-appflow-connectorprofile-oauthcredentials"></a>

 The OAuth credentials required for OAuth type authentication. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-oauthcredentials-syntax"></a>

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

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

```
{
  "[AccessToken](#cfn-appflow-connectorprofile-oauthcredentials-accesstoken)" : String,
  "[ClientId](#cfn-appflow-connectorprofile-oauthcredentials-clientid)" : String,
  "[ClientSecret](#cfn-appflow-connectorprofile-oauthcredentials-clientsecret)" : String,
  "[ConnectorOAuthRequest](#cfn-appflow-connectorprofile-oauthcredentials-connectoroauthrequest)" : ConnectorOAuthRequest,
  "[RefreshToken](#cfn-appflow-connectorprofile-oauthcredentials-refreshtoken)" : String
}
```

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

```
  [AccessToken](#cfn-appflow-connectorprofile-oauthcredentials-accesstoken): String
  [ClientId](#cfn-appflow-connectorprofile-oauthcredentials-clientid): String
  [ClientSecret](#cfn-appflow-connectorprofile-oauthcredentials-clientsecret): String
  [ConnectorOAuthRequest](#cfn-appflow-connectorprofile-oauthcredentials-connectoroauthrequest): 
    ConnectorOAuthRequest
  [RefreshToken](#cfn-appflow-connectorprofile-oauthcredentials-refreshtoken): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-oauthcredentials-properties"></a>

`AccessToken`  <a name="cfn-appflow-connectorprofile-oauthcredentials-accesstoken"></a>
 The access token used to access protected SAPOData resources.   
*Required*: No  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `4096`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ClientId`  <a name="cfn-appflow-connectorprofile-oauthcredentials-clientid"></a>
 The identifier for the desired client.   
*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)

`ClientSecret`  <a name="cfn-appflow-connectorprofile-oauthcredentials-clientsecret"></a>
 The client secret used by the OAuth client to authenticate to the authorization server.   
*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)

`ConnectorOAuthRequest`  <a name="cfn-appflow-connectorprofile-oauthcredentials-connectoroauthrequest"></a>
Property description not available.  
*Required*: No  
*Type*: [ConnectorOAuthRequest](aws-properties-appflow-connectorprofile-connectoroauthrequest.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`RefreshToken`  <a name="cfn-appflow-connectorprofile-oauthcredentials-refreshtoken"></a>
 The refresh token used to refresh expired access token.   
*Required*: No  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `4096`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::AppFlow::ConnectorProfile OAuthProperties
<a name="aws-properties-appflow-connectorprofile-oauthproperties"></a>

 The OAuth properties required for OAuth type authentication. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-oauthproperties-syntax"></a>

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

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

```
{
  "[AuthCodeUrl](#cfn-appflow-connectorprofile-oauthproperties-authcodeurl)" : String,
  "[OAuthScopes](#cfn-appflow-connectorprofile-oauthproperties-oauthscopes)" : [ String, ... ],
  "[TokenUrl](#cfn-appflow-connectorprofile-oauthproperties-tokenurl)" : String
}
```

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

```
  [AuthCodeUrl](#cfn-appflow-connectorprofile-oauthproperties-authcodeurl): String
  [OAuthScopes](#cfn-appflow-connectorprofile-oauthproperties-oauthscopes): 
    - String
  [TokenUrl](#cfn-appflow-connectorprofile-oauthproperties-tokenurl): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-oauthproperties-properties"></a>

`AuthCodeUrl`  <a name="cfn-appflow-connectorprofile-oauthproperties-authcodeurl"></a>
 The authorization code url required to redirect to SAP Login Page to fetch authorization code for OAuth type authentication.   
*Required*: No  
*Type*: String  
*Pattern*: `^(https?)://[-a-zA-Z0-9+&amp;@#/%?=~_|!:,.;]*[-a-zA-Z0-9+&amp;@#/%=~_|]`  
*Maximum*: `256`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`OAuthScopes`  <a name="cfn-appflow-connectorprofile-oauthproperties-oauthscopes"></a>
 The OAuth scopes required for OAuth type authentication.   
*Required*: No  
*Type*: Array of String  
*Maximum*: `128`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`TokenUrl`  <a name="cfn-appflow-connectorprofile-oauthproperties-tokenurl"></a>
 The token url required to fetch access/refresh tokens using authorization code and also to refresh expired access token using refresh token.  
*Required*: No  
*Type*: String  
*Pattern*: `^(https?)://[-a-zA-Z0-9+&amp;@#/%?=~_|!:,.;]*[-a-zA-Z0-9+&amp;@#/%=~_|]`  
*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::ConnectorProfile PardotConnectorProfileCredentials
<a name="aws-properties-appflow-connectorprofile-pardotconnectorprofilecredentials"></a>

The connector-specific profile credentials required when using Salesforce Pardot.

## Syntax
<a name="aws-properties-appflow-connectorprofile-pardotconnectorprofilecredentials-syntax"></a>

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

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

```
{
  "[AccessToken](#cfn-appflow-connectorprofile-pardotconnectorprofilecredentials-accesstoken)" : String,
  "[ClientCredentialsArn](#cfn-appflow-connectorprofile-pardotconnectorprofilecredentials-clientcredentialsarn)" : String,
  "[ConnectorOAuthRequest](#cfn-appflow-connectorprofile-pardotconnectorprofilecredentials-connectoroauthrequest)" : ConnectorOAuthRequest,
  "[RefreshToken](#cfn-appflow-connectorprofile-pardotconnectorprofilecredentials-refreshtoken)" : String
}
```

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

```
  [AccessToken](#cfn-appflow-connectorprofile-pardotconnectorprofilecredentials-accesstoken): String
  [ClientCredentialsArn](#cfn-appflow-connectorprofile-pardotconnectorprofilecredentials-clientcredentialsarn): String
  [ConnectorOAuthRequest](#cfn-appflow-connectorprofile-pardotconnectorprofilecredentials-connectoroauthrequest): 
    ConnectorOAuthRequest
  [RefreshToken](#cfn-appflow-connectorprofile-pardotconnectorprofilecredentials-refreshtoken): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-pardotconnectorprofilecredentials-properties"></a>

`AccessToken`  <a name="cfn-appflow-connectorprofile-pardotconnectorprofilecredentials-accesstoken"></a>
The credentials used to access protected Salesforce Pardot resources.  
*Required*: No  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `4096`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ClientCredentialsArn`  <a name="cfn-appflow-connectorprofile-pardotconnectorprofilecredentials-clientcredentialsarn"></a>
The secret manager ARN, which contains the client ID and client secret of the connected app.  
*Required*: No  
*Type*: String  
*Pattern*: `arn:aws:secretsmanager:.*:[0-9]+:.*`  
*Maximum*: `2048`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ConnectorOAuthRequest`  <a name="cfn-appflow-connectorprofile-pardotconnectorprofilecredentials-connectoroauthrequest"></a>
Property description not available.  
*Required*: No  
*Type*: [ConnectorOAuthRequest](aws-properties-appflow-connectorprofile-connectoroauthrequest.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`RefreshToken`  <a name="cfn-appflow-connectorprofile-pardotconnectorprofilecredentials-refreshtoken"></a>
The credentials used to acquire new access tokens.  
*Required*: No  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `4096`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::AppFlow::ConnectorProfile PardotConnectorProfileProperties
<a name="aws-properties-appflow-connectorprofile-pardotconnectorprofileproperties"></a>

The connector-specific profile properties required when using Salesforce Pardot.

## Syntax
<a name="aws-properties-appflow-connectorprofile-pardotconnectorprofileproperties-syntax"></a>

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

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

```
{
  "[BusinessUnitId](#cfn-appflow-connectorprofile-pardotconnectorprofileproperties-businessunitid)" : String,
  "[InstanceUrl](#cfn-appflow-connectorprofile-pardotconnectorprofileproperties-instanceurl)" : String,
  "[IsSandboxEnvironment](#cfn-appflow-connectorprofile-pardotconnectorprofileproperties-issandboxenvironment)" : Boolean
}
```

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

```
  [BusinessUnitId](#cfn-appflow-connectorprofile-pardotconnectorprofileproperties-businessunitid): String
  [InstanceUrl](#cfn-appflow-connectorprofile-pardotconnectorprofileproperties-instanceurl): String
  [IsSandboxEnvironment](#cfn-appflow-connectorprofile-pardotconnectorprofileproperties-issandboxenvironment): Boolean
```

## Properties
<a name="aws-properties-appflow-connectorprofile-pardotconnectorprofileproperties-properties"></a>

`BusinessUnitId`  <a name="cfn-appflow-connectorprofile-pardotconnectorprofileproperties-businessunitid"></a>
The business unit id of Salesforce Pardot instance.  
*Required*: Yes  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `18`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`InstanceUrl`  <a name="cfn-appflow-connectorprofile-pardotconnectorprofileproperties-instanceurl"></a>
The location of the Salesforce Pardot resource.  
*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)

`IsSandboxEnvironment`  <a name="cfn-appflow-connectorprofile-pardotconnectorprofileproperties-issandboxenvironment"></a>
Indicates whether the connector profile applies to a sandbox or production environment.  
*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)

# AWS::AppFlow::ConnectorProfile RedshiftConnectorProfileCredentials
<a name="aws-properties-appflow-connectorprofile-redshiftconnectorprofilecredentials"></a>

 The connector-specific profile credentials required when using Amazon Redshift. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-redshiftconnectorprofilecredentials-syntax"></a>

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

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

```
{
  "[Password](#cfn-appflow-connectorprofile-redshiftconnectorprofilecredentials-password)" : String,
  "[Username](#cfn-appflow-connectorprofile-redshiftconnectorprofilecredentials-username)" : String
}
```

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

```
  [Password](#cfn-appflow-connectorprofile-redshiftconnectorprofilecredentials-password): String
  [Username](#cfn-appflow-connectorprofile-redshiftconnectorprofilecredentials-username): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-redshiftconnectorprofilecredentials-properties"></a>

`Password`  <a name="cfn-appflow-connectorprofile-redshiftconnectorprofilecredentials-password"></a>
 The password that corresponds to the user name.   
*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)

`Username`  <a name="cfn-appflow-connectorprofile-redshiftconnectorprofilecredentials-username"></a>
 The name of the user.   
*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)

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



# AWS::AppFlow::ConnectorProfile RedshiftConnectorProfileProperties
<a name="aws-properties-appflow-connectorprofile-redshiftconnectorprofileproperties"></a>

 The connector-specific profile properties when using Amazon Redshift. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-redshiftconnectorprofileproperties-syntax"></a>

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

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

```
{
  "[BucketName](#cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-bucketname)" : String,
  "[BucketPrefix](#cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-bucketprefix)" : String,
  "[ClusterIdentifier](#cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-clusteridentifier)" : String,
  "[DataApiRoleArn](#cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-dataapirolearn)" : String,
  "[DatabaseName](#cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-databasename)" : String,
  "[DatabaseUrl](#cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-databaseurl)" : String,
  "[IsRedshiftServerless](#cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-isredshiftserverless)" : Boolean,
  "[RoleArn](#cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-rolearn)" : String,
  "[WorkgroupName](#cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-workgroupname)" : String
}
```

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

```
  [BucketName](#cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-bucketname): String
  [BucketPrefix](#cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-bucketprefix): String
  [ClusterIdentifier](#cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-clusteridentifier): String
  [DataApiRoleArn](#cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-dataapirolearn): String
  [DatabaseName](#cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-databasename): String
  [DatabaseUrl](#cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-databaseurl): String
  [IsRedshiftServerless](#cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-isredshiftserverless): Boolean
  [RoleArn](#cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-rolearn): String
  [WorkgroupName](#cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-workgroupname): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-redshiftconnectorprofileproperties-properties"></a>

`BucketName`  <a name="cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-bucketname"></a>
 A name for the associated Amazon S3 bucket.   
*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-connectorprofile-redshiftconnectorprofileproperties-bucketprefix"></a>
 The object key for the destination bucket in which Amazon AppFlow places the files.   
*Required*: No  
*Type*: String  
*Maximum*: `128`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ClusterIdentifier`  <a name="cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-clusteridentifier"></a>
The unique ID that's assigned to an Amazon Redshift cluster.  
*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)

`DataApiRoleArn`  <a name="cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-dataapirolearn"></a>
The Amazon Resource Name (ARN) of an IAM role that permits Amazon AppFlow to access your Amazon Redshift database through the Data API. For more information, and for the polices that you attach to this role, see [Allow Amazon AppFlow to access Amazon Redshift databases with the Data API](https://docs.aws.amazon.com/appflow/latest/userguide/security_iam_service-role-policies.html#access-redshift).  
*Required*: No  
*Type*: String  
*Pattern*: `arn:aws:iam:.*:[0-9]+:.*`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`DatabaseName`  <a name="cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-databasename"></a>
The name of an Amazon Redshift database.  
*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)

`DatabaseUrl`  <a name="cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-databaseurl"></a>
 The JDBC URL of the Amazon Redshift cluster.   
*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)

`IsRedshiftServerless`  <a name="cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-isredshiftserverless"></a>
Indicates whether the connector profile defines a connection to an Amazon Redshift Serverless data warehouse.  
*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)

`RoleArn`  <a name="cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-rolearn"></a>
 The Amazon Resource Name (ARN) of IAM role that grants Amazon Redshift read-only access to Amazon S3. For more information, and for the polices that you attach to this role, see [Allow Amazon Redshift to access your Amazon AppFlow data in Amazon S3](https://docs.aws.amazon.com/appflow/latest/userguide/security_iam_service-role-policies.html#redshift-access-s3).  
*Required*: Yes  
*Type*: String  
*Pattern*: `arn:aws:iam:.*:[0-9]+:.*`  
*Maximum*: `512`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`WorkgroupName`  <a name="cfn-appflow-connectorprofile-redshiftconnectorprofileproperties-workgroupname"></a>
The name of an Amazon Redshift workgroup.  
*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)

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



# AWS::AppFlow::ConnectorProfile SalesforceConnectorProfileCredentials
<a name="aws-properties-appflow-connectorprofile-salesforceconnectorprofilecredentials"></a>

 The connector-specific profile credentials required when using Salesforce. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-salesforceconnectorprofilecredentials-syntax"></a>

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

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

```
{
  "[AccessToken](#cfn-appflow-connectorprofile-salesforceconnectorprofilecredentials-accesstoken)" : String,
  "[ClientCredentialsArn](#cfn-appflow-connectorprofile-salesforceconnectorprofilecredentials-clientcredentialsarn)" : String,
  "[ConnectorOAuthRequest](#cfn-appflow-connectorprofile-salesforceconnectorprofilecredentials-connectoroauthrequest)" : ConnectorOAuthRequest,
  "[JwtToken](#cfn-appflow-connectorprofile-salesforceconnectorprofilecredentials-jwttoken)" : String,
  "[OAuth2GrantType](#cfn-appflow-connectorprofile-salesforceconnectorprofilecredentials-oauth2granttype)" : String,
  "[RefreshToken](#cfn-appflow-connectorprofile-salesforceconnectorprofilecredentials-refreshtoken)" : String
}
```

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

```
  [AccessToken](#cfn-appflow-connectorprofile-salesforceconnectorprofilecredentials-accesstoken): String
  [ClientCredentialsArn](#cfn-appflow-connectorprofile-salesforceconnectorprofilecredentials-clientcredentialsarn): String
  [ConnectorOAuthRequest](#cfn-appflow-connectorprofile-salesforceconnectorprofilecredentials-connectoroauthrequest): 
    ConnectorOAuthRequest
  [JwtToken](#cfn-appflow-connectorprofile-salesforceconnectorprofilecredentials-jwttoken): String
  [OAuth2GrantType](#cfn-appflow-connectorprofile-salesforceconnectorprofilecredentials-oauth2granttype): String
  [RefreshToken](#cfn-appflow-connectorprofile-salesforceconnectorprofilecredentials-refreshtoken): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-salesforceconnectorprofilecredentials-properties"></a>

`AccessToken`  <a name="cfn-appflow-connectorprofile-salesforceconnectorprofilecredentials-accesstoken"></a>
 The credentials used to access protected Salesforce resources.   
*Required*: No  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `4096`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ClientCredentialsArn`  <a name="cfn-appflow-connectorprofile-salesforceconnectorprofilecredentials-clientcredentialsarn"></a>
 The secret manager ARN, which contains the client ID and client secret of the connected app.   
*Required*: No  
*Type*: String  
*Pattern*: `arn:aws:secretsmanager:.*:[0-9]+:.*`  
*Maximum*: `2048`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ConnectorOAuthRequest`  <a name="cfn-appflow-connectorprofile-salesforceconnectorprofilecredentials-connectoroauthrequest"></a>
 Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.   
*Required*: No  
*Type*: [ConnectorOAuthRequest](aws-properties-appflow-connectorprofile-connectoroauthrequest.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`JwtToken`  <a name="cfn-appflow-connectorprofile-salesforceconnectorprofilecredentials-jwttoken"></a>
A JSON web token (JWT) that authorizes Amazon AppFlow to access your Salesforce records.  
*Required*: No  
*Type*: String  
*Pattern*: `^[A-Za-z0-9-_=]+\.[A-Za-z0-9-_=]+\.[A-Za-z0-9-_.+/=]*$`  
*Maximum*: `8000`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`OAuth2GrantType`  <a name="cfn-appflow-connectorprofile-salesforceconnectorprofilecredentials-oauth2granttype"></a>
Specifies the OAuth 2.0 grant type that Amazon AppFlow uses when it requests an access token from Salesforce. Amazon AppFlow requires an access token each time it attempts to access your Salesforce records.  
You can specify one of the following values:    
AUTHORIZATION\$1CODE  
Amazon AppFlow passes an authorization code when it requests the access token from Salesforce. Amazon AppFlow receives the authorization code from Salesforce after you log in to your Salesforce account and authorize Amazon AppFlow to access your records.  
JWT\$1BEARER  
Amazon AppFlow passes a JSON web token (JWT) when it requests the access token from Salesforce. You provide the JWT to Amazon AppFlow when you define the connection to your Salesforce account. When you use this grant type, you don't need to log in to your Salesforce account to authorize Amazon AppFlow to access your records.
The CLIENT\$1CREDENTIALS value is not supported for Salesforce.
*Required*: No  
*Type*: String  
*Allowed values*: `CLIENT_CREDENTIALS | AUTHORIZATION_CODE | JWT_BEARER`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`RefreshToken`  <a name="cfn-appflow-connectorprofile-salesforceconnectorprofilecredentials-refreshtoken"></a>
 The credentials used to acquire new access tokens.   
*Required*: No  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `4096`  
*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-connectorprofile-salesforceconnectorprofilecredentials--seealso"></a>
+ [SalesforceConnectorProfileCredentials](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_SalesforceConnectorProfileCredentials.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::ConnectorProfile SalesforceConnectorProfileProperties
<a name="aws-properties-appflow-connectorprofile-salesforceconnectorprofileproperties"></a>

 The connector-specific profile properties required when using Salesforce. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-salesforceconnectorprofileproperties-syntax"></a>

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

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

```
{
  "[InstanceUrl](#cfn-appflow-connectorprofile-salesforceconnectorprofileproperties-instanceurl)" : String,
  "[isSandboxEnvironment](#cfn-appflow-connectorprofile-salesforceconnectorprofileproperties-issandboxenvironment)" : Boolean,
  "[usePrivateLinkForMetadataAndAuthorization](#cfn-appflow-connectorprofile-salesforceconnectorprofileproperties-useprivatelinkformetadataandauthorization)" : Boolean
}
```

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

```
  [InstanceUrl](#cfn-appflow-connectorprofile-salesforceconnectorprofileproperties-instanceurl): String
  [isSandboxEnvironment](#cfn-appflow-connectorprofile-salesforceconnectorprofileproperties-issandboxenvironment): Boolean
  [usePrivateLinkForMetadataAndAuthorization](#cfn-appflow-connectorprofile-salesforceconnectorprofileproperties-useprivatelinkformetadataandauthorization): Boolean
```

## Properties
<a name="aws-properties-appflow-connectorprofile-salesforceconnectorprofileproperties-properties"></a>

`InstanceUrl`  <a name="cfn-appflow-connectorprofile-salesforceconnectorprofileproperties-instanceurl"></a>
 The location of the Salesforce resource.   
*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)

`isSandboxEnvironment`  <a name="cfn-appflow-connectorprofile-salesforceconnectorprofileproperties-issandboxenvironment"></a>
 Indicates whether the connector profile applies to a sandbox or production environment.   
*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)

`usePrivateLinkForMetadataAndAuthorization`  <a name="cfn-appflow-connectorprofile-salesforceconnectorprofileproperties-useprivatelinkformetadataandauthorization"></a>
If the connection mode for the connector profile is private, this parameter sets whether Amazon AppFlow uses the private network to send metadata and authorization calls to Salesforce. Amazon AppFlow sends private calls through AWS PrivateLink. These calls travel through AWS infrastructure without being exposed to the public internet.  
Set either of the following values:    
true  
Amazon AppFlow sends all calls to Salesforce over the private network.  
These private calls are:  
+ Calls to get metadata about your Salesforce records. This metadata describes your Salesforce objects and their fields.
+ Calls to get or refresh access tokens that allow Amazon AppFlow to access your Salesforce records.
+ Calls to transfer your Salesforce records as part of a flow run.  
false  
The default value. Amazon AppFlow sends some calls to Salesforce privately and other calls over the public internet.  
The public calls are:   
+ Calls to get metadata about your Salesforce records.
+ Calls to get or refresh access tokens.
The private calls are:  
+ Calls to transfer your Salesforce records as part of a 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)

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



# AWS::AppFlow::ConnectorProfile SAPODataConnectorProfileCredentials
<a name="aws-properties-appflow-connectorprofile-sapodataconnectorprofilecredentials"></a>

 The connector-specific profile credentials required when using SAPOData. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-sapodataconnectorprofilecredentials-syntax"></a>

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

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

```
{
  "[BasicAuthCredentials](#cfn-appflow-connectorprofile-sapodataconnectorprofilecredentials-basicauthcredentials)" : BasicAuthCredentials,
  "[OAuthCredentials](#cfn-appflow-connectorprofile-sapodataconnectorprofilecredentials-oauthcredentials)" : OAuthCredentials
}
```

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

```
  [BasicAuthCredentials](#cfn-appflow-connectorprofile-sapodataconnectorprofilecredentials-basicauthcredentials): 
    BasicAuthCredentials
  [OAuthCredentials](#cfn-appflow-connectorprofile-sapodataconnectorprofilecredentials-oauthcredentials): 
    OAuthCredentials
```

## Properties
<a name="aws-properties-appflow-connectorprofile-sapodataconnectorprofilecredentials-properties"></a>

`BasicAuthCredentials`  <a name="cfn-appflow-connectorprofile-sapodataconnectorprofilecredentials-basicauthcredentials"></a>
 The SAPOData basic authentication credentials.   
*Required*: No  
*Type*: [BasicAuthCredentials](aws-properties-appflow-connectorprofile-basicauthcredentials.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`OAuthCredentials`  <a name="cfn-appflow-connectorprofile-sapodataconnectorprofilecredentials-oauthcredentials"></a>
 The SAPOData OAuth type authentication credentials.   
*Required*: No  
*Type*: [OAuthCredentials](aws-properties-appflow-connectorprofile-oauthcredentials.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::ConnectorProfile SAPODataConnectorProfileProperties
<a name="aws-properties-appflow-connectorprofile-sapodataconnectorprofileproperties"></a>

 The connector-specific profile properties required when using SAPOData. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-sapodataconnectorprofileproperties-syntax"></a>

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

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

```
{
  "[ApplicationHostUrl](#cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-applicationhosturl)" : String,
  "[ApplicationServicePath](#cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-applicationservicepath)" : String,
  "[ClientNumber](#cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-clientnumber)" : String,
  "[DisableSSO](#cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-disablesso)" : Boolean,
  "[LogonLanguage](#cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-logonlanguage)" : String,
  "[OAuthProperties](#cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-oauthproperties)" : OAuthProperties,
  "[PortNumber](#cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-portnumber)" : Integer,
  "[PrivateLinkServiceName](#cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-privatelinkservicename)" : String
}
```

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

```
  [ApplicationHostUrl](#cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-applicationhosturl): String
  [ApplicationServicePath](#cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-applicationservicepath): String
  [ClientNumber](#cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-clientnumber): String
  [DisableSSO](#cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-disablesso): Boolean
  [LogonLanguage](#cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-logonlanguage): String
  [OAuthProperties](#cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-oauthproperties): 
    OAuthProperties
  [PortNumber](#cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-portnumber): Integer
  [PrivateLinkServiceName](#cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-privatelinkservicename): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-sapodataconnectorprofileproperties-properties"></a>

`ApplicationHostUrl`  <a name="cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-applicationhosturl"></a>
 The location of the SAPOData resource.   
*Required*: No  
*Type*: String  
*Pattern*: `^(https?)://[-a-zA-Z0-9+&amp;@#/%?=~_|!:,.;]*[-a-zA-Z0-9+&amp;@#/%=~_|]`  
*Maximum*: `256`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ApplicationServicePath`  <a name="cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-applicationservicepath"></a>
 The application path to catalog service.   
*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)

`ClientNumber`  <a name="cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-clientnumber"></a>
 The client number for the client creating the connection.   
*Required*: No  
*Type*: String  
*Pattern*: `^\d{3}$`  
*Minimum*: `3`  
*Maximum*: `3`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`DisableSSO`  <a name="cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-disablesso"></a>
If you set this parameter to `true`, Amazon AppFlow bypasses the single sign-on (SSO) settings in your SAP account when it accesses your SAP OData instance.  
Whether you need this option depends on the types of credentials that you applied to your SAP OData connection profile. If your profile uses basic authentication credentials, SAP SSO can prevent Amazon AppFlow from connecting to your account with your username and password. In this case, bypassing SSO makes it possible for Amazon AppFlow to connect successfully. However, if your profile uses OAuth credentials, this parameter has no affect.  
*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)

`LogonLanguage`  <a name="cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-logonlanguage"></a>
 The logon language of SAPOData instance.   
*Required*: No  
*Type*: String  
*Pattern*: `^[a-zA-Z0-9_]*$`  
*Maximum*: `2`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`OAuthProperties`  <a name="cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-oauthproperties"></a>
 The SAPOData OAuth properties required for OAuth type authentication.   
*Required*: No  
*Type*: [OAuthProperties](aws-properties-appflow-connectorprofile-oauthproperties.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`PortNumber`  <a name="cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-portnumber"></a>
 The port number of the SAPOData instance.   
*Required*: No  
*Type*: Integer  
*Minimum*: `1`  
*Maximum*: `65535`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`PrivateLinkServiceName`  <a name="cfn-appflow-connectorprofile-sapodataconnectorprofileproperties-privatelinkservicename"></a>
 The SAPOData Private Link service name to be used for private data transfers.   
*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::ConnectorProfile ServiceNowConnectorProfileCredentials
<a name="aws-properties-appflow-connectorprofile-servicenowconnectorprofilecredentials"></a>

 The connector-specific profile credentials required when using ServiceNow. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-servicenowconnectorprofilecredentials-syntax"></a>

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

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

```
{
  "[OAuth2Credentials](#cfn-appflow-connectorprofile-servicenowconnectorprofilecredentials-oauth2credentials)" : OAuth2Credentials,
  "[Password](#cfn-appflow-connectorprofile-servicenowconnectorprofilecredentials-password)" : String,
  "[Username](#cfn-appflow-connectorprofile-servicenowconnectorprofilecredentials-username)" : String
}
```

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

```
  [OAuth2Credentials](#cfn-appflow-connectorprofile-servicenowconnectorprofilecredentials-oauth2credentials): 
    OAuth2Credentials
  [Password](#cfn-appflow-connectorprofile-servicenowconnectorprofilecredentials-password): String
  [Username](#cfn-appflow-connectorprofile-servicenowconnectorprofilecredentials-username): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-servicenowconnectorprofilecredentials-properties"></a>

`OAuth2Credentials`  <a name="cfn-appflow-connectorprofile-servicenowconnectorprofilecredentials-oauth2credentials"></a>
 The OAuth 2.0 credentials required to authenticate the user.   
*Required*: No  
*Type*: [OAuth2Credentials](aws-properties-appflow-connectorprofile-oauth2credentials.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Password`  <a name="cfn-appflow-connectorprofile-servicenowconnectorprofilecredentials-password"></a>
 The password that corresponds to the user name.   
*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)

`Username`  <a name="cfn-appflow-connectorprofile-servicenowconnectorprofilecredentials-username"></a>
 The name of the user.   
*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)

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



# AWS::AppFlow::ConnectorProfile ServiceNowConnectorProfileProperties
<a name="aws-properties-appflow-connectorprofile-servicenowconnectorprofileproperties"></a>

 The connector-specific profile properties required when using ServiceNow. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-servicenowconnectorprofileproperties-syntax"></a>

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

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

```
{
  "[InstanceUrl](#cfn-appflow-connectorprofile-servicenowconnectorprofileproperties-instanceurl)" : String
}
```

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

```
  [InstanceUrl](#cfn-appflow-connectorprofile-servicenowconnectorprofileproperties-instanceurl): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-servicenowconnectorprofileproperties-properties"></a>

`InstanceUrl`  <a name="cfn-appflow-connectorprofile-servicenowconnectorprofileproperties-instanceurl"></a>
 The location of the ServiceNow resource.   
*Required*: Yes  
*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)

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



# AWS::AppFlow::ConnectorProfile SingularConnectorProfileCredentials
<a name="aws-properties-appflow-connectorprofile-singularconnectorprofilecredentials"></a>

 The connector-specific profile credentials required when using Singular. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-singularconnectorprofilecredentials-syntax"></a>

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

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

```
{
  "[ApiKey](#cfn-appflow-connectorprofile-singularconnectorprofilecredentials-apikey)" : String
}
```

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

```
  [ApiKey](#cfn-appflow-connectorprofile-singularconnectorprofilecredentials-apikey): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-singularconnectorprofilecredentials-properties"></a>

`ApiKey`  <a name="cfn-appflow-connectorprofile-singularconnectorprofilecredentials-apikey"></a>
 A unique alphanumeric identifier used to authenticate a user, developer, or calling program to your API.   
*Required*: Yes  
*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)

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



# AWS::AppFlow::ConnectorProfile SlackConnectorProfileCredentials
<a name="aws-properties-appflow-connectorprofile-slackconnectorprofilecredentials"></a>

 The connector-specific profile credentials required when using Slack. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-slackconnectorprofilecredentials-syntax"></a>

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

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

```
{
  "[AccessToken](#cfn-appflow-connectorprofile-slackconnectorprofilecredentials-accesstoken)" : String,
  "[ClientId](#cfn-appflow-connectorprofile-slackconnectorprofilecredentials-clientid)" : String,
  "[ClientSecret](#cfn-appflow-connectorprofile-slackconnectorprofilecredentials-clientsecret)" : String,
  "[ConnectorOAuthRequest](#cfn-appflow-connectorprofile-slackconnectorprofilecredentials-connectoroauthrequest)" : ConnectorOAuthRequest
}
```

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

```
  [AccessToken](#cfn-appflow-connectorprofile-slackconnectorprofilecredentials-accesstoken): String
  [ClientId](#cfn-appflow-connectorprofile-slackconnectorprofilecredentials-clientid): String
  [ClientSecret](#cfn-appflow-connectorprofile-slackconnectorprofilecredentials-clientsecret): String
  [ConnectorOAuthRequest](#cfn-appflow-connectorprofile-slackconnectorprofilecredentials-connectoroauthrequest): 
    ConnectorOAuthRequest
```

## Properties
<a name="aws-properties-appflow-connectorprofile-slackconnectorprofilecredentials-properties"></a>

`AccessToken`  <a name="cfn-appflow-connectorprofile-slackconnectorprofilecredentials-accesstoken"></a>
 The credentials used to access protected Slack resources.   
*Required*: No  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `4096`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ClientId`  <a name="cfn-appflow-connectorprofile-slackconnectorprofilecredentials-clientid"></a>
 The identifier for the client.   
*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)

`ClientSecret`  <a name="cfn-appflow-connectorprofile-slackconnectorprofilecredentials-clientsecret"></a>
 The client secret used by the OAuth client to authenticate to the authorization server.   
*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)

`ConnectorOAuthRequest`  <a name="cfn-appflow-connectorprofile-slackconnectorprofilecredentials-connectoroauthrequest"></a>
 Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.   
*Required*: No  
*Type*: [ConnectorOAuthRequest](aws-properties-appflow-connectorprofile-connectoroauthrequest.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-connectorprofile-slackconnectorprofilecredentials--seealso"></a>
+ [SlackConnectorProfileCredentials](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_SlackConnectorProfileCredentials.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::ConnectorProfile SlackConnectorProfileProperties
<a name="aws-properties-appflow-connectorprofile-slackconnectorprofileproperties"></a>

 The connector-specific profile properties required when using Slack. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-slackconnectorprofileproperties-syntax"></a>

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

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

```
{
  "[InstanceUrl](#cfn-appflow-connectorprofile-slackconnectorprofileproperties-instanceurl)" : String
}
```

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

```
  [InstanceUrl](#cfn-appflow-connectorprofile-slackconnectorprofileproperties-instanceurl): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-slackconnectorprofileproperties-properties"></a>

`InstanceUrl`  <a name="cfn-appflow-connectorprofile-slackconnectorprofileproperties-instanceurl"></a>
 The location of the Slack resource.   
*Required*: Yes  
*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)

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



# AWS::AppFlow::ConnectorProfile SnowflakeConnectorProfileCredentials
<a name="aws-properties-appflow-connectorprofile-snowflakeconnectorprofilecredentials"></a>

 The connector-specific profile credentials required when using Snowflake. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-snowflakeconnectorprofilecredentials-syntax"></a>

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

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

```
{
  "[Password](#cfn-appflow-connectorprofile-snowflakeconnectorprofilecredentials-password)" : String,
  "[Username](#cfn-appflow-connectorprofile-snowflakeconnectorprofilecredentials-username)" : String
}
```

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

```
  [Password](#cfn-appflow-connectorprofile-snowflakeconnectorprofilecredentials-password): String
  [Username](#cfn-appflow-connectorprofile-snowflakeconnectorprofilecredentials-username): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-snowflakeconnectorprofilecredentials-properties"></a>

`Password`  <a name="cfn-appflow-connectorprofile-snowflakeconnectorprofilecredentials-password"></a>
 The password that corresponds to the user name.   
*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)

`Username`  <a name="cfn-appflow-connectorprofile-snowflakeconnectorprofilecredentials-username"></a>
 The name of the user.   
*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-connectorprofile-snowflakeconnectorprofilecredentials--seealso"></a>
+ [SnowflakeConnectorProfileCredentials](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_SnowflakeConnectorProfileCredentials.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::ConnectorProfile SnowflakeConnectorProfileProperties
<a name="aws-properties-appflow-connectorprofile-snowflakeconnectorprofileproperties"></a>

 The connector-specific profile properties required when using Snowflake. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-snowflakeconnectorprofileproperties-syntax"></a>

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

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

```
{
  "[AccountName](#cfn-appflow-connectorprofile-snowflakeconnectorprofileproperties-accountname)" : String,
  "[BucketName](#cfn-appflow-connectorprofile-snowflakeconnectorprofileproperties-bucketname)" : String,
  "[BucketPrefix](#cfn-appflow-connectorprofile-snowflakeconnectorprofileproperties-bucketprefix)" : String,
  "[PrivateLinkServiceName](#cfn-appflow-connectorprofile-snowflakeconnectorprofileproperties-privatelinkservicename)" : String,
  "[Region](#cfn-appflow-connectorprofile-snowflakeconnectorprofileproperties-region)" : String,
  "[Stage](#cfn-appflow-connectorprofile-snowflakeconnectorprofileproperties-stage)" : String,
  "[Warehouse](#cfn-appflow-connectorprofile-snowflakeconnectorprofileproperties-warehouse)" : String
}
```

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

```
  [AccountName](#cfn-appflow-connectorprofile-snowflakeconnectorprofileproperties-accountname): String
  [BucketName](#cfn-appflow-connectorprofile-snowflakeconnectorprofileproperties-bucketname): String
  [BucketPrefix](#cfn-appflow-connectorprofile-snowflakeconnectorprofileproperties-bucketprefix): String
  [PrivateLinkServiceName](#cfn-appflow-connectorprofile-snowflakeconnectorprofileproperties-privatelinkservicename): String
  [Region](#cfn-appflow-connectorprofile-snowflakeconnectorprofileproperties-region): String
  [Stage](#cfn-appflow-connectorprofile-snowflakeconnectorprofileproperties-stage): String
  [Warehouse](#cfn-appflow-connectorprofile-snowflakeconnectorprofileproperties-warehouse): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-snowflakeconnectorprofileproperties-properties"></a>

`AccountName`  <a name="cfn-appflow-connectorprofile-snowflakeconnectorprofileproperties-accountname"></a>
 The name of the account.   
*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)

`BucketName`  <a name="cfn-appflow-connectorprofile-snowflakeconnectorprofileproperties-bucketname"></a>
 The name of the Amazon S3 bucket associated with 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)

`BucketPrefix`  <a name="cfn-appflow-connectorprofile-snowflakeconnectorprofileproperties-bucketprefix"></a>
 The bucket path that refers to the Amazon S3 bucket associated with Snowflake.   
*Required*: No  
*Type*: String  
*Maximum*: `128`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`PrivateLinkServiceName`  <a name="cfn-appflow-connectorprofile-snowflakeconnectorprofileproperties-privatelinkservicename"></a>
 The Snowflake Private Link service name to be used for private data transfers.   
*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)

`Region`  <a name="cfn-appflow-connectorprofile-snowflakeconnectorprofileproperties-region"></a>
 The AWS Region of the Snowflake account.   
*Required*: No  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `64`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Stage`  <a name="cfn-appflow-connectorprofile-snowflakeconnectorprofileproperties-stage"></a>
 The name of the Amazon S3 stage that was created while setting up an Amazon S3 stage in the Snowflake account. This is written in the following format: < Database>< Schema><Stage Name>.   
*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)

`Warehouse`  <a name="cfn-appflow-connectorprofile-snowflakeconnectorprofileproperties-warehouse"></a>
 The name of the Snowflake warehouse.   
*Required*: Yes  
*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)

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



# AWS::AppFlow::ConnectorProfile TrendmicroConnectorProfileCredentials
<a name="aws-properties-appflow-connectorprofile-trendmicroconnectorprofilecredentials"></a>

 The connector-specific profile credentials required when using Trend Micro. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-trendmicroconnectorprofilecredentials-syntax"></a>

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

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

```
{
  "[ApiSecretKey](#cfn-appflow-connectorprofile-trendmicroconnectorprofilecredentials-apisecretkey)" : String
}
```

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

```
  [ApiSecretKey](#cfn-appflow-connectorprofile-trendmicroconnectorprofilecredentials-apisecretkey): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-trendmicroconnectorprofilecredentials-properties"></a>

`ApiSecretKey`  <a name="cfn-appflow-connectorprofile-trendmicroconnectorprofilecredentials-apisecretkey"></a>
 The Secret Access Key portion of the credentials.   
*Required*: Yes  
*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)

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



# AWS::AppFlow::ConnectorProfile VeevaConnectorProfileCredentials
<a name="aws-properties-appflow-connectorprofile-veevaconnectorprofilecredentials"></a>

 The connector-specific profile credentials required when using Veeva. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-veevaconnectorprofilecredentials-syntax"></a>

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

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

```
{
  "[Password](#cfn-appflow-connectorprofile-veevaconnectorprofilecredentials-password)" : String,
  "[Username](#cfn-appflow-connectorprofile-veevaconnectorprofilecredentials-username)" : String
}
```

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

```
  [Password](#cfn-appflow-connectorprofile-veevaconnectorprofilecredentials-password): String
  [Username](#cfn-appflow-connectorprofile-veevaconnectorprofilecredentials-username): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-veevaconnectorprofilecredentials-properties"></a>

`Password`  <a name="cfn-appflow-connectorprofile-veevaconnectorprofilecredentials-password"></a>
 The password that corresponds to the user name.   
*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)

`Username`  <a name="cfn-appflow-connectorprofile-veevaconnectorprofilecredentials-username"></a>
 The name of the user.   
*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-connectorprofile-veevaconnectorprofilecredentials--seealso"></a>
+ [VeevaConnectorProfileCredentials](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_VeevaConnectorProfileCredentials.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::ConnectorProfile VeevaConnectorProfileProperties
<a name="aws-properties-appflow-connectorprofile-veevaconnectorprofileproperties"></a>

 The connector-specific profile properties required when using Veeva. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-veevaconnectorprofileproperties-syntax"></a>

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

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

```
{
  "[InstanceUrl](#cfn-appflow-connectorprofile-veevaconnectorprofileproperties-instanceurl)" : String
}
```

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

```
  [InstanceUrl](#cfn-appflow-connectorprofile-veevaconnectorprofileproperties-instanceurl): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-veevaconnectorprofileproperties-properties"></a>

`InstanceUrl`  <a name="cfn-appflow-connectorprofile-veevaconnectorprofileproperties-instanceurl"></a>
 The location of the Veeva resource.   
*Required*: Yes  
*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)

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



# AWS::AppFlow::ConnectorProfile ZendeskConnectorProfileCredentials
<a name="aws-properties-appflow-connectorprofile-zendeskconnectorprofilecredentials"></a>

 The connector-specific profile credentials required when using Zendesk. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-zendeskconnectorprofilecredentials-syntax"></a>

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

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

```
{
  "[AccessToken](#cfn-appflow-connectorprofile-zendeskconnectorprofilecredentials-accesstoken)" : String,
  "[ClientId](#cfn-appflow-connectorprofile-zendeskconnectorprofilecredentials-clientid)" : String,
  "[ClientSecret](#cfn-appflow-connectorprofile-zendeskconnectorprofilecredentials-clientsecret)" : String,
  "[ConnectorOAuthRequest](#cfn-appflow-connectorprofile-zendeskconnectorprofilecredentials-connectoroauthrequest)" : ConnectorOAuthRequest
}
```

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

```
  [AccessToken](#cfn-appflow-connectorprofile-zendeskconnectorprofilecredentials-accesstoken): String
  [ClientId](#cfn-appflow-connectorprofile-zendeskconnectorprofilecredentials-clientid): String
  [ClientSecret](#cfn-appflow-connectorprofile-zendeskconnectorprofilecredentials-clientsecret): String
  [ConnectorOAuthRequest](#cfn-appflow-connectorprofile-zendeskconnectorprofilecredentials-connectoroauthrequest): 
    ConnectorOAuthRequest
```

## Properties
<a name="aws-properties-appflow-connectorprofile-zendeskconnectorprofilecredentials-properties"></a>

`AccessToken`  <a name="cfn-appflow-connectorprofile-zendeskconnectorprofilecredentials-accesstoken"></a>
 The credentials used to access protected Zendesk resources.   
*Required*: No  
*Type*: String  
*Pattern*: `\S+`  
*Maximum*: `4096`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ClientId`  <a name="cfn-appflow-connectorprofile-zendeskconnectorprofilecredentials-clientid"></a>
 The identifier for the desired client.   
*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)

`ClientSecret`  <a name="cfn-appflow-connectorprofile-zendeskconnectorprofilecredentials-clientsecret"></a>
 The client secret used by the OAuth client to authenticate to the authorization server.   
*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)

`ConnectorOAuthRequest`  <a name="cfn-appflow-connectorprofile-zendeskconnectorprofilecredentials-connectoroauthrequest"></a>
 Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.   
*Required*: No  
*Type*: [ConnectorOAuthRequest](aws-properties-appflow-connectorprofile-connectoroauthrequest.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-connectorprofile-zendeskconnectorprofilecredentials--seealso"></a>
+ [ZendeskConnectorProfileCredentials](https://docs.aws.amazon.com/appflow/1.0/APIReference/API_ZendeskConnectorProfileCredentials.html) in the *Amazon AppFlow API Reference*.



# AWS::AppFlow::ConnectorProfile ZendeskConnectorProfileProperties
<a name="aws-properties-appflow-connectorprofile-zendeskconnectorprofileproperties"></a>

 The connector-specific profile properties required when using Zendesk. 

## Syntax
<a name="aws-properties-appflow-connectorprofile-zendeskconnectorprofileproperties-syntax"></a>

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

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

```
{
  "[InstanceUrl](#cfn-appflow-connectorprofile-zendeskconnectorprofileproperties-instanceurl)" : String
}
```

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

```
  [InstanceUrl](#cfn-appflow-connectorprofile-zendeskconnectorprofileproperties-instanceurl): String
```

## Properties
<a name="aws-properties-appflow-connectorprofile-zendeskconnectorprofileproperties-properties"></a>

`InstanceUrl`  <a name="cfn-appflow-connectorprofile-zendeskconnectorprofileproperties-instanceurl"></a>
 The location of the Zendesk resource.   
*Required*: Yes  
*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)

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



# 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*.

