aws logo
AWS Classic v5.32.0, Mar 17 23

aws.appflow.Flow

Provides an AppFlow flow resource.

Example Usage

Coming soon!

Coming soon!

package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.s3.BucketV2;
import com.pulumi.aws.iam.IamFunctions;
import com.pulumi.aws.iam.inputs.GetPolicyDocumentArgs;
import com.pulumi.aws.s3.BucketPolicy;
import com.pulumi.aws.s3.BucketPolicyArgs;
import com.pulumi.aws.s3.BucketObjectv2;
import com.pulumi.aws.s3.BucketObjectv2Args;
import com.pulumi.aws.appflow.Flow;
import com.pulumi.aws.appflow.FlowArgs;
import com.pulumi.aws.appflow.inputs.FlowSourceFlowConfigArgs;
import com.pulumi.aws.appflow.inputs.FlowSourceFlowConfigSourceConnectorPropertiesArgs;
import com.pulumi.aws.appflow.inputs.FlowSourceFlowConfigSourceConnectorPropertiesS3Args;
import com.pulumi.aws.appflow.inputs.FlowDestinationFlowConfigArgs;
import com.pulumi.aws.appflow.inputs.FlowDestinationFlowConfigDestinationConnectorPropertiesArgs;
import com.pulumi.aws.appflow.inputs.FlowDestinationFlowConfigDestinationConnectorPropertiesS3Args;
import com.pulumi.aws.appflow.inputs.FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfigArgs;
import com.pulumi.aws.appflow.inputs.FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfigPrefixConfigArgs;
import com.pulumi.aws.appflow.inputs.FlowTaskArgs;
import com.pulumi.aws.appflow.inputs.FlowTriggerConfigArgs;
import com.pulumi.asset.FileAsset;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var exampleSourceBucketV2 = new BucketV2("exampleSourceBucketV2");

        final var exampleSourcePolicyDocument = IamFunctions.getPolicyDocument(GetPolicyDocumentArgs.builder()
            .statements(GetPolicyDocumentStatementArgs.builder()
                .sid("AllowAppFlowSourceActions")
                .effect("Allow")
                .principals(GetPolicyDocumentStatementPrincipalArgs.builder()
                    .type("Service")
                    .identifiers("appflow.amazonaws.com")
                    .build())
                .actions(                
                    "s3:ListBucket",
                    "s3:GetObject")
                .resources(                
                    "arn:aws:s3:::example_source",
                    "arn:aws:s3:::example_source/*")
                .build())
            .build());

        var exampleSourceBucketPolicy = new BucketPolicy("exampleSourceBucketPolicy", BucketPolicyArgs.builder()        
            .bucket(exampleSourceBucketV2.id())
            .policy(exampleSourcePolicyDocument.applyValue(getPolicyDocumentResult -> getPolicyDocumentResult.json()))
            .build());

        var exampleBucketObjectv2 = new BucketObjectv2("exampleBucketObjectv2", BucketObjectv2Args.builder()        
            .bucket(exampleSourceBucketV2.id())
            .key("example_source.csv")
            .source(new FileAsset("example_source.csv"))
            .build());

        var exampleDestinationBucketV2 = new BucketV2("exampleDestinationBucketV2");

        final var exampleDestinationPolicyDocument = IamFunctions.getPolicyDocument(GetPolicyDocumentArgs.builder()
            .sid("AllowAppFlowDestinationActions")
            .effect("Allow")
            .principals(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
            .actions(            
                "s3:PutObject",
                "s3:AbortMultipartUpload",
                "s3:ListMultipartUploadParts",
                "s3:ListBucketMultipartUploads",
                "s3:GetBucketAcl",
                "s3:PutObjectAcl")
            .resources(            
                "arn:aws:s3:::example_destination",
                "arn:aws:s3:::example_destination/*")
            .build());

        var exampleDestinationBucketPolicy = new BucketPolicy("exampleDestinationBucketPolicy", BucketPolicyArgs.builder()        
            .bucket(exampleDestinationBucketV2.id())
            .policy(exampleDestinationPolicyDocument.applyValue(getPolicyDocumentResult -> getPolicyDocumentResult.json()))
            .build());

        var exampleFlow = new Flow("exampleFlow", FlowArgs.builder()        
            .sourceFlowConfig(FlowSourceFlowConfigArgs.builder()
                .connectorType("S3")
                .sourceConnectorProperties(FlowSourceFlowConfigSourceConnectorPropertiesArgs.builder()
                    .s3(FlowSourceFlowConfigSourceConnectorPropertiesS3Args.builder()
                        .bucketName(exampleSourceBucketPolicy.bucket())
                        .bucketPrefix("example")
                        .build())
                    .build())
                .build())
            .destinationFlowConfigs(FlowDestinationFlowConfigArgs.builder()
                .connectorType("S3")
                .destinationConnectorProperties(FlowDestinationFlowConfigDestinationConnectorPropertiesArgs.builder()
                    .s3(FlowDestinationFlowConfigDestinationConnectorPropertiesS3Args.builder()
                        .bucketName(exampleDestinationBucketPolicy.bucket())
                        .s3OutputFormatConfig(FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfigArgs.builder()
                            .prefixConfig(FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfigPrefixConfigArgs.builder()
                                .prefixType("PATH")
                                .build())
                            .build())
                        .build())
                    .build())
                .build())
            .tasks(FlowTaskArgs.builder()
                .sourceFields("exampleField")
                .destinationField("exampleField")
                .taskType("Map")
                .connectorOperators(FlowTaskConnectorOperatorArgs.builder()
                    .s3("NO_OP")
                    .build())
                .build())
            .triggerConfig(FlowTriggerConfigArgs.builder()
                .triggerType("OnDemand")
                .build())
            .build());

    }
}

Coming soon!

Coming soon!

resources:
  exampleSourceBucketV2:
    type: aws:s3:BucketV2
  exampleSourceBucketPolicy:
    type: aws:s3:BucketPolicy
    properties:
      bucket: ${exampleSourceBucketV2.id}
      policy: ${exampleSourcePolicyDocument.json}
  exampleBucketObjectv2:
    type: aws:s3:BucketObjectv2
    properties:
      bucket: ${exampleSourceBucketV2.id}
      key: example_source.csv
      source:
        fn::FileAsset: example_source.csv
  exampleDestinationBucketV2:
    type: aws:s3:BucketV2
  exampleDestinationBucketPolicy:
    type: aws:s3:BucketPolicy
    properties:
      bucket: ${exampleDestinationBucketV2.id}
      policy: ${exampleDestinationPolicyDocument.json}
  exampleFlow:
    type: aws:appflow:Flow
    properties:
      sourceFlowConfig:
        connectorType: S3
        sourceConnectorProperties:
          s3:
            bucketName: ${exampleSourceBucketPolicy.bucket}
            bucketPrefix: example
      destinationFlowConfigs:
        - connectorType: S3
          destinationConnectorProperties:
            s3:
              bucketName: ${exampleDestinationBucketPolicy.bucket}
              s3OutputFormatConfig:
                prefixConfig:
                  prefixType: PATH
      tasks:
        - sourceFields:
            - exampleField
          destinationField: exampleField
          taskType: Map
          connectorOperators:
            - s3: NO_OP
      triggerConfig:
        triggerType: OnDemand
variables:
  exampleSourcePolicyDocument:
    fn::invoke:
      Function: aws:iam:getPolicyDocument
      Arguments:
        statements:
          - sid: AllowAppFlowSourceActions
            effect: Allow
            principals:
              - type: Service
                identifiers:
                  - appflow.amazonaws.com
            actions:
              - s3:ListBucket
              - s3:GetObject
            resources:
              - arn:aws:s3:::example_source
              - arn:aws:s3:::example_source/*
  exampleDestinationPolicyDocument:
    fn::invoke:
      Function: aws:iam:getPolicyDocument
      Arguments:
        sid: AllowAppFlowDestinationActions
        effect: Allow
        principals:
          - type: Service
            identifiers:
              - appflow.amazonaws.com
        actions:
          - s3:PutObject
          - s3:AbortMultipartUpload
          - s3:ListMultipartUploadParts
          - s3:ListBucketMultipartUploads
          - s3:GetBucketAcl
          - s3:PutObjectAcl
        resources:
          - arn:aws:s3:::example_destination
          - arn:aws:s3:::example_destination/*

Create Flow Resource

new Flow(name: string, args: FlowArgs, opts?: CustomResourceOptions);
@overload
def Flow(resource_name: str,
         opts: Optional[ResourceOptions] = None,
         description: Optional[str] = None,
         destination_flow_configs: Optional[Sequence[FlowDestinationFlowConfigArgs]] = None,
         kms_arn: Optional[str] = None,
         name: Optional[str] = None,
         source_flow_config: Optional[FlowSourceFlowConfigArgs] = None,
         tags: Optional[Mapping[str, str]] = None,
         tags_all: Optional[Mapping[str, str]] = None,
         tasks: Optional[Sequence[FlowTaskArgs]] = None,
         trigger_config: Optional[FlowTriggerConfigArgs] = None)
@overload
def Flow(resource_name: str,
         args: FlowArgs,
         opts: Optional[ResourceOptions] = None)
func NewFlow(ctx *Context, name string, args FlowArgs, opts ...ResourceOption) (*Flow, error)
public Flow(string name, FlowArgs args, CustomResourceOptions? opts = null)
public Flow(String name, FlowArgs args)
public Flow(String name, FlowArgs args, CustomResourceOptions options)
type: aws:appflow:Flow
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args FlowArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
args FlowArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args FlowArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args FlowArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args FlowArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Flow Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

The Flow resource accepts the following input properties:

DestinationFlowConfigs List<FlowDestinationFlowConfigArgs>

A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.

SourceFlowConfig FlowSourceFlowConfigArgs

The Source Flow Config that controls how Amazon AppFlow retrieves data from the source connector.

Tasks List<FlowTaskArgs>

A Task that Amazon AppFlow performs while transferring the data in the flow run.

TriggerConfig FlowTriggerConfigArgs

A Trigger that determine how and when the flow runs.

Description string

Description of the flow you want to create.

KmsArn string

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.

Name string

Name of the flow.

Tags Dictionary<string, string>

Key-value mapping of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

TagsAll Dictionary<string, string>

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

DestinationFlowConfigs []FlowDestinationFlowConfigArgs

A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.

SourceFlowConfig FlowSourceFlowConfigArgs

The Source Flow Config that controls how Amazon AppFlow retrieves data from the source connector.

Tasks []FlowTaskArgs

A Task that Amazon AppFlow performs while transferring the data in the flow run.

TriggerConfig FlowTriggerConfigArgs

A Trigger that determine how and when the flow runs.

Description string

Description of the flow you want to create.

KmsArn string

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.

Name string

Name of the flow.

Tags map[string]string

Key-value mapping of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

TagsAll map[string]string

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

destinationFlowConfigs List<FlowDestinationFlowConfigArgs>

A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.

sourceFlowConfig FlowSourceFlowConfigArgs

The Source Flow Config that controls how Amazon AppFlow retrieves data from the source connector.

tasks List<FlowTaskArgs>

A Task that Amazon AppFlow performs while transferring the data in the flow run.

triggerConfig FlowTriggerConfigArgs

A Trigger that determine how and when the flow runs.

description String

Description of the flow you want to create.

kmsArn String

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.

name String

Name of the flow.

tags Map<String,String>

Key-value mapping of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tagsAll Map<String,String>

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

destinationFlowConfigs FlowDestinationFlowConfigArgs[]

A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.

sourceFlowConfig FlowSourceFlowConfigArgs

The Source Flow Config that controls how Amazon AppFlow retrieves data from the source connector.

tasks FlowTaskArgs[]

A Task that Amazon AppFlow performs while transferring the data in the flow run.

triggerConfig FlowTriggerConfigArgs

A Trigger that determine how and when the flow runs.

description string

Description of the flow you want to create.

kmsArn string

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.

name string

Name of the flow.

tags {[key: string]: string}

Key-value mapping of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tagsAll {[key: string]: string}

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

destination_flow_configs Sequence[FlowDestinationFlowConfigArgs]

A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.

source_flow_config FlowSourceFlowConfigArgs

The Source Flow Config that controls how Amazon AppFlow retrieves data from the source connector.

tasks Sequence[FlowTaskArgs]

A Task that Amazon AppFlow performs while transferring the data in the flow run.

trigger_config FlowTriggerConfigArgs

A Trigger that determine how and when the flow runs.

description str

Description of the flow you want to create.

kms_arn str

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.

name str

Name of the flow.

tags Mapping[str, str]

Key-value mapping of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tags_all Mapping[str, str]

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

destinationFlowConfigs List<Property Map>

A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.

sourceFlowConfig Property Map

The Source Flow Config that controls how Amazon AppFlow retrieves data from the source connector.

tasks List<Property Map>

A Task that Amazon AppFlow performs while transferring the data in the flow run.

triggerConfig Property Map

A Trigger that determine how and when the flow runs.

description String

Description of the flow you want to create.

kmsArn String

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.

name String

Name of the flow.

tags Map<String>

Key-value mapping of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tagsAll Map<String>

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Outputs

All input properties are implicitly available as output properties. Additionally, the Flow resource produces the following output properties:

Arn string

Flow's ARN.

Id string

The provider-assigned unique ID for this managed resource.

Arn string

Flow's ARN.

Id string

The provider-assigned unique ID for this managed resource.

arn String

Flow's ARN.

id String

The provider-assigned unique ID for this managed resource.

arn string

Flow's ARN.

id string

The provider-assigned unique ID for this managed resource.

arn str

Flow's ARN.

id str

The provider-assigned unique ID for this managed resource.

arn String

Flow's ARN.

id String

The provider-assigned unique ID for this managed resource.

Look up Existing Flow Resource

Get an existing Flow resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: FlowState, opts?: CustomResourceOptions): Flow
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        description: Optional[str] = None,
        destination_flow_configs: Optional[Sequence[FlowDestinationFlowConfigArgs]] = None,
        kms_arn: Optional[str] = None,
        name: Optional[str] = None,
        source_flow_config: Optional[FlowSourceFlowConfigArgs] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None,
        tasks: Optional[Sequence[FlowTaskArgs]] = None,
        trigger_config: Optional[FlowTriggerConfigArgs] = None) -> Flow
func GetFlow(ctx *Context, name string, id IDInput, state *FlowState, opts ...ResourceOption) (*Flow, error)
public static Flow Get(string name, Input<string> id, FlowState? state, CustomResourceOptions? opts = null)
public static Flow get(String name, Output<String> id, FlowState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Arn string

Flow's ARN.

Description string

Description of the flow you want to create.

DestinationFlowConfigs List<FlowDestinationFlowConfigArgs>

A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.

KmsArn string

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.

Name string

Name of the flow.

SourceFlowConfig FlowSourceFlowConfigArgs

The Source Flow Config that controls how Amazon AppFlow retrieves data from the source connector.

Tags Dictionary<string, string>

Key-value mapping of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

TagsAll Dictionary<string, string>

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Tasks List<FlowTaskArgs>

A Task that Amazon AppFlow performs while transferring the data in the flow run.

TriggerConfig FlowTriggerConfigArgs

A Trigger that determine how and when the flow runs.

Arn string

Flow's ARN.

Description string

Description of the flow you want to create.

DestinationFlowConfigs []FlowDestinationFlowConfigArgs

A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.

KmsArn string

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.

Name string

Name of the flow.

SourceFlowConfig FlowSourceFlowConfigArgs

The Source Flow Config that controls how Amazon AppFlow retrieves data from the source connector.

Tags map[string]string

Key-value mapping of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

TagsAll map[string]string

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Tasks []FlowTaskArgs

A Task that Amazon AppFlow performs while transferring the data in the flow run.

TriggerConfig FlowTriggerConfigArgs

A Trigger that determine how and when the flow runs.

arn String

Flow's ARN.

description String

Description of the flow you want to create.

destinationFlowConfigs List<FlowDestinationFlowConfigArgs>

A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.

kmsArn String

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.

name String

Name of the flow.

sourceFlowConfig FlowSourceFlowConfigArgs

The Source Flow Config that controls how Amazon AppFlow retrieves data from the source connector.

tags Map<String,String>

Key-value mapping of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tagsAll Map<String,String>

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

tasks List<FlowTaskArgs>

A Task that Amazon AppFlow performs while transferring the data in the flow run.

triggerConfig FlowTriggerConfigArgs

A Trigger that determine how and when the flow runs.

arn string

Flow's ARN.

description string

Description of the flow you want to create.

destinationFlowConfigs FlowDestinationFlowConfigArgs[]

A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.

kmsArn string

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.

name string

Name of the flow.

sourceFlowConfig FlowSourceFlowConfigArgs

The Source Flow Config that controls how Amazon AppFlow retrieves data from the source connector.

tags {[key: string]: string}

Key-value mapping of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tagsAll {[key: string]: string}

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

tasks FlowTaskArgs[]

A Task that Amazon AppFlow performs while transferring the data in the flow run.

triggerConfig FlowTriggerConfigArgs

A Trigger that determine how and when the flow runs.

arn str

Flow's ARN.

description str

Description of the flow you want to create.

destination_flow_configs Sequence[FlowDestinationFlowConfigArgs]

A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.

kms_arn str

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.

name str

Name of the flow.

source_flow_config FlowSourceFlowConfigArgs

The Source Flow Config that controls how Amazon AppFlow retrieves data from the source connector.

tags Mapping[str, str]

Key-value mapping of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tags_all Mapping[str, str]

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

tasks Sequence[FlowTaskArgs]

A Task that Amazon AppFlow performs while transferring the data in the flow run.

trigger_config FlowTriggerConfigArgs

A Trigger that determine how and when the flow runs.

arn String

Flow's ARN.

description String

Description of the flow you want to create.

destinationFlowConfigs List<Property Map>

A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.

kmsArn String

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.

name String

Name of the flow.

sourceFlowConfig Property Map

The Source Flow Config that controls how Amazon AppFlow retrieves data from the source connector.

tags Map<String>

Key-value mapping of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tagsAll Map<String>

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

tasks List<Property Map>

A Task that Amazon AppFlow performs while transferring the data in the flow run.

triggerConfig Property Map

A Trigger that determine how and when the flow runs.

Supporting Types

FlowDestinationFlowConfig

ConnectorType string

Type of connector, such as Salesforce, Amplitude, and so on. Valid values are Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles, SAPOData, and CustomConnector.

DestinationConnectorProperties FlowDestinationFlowConfigDestinationConnectorProperties

This stores the information that is required to query a particular connector. See Destination Connector Properties for more information.

ApiVersion string

API version that the destination connector uses.

ConnectorProfileName string

Name of the connector profile. This name must be unique for each connector profile in the AWS account.

ConnectorType string

Type of connector, such as Salesforce, Amplitude, and so on. Valid values are Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles, SAPOData, and CustomConnector.

DestinationConnectorProperties FlowDestinationFlowConfigDestinationConnectorProperties

This stores the information that is required to query a particular connector. See Destination Connector Properties for more information.

ApiVersion string

API version that the destination connector uses.

ConnectorProfileName string

Name of the connector profile. This name must be unique for each connector profile in the AWS account.

connectorType String

Type of connector, such as Salesforce, Amplitude, and so on. Valid values are Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles, SAPOData, and CustomConnector.

destinationConnectorProperties FlowDestinationFlowConfigDestinationConnectorProperties

This stores the information that is required to query a particular connector. See Destination Connector Properties for more information.

apiVersion String

API version that the destination connector uses.

connectorProfileName String

Name of the connector profile. This name must be unique for each connector profile in the AWS account.

connectorType string

Type of connector, such as Salesforce, Amplitude, and so on. Valid values are Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles, SAPOData, and CustomConnector.

destinationConnectorProperties FlowDestinationFlowConfigDestinationConnectorProperties

This stores the information that is required to query a particular connector. See Destination Connector Properties for more information.

apiVersion string

API version that the destination connector uses.

connectorProfileName string

Name of the connector profile. This name must be unique for each connector profile in the AWS account.

connector_type str

Type of connector, such as Salesforce, Amplitude, and so on. Valid values are Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles, SAPOData, and CustomConnector.

destination_connector_properties FlowDestinationFlowConfigDestinationConnectorProperties

This stores the information that is required to query a particular connector. See Destination Connector Properties for more information.

api_version str

API version that the destination connector uses.

connector_profile_name str

Name of the connector profile. This name must be unique for each connector profile in the AWS account.

connectorType String

Type of connector, such as Salesforce, Amplitude, and so on. Valid values are Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles, SAPOData, and CustomConnector.

destinationConnectorProperties Property Map

This stores the information that is required to query a particular connector. See Destination Connector Properties for more information.

apiVersion String

API version that the destination connector uses.

connectorProfileName String

Name of the connector profile. This name must be unique for each connector profile in the AWS account.

FlowDestinationFlowConfigDestinationConnectorProperties

CustomConnector FlowDestinationFlowConfigDestinationConnectorPropertiesCustomConnector

Properties that are required to query the custom Connector. See Custom Connector Destination Properties for more details.

CustomerProfiles FlowDestinationFlowConfigDestinationConnectorPropertiesCustomerProfiles

Properties that are required to query Amazon Connect Customer Profiles. See Customer Profiles Destination Properties for more details.

EventBridge FlowDestinationFlowConfigDestinationConnectorPropertiesEventBridge

Properties that are required to query Amazon EventBridge. See Generic Destination Properties for more details.

Honeycode FlowDestinationFlowConfigDestinationConnectorPropertiesHoneycode

Properties that are required to query Amazon Honeycode. See Generic Destination Properties for more details.

LookoutMetrics FlowDestinationFlowConfigDestinationConnectorPropertiesLookoutMetrics
Marketo FlowDestinationFlowConfigDestinationConnectorPropertiesMarketo

Properties that are required to query Marketo. See Generic Destination Properties for more details.

Redshift FlowDestinationFlowConfigDestinationConnectorPropertiesRedshift

Properties that are required to query Amazon Redshift. See Redshift Destination Properties for more details.

S3 FlowDestinationFlowConfigDestinationConnectorPropertiesS3

Properties that are required to query Amazon S3. See S3 Destination Properties for more details.

Salesforce FlowDestinationFlowConfigDestinationConnectorPropertiesSalesforce

Properties that are required to query Salesforce. See Salesforce Destination Properties for more details.

SapoData FlowDestinationFlowConfigDestinationConnectorPropertiesSapoData

Properties that are required to query SAPOData. See SAPOData Destination Properties for more details.

Snowflake FlowDestinationFlowConfigDestinationConnectorPropertiesSnowflake

Properties that are required to query Snowflake. See Snowflake Destination Properties for more details.

Upsolver FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolver

Properties that are required to query Upsolver. See Upsolver Destination Properties for more details.

Zendesk FlowDestinationFlowConfigDestinationConnectorPropertiesZendesk

Properties that are required to query Zendesk. See Zendesk Destination Properties for more details.

CustomConnector FlowDestinationFlowConfigDestinationConnectorPropertiesCustomConnector

Properties that are required to query the custom Connector. See Custom Connector Destination Properties for more details.

CustomerProfiles FlowDestinationFlowConfigDestinationConnectorPropertiesCustomerProfiles

Properties that are required to query Amazon Connect Customer Profiles. See Customer Profiles Destination Properties for more details.

EventBridge FlowDestinationFlowConfigDestinationConnectorPropertiesEventBridge

Properties that are required to query Amazon EventBridge. See Generic Destination Properties for more details.

Honeycode FlowDestinationFlowConfigDestinationConnectorPropertiesHoneycode

Properties that are required to query Amazon Honeycode. See Generic Destination Properties for more details.

LookoutMetrics FlowDestinationFlowConfigDestinationConnectorPropertiesLookoutMetrics
Marketo FlowDestinationFlowConfigDestinationConnectorPropertiesMarketo

Properties that are required to query Marketo. See Generic Destination Properties for more details.

Redshift FlowDestinationFlowConfigDestinationConnectorPropertiesRedshift

Properties that are required to query Amazon Redshift. See Redshift Destination Properties for more details.

S3 FlowDestinationFlowConfigDestinationConnectorPropertiesS3

Properties that are required to query Amazon S3. See S3 Destination Properties for more details.

Salesforce FlowDestinationFlowConfigDestinationConnectorPropertiesSalesforce

Properties that are required to query Salesforce. See Salesforce Destination Properties for more details.

SapoData FlowDestinationFlowConfigDestinationConnectorPropertiesSapoData

Properties that are required to query SAPOData. See SAPOData Destination Properties for more details.

Snowflake FlowDestinationFlowConfigDestinationConnectorPropertiesSnowflake

Properties that are required to query Snowflake. See Snowflake Destination Properties for more details.

Upsolver FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolver

Properties that are required to query Upsolver. See Upsolver Destination Properties for more details.

Zendesk FlowDestinationFlowConfigDestinationConnectorPropertiesZendesk

Properties that are required to query Zendesk. See Zendesk Destination Properties for more details.

customConnector FlowDestinationFlowConfigDestinationConnectorPropertiesCustomConnector

Properties that are required to query the custom Connector. See Custom Connector Destination Properties for more details.

customerProfiles FlowDestinationFlowConfigDestinationConnectorPropertiesCustomerProfiles

Properties that are required to query Amazon Connect Customer Profiles. See Customer Profiles Destination Properties for more details.

eventBridge FlowDestinationFlowConfigDestinationConnectorPropertiesEventBridge

Properties that are required to query Amazon EventBridge. See Generic Destination Properties for more details.

honeycode FlowDestinationFlowConfigDestinationConnectorPropertiesHoneycode

Properties that are required to query Amazon Honeycode. See Generic Destination Properties for more details.

lookoutMetrics FlowDestinationFlowConfigDestinationConnectorPropertiesLookoutMetrics
marketo FlowDestinationFlowConfigDestinationConnectorPropertiesMarketo

Properties that are required to query Marketo. See Generic Destination Properties for more details.

redshift FlowDestinationFlowConfigDestinationConnectorPropertiesRedshift

Properties that are required to query Amazon Redshift. See Redshift Destination Properties for more details.

s3 FlowDestinationFlowConfigDestinationConnectorPropertiesS3

Properties that are required to query Amazon S3. See S3 Destination Properties for more details.

salesforce FlowDestinationFlowConfigDestinationConnectorPropertiesSalesforce

Properties that are required to query Salesforce. See Salesforce Destination Properties for more details.

sapoData FlowDestinationFlowConfigDestinationConnectorPropertiesSapoData

Properties that are required to query SAPOData. See SAPOData Destination Properties for more details.

snowflake FlowDestinationFlowConfigDestinationConnectorPropertiesSnowflake

Properties that are required to query Snowflake. See Snowflake Destination Properties for more details.

upsolver FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolver

Properties that are required to query Upsolver. See Upsolver Destination Properties for more details.

zendesk FlowDestinationFlowConfigDestinationConnectorPropertiesZendesk

Properties that are required to query Zendesk. See Zendesk Destination Properties for more details.

customConnector FlowDestinationFlowConfigDestinationConnectorPropertiesCustomConnector

Properties that are required to query the custom Connector. See Custom Connector Destination Properties for more details.

customerProfiles FlowDestinationFlowConfigDestinationConnectorPropertiesCustomerProfiles

Properties that are required to query Amazon Connect Customer Profiles. See Customer Profiles Destination Properties for more details.

eventBridge FlowDestinationFlowConfigDestinationConnectorPropertiesEventBridge

Properties that are required to query Amazon EventBridge. See Generic Destination Properties for more details.

honeycode FlowDestinationFlowConfigDestinationConnectorPropertiesHoneycode

Properties that are required to query Amazon Honeycode. See Generic Destination Properties for more details.

lookoutMetrics FlowDestinationFlowConfigDestinationConnectorPropertiesLookoutMetrics
marketo FlowDestinationFlowConfigDestinationConnectorPropertiesMarketo

Properties that are required to query Marketo. See Generic Destination Properties for more details.

redshift FlowDestinationFlowConfigDestinationConnectorPropertiesRedshift

Properties that are required to query Amazon Redshift. See Redshift Destination Properties for more details.

s3 FlowDestinationFlowConfigDestinationConnectorPropertiesS3

Properties that are required to query Amazon S3. See S3 Destination Properties for more details.

salesforce FlowDestinationFlowConfigDestinationConnectorPropertiesSalesforce

Properties that are required to query Salesforce. See Salesforce Destination Properties for more details.

sapoData FlowDestinationFlowConfigDestinationConnectorPropertiesSapoData

Properties that are required to query SAPOData. See SAPOData Destination Properties for more details.

snowflake FlowDestinationFlowConfigDestinationConnectorPropertiesSnowflake

Properties that are required to query Snowflake. See Snowflake Destination Properties for more details.

upsolver FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolver

Properties that are required to query Upsolver. See Upsolver Destination Properties for more details.

zendesk FlowDestinationFlowConfigDestinationConnectorPropertiesZendesk

Properties that are required to query Zendesk. See Zendesk Destination Properties for more details.

custom_connector FlowDestinationFlowConfigDestinationConnectorPropertiesCustomConnector

Properties that are required to query the custom Connector. See Custom Connector Destination Properties for more details.

customer_profiles FlowDestinationFlowConfigDestinationConnectorPropertiesCustomerProfiles

Properties that are required to query Amazon Connect Customer Profiles. See Customer Profiles Destination Properties for more details.

event_bridge FlowDestinationFlowConfigDestinationConnectorPropertiesEventBridge

Properties that are required to query Amazon EventBridge. See Generic Destination Properties for more details.

honeycode FlowDestinationFlowConfigDestinationConnectorPropertiesHoneycode

Properties that are required to query Amazon Honeycode. See Generic Destination Properties for more details.

lookout_metrics FlowDestinationFlowConfigDestinationConnectorPropertiesLookoutMetrics
marketo FlowDestinationFlowConfigDestinationConnectorPropertiesMarketo

Properties that are required to query Marketo. See Generic Destination Properties for more details.

redshift FlowDestinationFlowConfigDestinationConnectorPropertiesRedshift

Properties that are required to query Amazon Redshift. See Redshift Destination Properties for more details.

s3 FlowDestinationFlowConfigDestinationConnectorPropertiesS3

Properties that are required to query Amazon S3. See S3 Destination Properties for more details.

salesforce FlowDestinationFlowConfigDestinationConnectorPropertiesSalesforce

Properties that are required to query Salesforce. See Salesforce Destination Properties for more details.

sapo_data FlowDestinationFlowConfigDestinationConnectorPropertiesSapoData

Properties that are required to query SAPOData. See SAPOData Destination Properties for more details.

snowflake FlowDestinationFlowConfigDestinationConnectorPropertiesSnowflake

Properties that are required to query Snowflake. See Snowflake Destination Properties for more details.

upsolver FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolver

Properties that are required to query Upsolver. See Upsolver Destination Properties for more details.

zendesk FlowDestinationFlowConfigDestinationConnectorPropertiesZendesk

Properties that are required to query Zendesk. See Zendesk Destination Properties for more details.

customConnector Property Map

Properties that are required to query the custom Connector. See Custom Connector Destination Properties for more details.

customerProfiles Property Map

Properties that are required to query Amazon Connect Customer Profiles. See Customer Profiles Destination Properties for more details.

eventBridge Property Map

Properties that are required to query Amazon EventBridge. See Generic Destination Properties for more details.

honeycode Property Map

Properties that are required to query Amazon Honeycode. See Generic Destination Properties for more details.

lookoutMetrics Property Map
marketo Property Map

Properties that are required to query Marketo. See Generic Destination Properties for more details.

redshift Property Map

Properties that are required to query Amazon Redshift. See Redshift Destination Properties for more details.

s3 Property Map

Properties that are required to query Amazon S3. See S3 Destination Properties for more details.

salesforce Property Map

Properties that are required to query Salesforce. See Salesforce Destination Properties for more details.

sapoData Property Map

Properties that are required to query SAPOData. See SAPOData Destination Properties for more details.

snowflake Property Map

Properties that are required to query Snowflake. See Snowflake Destination Properties for more details.

upsolver Property Map

Properties that are required to query Upsolver. See Upsolver Destination Properties for more details.

zendesk Property Map

Properties that are required to query Zendesk. See Zendesk Destination Properties for more details.

FlowDestinationFlowConfigDestinationConnectorPropertiesCustomConnector

EntityName string

Entity specified in the custom connector as a destination in the flow.

CustomProperties Dictionary<string, string>

Custom properties that are specific to the connector when it's used as a destination in the flow. Maximum of 50 items.

ErrorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesCustomConnectorErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

IdFieldNames List<string>

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

WriteOperationType string

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

EntityName string

Entity specified in the custom connector as a destination in the flow.

CustomProperties map[string]string

Custom properties that are specific to the connector when it's used as a destination in the flow. Maximum of 50 items.

ErrorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesCustomConnectorErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

IdFieldNames []string

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

WriteOperationType string

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

entityName String

Entity specified in the custom connector as a destination in the flow.

customProperties Map<String,String>

Custom properties that are specific to the connector when it's used as a destination in the flow. Maximum of 50 items.

errorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesCustomConnectorErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

idFieldNames List<String>

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

writeOperationType String

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

entityName string

Entity specified in the custom connector as a destination in the flow.

customProperties {[key: string]: string}

Custom properties that are specific to the connector when it's used as a destination in the flow. Maximum of 50 items.

errorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesCustomConnectorErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

idFieldNames string[]

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

writeOperationType string

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

entity_name str

Entity specified in the custom connector as a destination in the flow.

custom_properties Mapping[str, str]

Custom properties that are specific to the connector when it's used as a destination in the flow. Maximum of 50 items.

error_handling_config FlowDestinationFlowConfigDestinationConnectorPropertiesCustomConnectorErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

id_field_names Sequence[str]

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

write_operation_type str

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

entityName String

Entity specified in the custom connector as a destination in the flow.

customProperties Map<String>

Custom properties that are specific to the connector when it's used as a destination in the flow. Maximum of 50 items.

errorHandlingConfig Property Map

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

idFieldNames List<String>

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

writeOperationType String

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

FlowDestinationFlowConfigDestinationConnectorPropertiesCustomConnectorErrorHandlingConfig

BucketName string

Name of the Amazon S3 bucket.

BucketPrefix string

Amazon S3 bucket prefix.

FailOnFirstDestinationError bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

BucketName string

Name of the Amazon S3 bucket.

BucketPrefix string

Amazon S3 bucket prefix.

FailOnFirstDestinationError bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName String

Name of the Amazon S3 bucket.

bucketPrefix String

Amazon S3 bucket prefix.

failOnFirstDestinationError Boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName string

Name of the Amazon S3 bucket.

bucketPrefix string

Amazon S3 bucket prefix.

failOnFirstDestinationError boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucket_name str

Name of the Amazon S3 bucket.

bucket_prefix str

Amazon S3 bucket prefix.

fail_on_first_destination_error bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName String

Name of the Amazon S3 bucket.

bucketPrefix String

Amazon S3 bucket prefix.

failOnFirstDestinationError Boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

FlowDestinationFlowConfigDestinationConnectorPropertiesCustomerProfiles

DomainName string

Unique name of the Amazon Connect Customer Profiles domain.

ObjectTypeName string

Object specified in the Amazon Connect Customer Profiles flow destination.

DomainName string

Unique name of the Amazon Connect Customer Profiles domain.

ObjectTypeName string

Object specified in the Amazon Connect Customer Profiles flow destination.

domainName String

Unique name of the Amazon Connect Customer Profiles domain.

objectTypeName String

Object specified in the Amazon Connect Customer Profiles flow destination.

domainName string

Unique name of the Amazon Connect Customer Profiles domain.

objectTypeName string

Object specified in the Amazon Connect Customer Profiles flow destination.

domain_name str

Unique name of the Amazon Connect Customer Profiles domain.

object_type_name str

Object specified in the Amazon Connect Customer Profiles flow destination.

domainName String

Unique name of the Amazon Connect Customer Profiles domain.

objectTypeName String

Object specified in the Amazon Connect Customer Profiles flow destination.

FlowDestinationFlowConfigDestinationConnectorPropertiesEventBridge

Object string

Object specified in the flow destination.

ErrorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesEventBridgeErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

Object string

Object specified in the flow destination.

ErrorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesEventBridgeErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

object String

Object specified in the flow destination.

errorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesEventBridgeErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

object string

Object specified in the flow destination.

errorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesEventBridgeErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

object str

Object specified in the flow destination.

error_handling_config FlowDestinationFlowConfigDestinationConnectorPropertiesEventBridgeErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

object String

Object specified in the flow destination.

errorHandlingConfig Property Map

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

FlowDestinationFlowConfigDestinationConnectorPropertiesEventBridgeErrorHandlingConfig

BucketName string

Name of the Amazon S3 bucket.

BucketPrefix string

Amazon S3 bucket prefix.

FailOnFirstDestinationError bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

BucketName string

Name of the Amazon S3 bucket.

BucketPrefix string

Amazon S3 bucket prefix.

FailOnFirstDestinationError bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName String

Name of the Amazon S3 bucket.

bucketPrefix String

Amazon S3 bucket prefix.

failOnFirstDestinationError Boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName string

Name of the Amazon S3 bucket.

bucketPrefix string

Amazon S3 bucket prefix.

failOnFirstDestinationError boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucket_name str

Name of the Amazon S3 bucket.

bucket_prefix str

Amazon S3 bucket prefix.

fail_on_first_destination_error bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName String

Name of the Amazon S3 bucket.

bucketPrefix String

Amazon S3 bucket prefix.

failOnFirstDestinationError Boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

FlowDestinationFlowConfigDestinationConnectorPropertiesHoneycode

Object string

Object specified in the flow destination.

ErrorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesHoneycodeErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

Object string

Object specified in the flow destination.

ErrorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesHoneycodeErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

object String

Object specified in the flow destination.

errorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesHoneycodeErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

object string

Object specified in the flow destination.

errorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesHoneycodeErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

object str

Object specified in the flow destination.

error_handling_config FlowDestinationFlowConfigDestinationConnectorPropertiesHoneycodeErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

object String

Object specified in the flow destination.

errorHandlingConfig Property Map

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

FlowDestinationFlowConfigDestinationConnectorPropertiesHoneycodeErrorHandlingConfig

BucketName string

Name of the Amazon S3 bucket.

BucketPrefix string

Amazon S3 bucket prefix.

FailOnFirstDestinationError bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

BucketName string

Name of the Amazon S3 bucket.

BucketPrefix string

Amazon S3 bucket prefix.

FailOnFirstDestinationError bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName String

Name of the Amazon S3 bucket.

bucketPrefix String

Amazon S3 bucket prefix.

failOnFirstDestinationError Boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName string

Name of the Amazon S3 bucket.

bucketPrefix string

Amazon S3 bucket prefix.

failOnFirstDestinationError boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucket_name str

Name of the Amazon S3 bucket.

bucket_prefix str

Amazon S3 bucket prefix.

fail_on_first_destination_error bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName String

Name of the Amazon S3 bucket.

bucketPrefix String

Amazon S3 bucket prefix.

failOnFirstDestinationError Boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

FlowDestinationFlowConfigDestinationConnectorPropertiesMarketo

Object string

Object specified in the flow destination.

ErrorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesMarketoErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

Object string

Object specified in the flow destination.

ErrorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesMarketoErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

object String

Object specified in the flow destination.

errorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesMarketoErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

object string

Object specified in the flow destination.

errorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesMarketoErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

object str

Object specified in the flow destination.

error_handling_config FlowDestinationFlowConfigDestinationConnectorPropertiesMarketoErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

object String

Object specified in the flow destination.

errorHandlingConfig Property Map

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

FlowDestinationFlowConfigDestinationConnectorPropertiesMarketoErrorHandlingConfig

BucketName string

Name of the Amazon S3 bucket.

BucketPrefix string

Amazon S3 bucket prefix.

FailOnFirstDestinationError bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

BucketName string

Name of the Amazon S3 bucket.

BucketPrefix string

Amazon S3 bucket prefix.

FailOnFirstDestinationError bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName String

Name of the Amazon S3 bucket.

bucketPrefix String

Amazon S3 bucket prefix.

failOnFirstDestinationError Boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName string

Name of the Amazon S3 bucket.

bucketPrefix string

Amazon S3 bucket prefix.

failOnFirstDestinationError boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucket_name str

Name of the Amazon S3 bucket.

bucket_prefix str

Amazon S3 bucket prefix.

fail_on_first_destination_error bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName String

Name of the Amazon S3 bucket.

bucketPrefix String

Amazon S3 bucket prefix.

failOnFirstDestinationError Boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

FlowDestinationFlowConfigDestinationConnectorPropertiesRedshift

IntermediateBucketName string

Intermediate bucket that Amazon AppFlow uses when moving data into Amazon Redshift.

Object string

Object specified in the flow destination.

BucketPrefix string

Object key for the bucket in which Amazon AppFlow places the destination files.

ErrorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesRedshiftErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

IntermediateBucketName string

Intermediate bucket that Amazon AppFlow uses when moving data into Amazon Redshift.

Object string

Object specified in the flow destination.

BucketPrefix string

Object key for the bucket in which Amazon AppFlow places the destination files.

ErrorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesRedshiftErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

intermediateBucketName String

Intermediate bucket that Amazon AppFlow uses when moving data into Amazon Redshift.

object String

Object specified in the flow destination.

bucketPrefix String

Object key for the bucket in which Amazon AppFlow places the destination files.

errorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesRedshiftErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

intermediateBucketName string

Intermediate bucket that Amazon AppFlow uses when moving data into Amazon Redshift.

object string

Object specified in the flow destination.

bucketPrefix string

Object key for the bucket in which Amazon AppFlow places the destination files.

errorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesRedshiftErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

intermediate_bucket_name str

Intermediate bucket that Amazon AppFlow uses when moving data into Amazon Redshift.

object str

Object specified in the flow destination.

bucket_prefix str

Object key for the bucket in which Amazon AppFlow places the destination files.

error_handling_config FlowDestinationFlowConfigDestinationConnectorPropertiesRedshiftErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

intermediateBucketName String

Intermediate bucket that Amazon AppFlow uses when moving data into Amazon Redshift.

object String

Object specified in the flow destination.

bucketPrefix String

Object key for the bucket in which Amazon AppFlow places the destination files.

errorHandlingConfig Property Map

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

FlowDestinationFlowConfigDestinationConnectorPropertiesRedshiftErrorHandlingConfig

BucketName string

Name of the Amazon S3 bucket.

BucketPrefix string

Amazon S3 bucket prefix.

FailOnFirstDestinationError bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

BucketName string

Name of the Amazon S3 bucket.

BucketPrefix string

Amazon S3 bucket prefix.

FailOnFirstDestinationError bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName String

Name of the Amazon S3 bucket.

bucketPrefix String

Amazon S3 bucket prefix.

failOnFirstDestinationError Boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName string

Name of the Amazon S3 bucket.

bucketPrefix string

Amazon S3 bucket prefix.

failOnFirstDestinationError boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucket_name str

Name of the Amazon S3 bucket.

bucket_prefix str

Amazon S3 bucket prefix.

fail_on_first_destination_error bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName String

Name of the Amazon S3 bucket.

bucketPrefix String

Amazon S3 bucket prefix.

failOnFirstDestinationError Boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

FlowDestinationFlowConfigDestinationConnectorPropertiesS3

BucketName string

Amazon S3 bucket name in which Amazon AppFlow places the transferred data.

BucketPrefix string

Object key for the bucket in which Amazon AppFlow places the destination files.

S3OutputFormatConfig FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfig

Configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination. See S3 Output Format Config for more details.

BucketName string

Amazon S3 bucket name in which Amazon AppFlow places the transferred data.

BucketPrefix string

Object key for the bucket in which Amazon AppFlow places the destination files.

S3OutputFormatConfig FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfig

Configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination. See S3 Output Format Config for more details.

bucketName String

Amazon S3 bucket name in which Amazon AppFlow places the transferred data.

bucketPrefix String

Object key for the bucket in which Amazon AppFlow places the destination files.

s3OutputFormatConfig FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfig

Configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination. See S3 Output Format Config for more details.

bucketName string

Amazon S3 bucket name in which Amazon AppFlow places the transferred data.

bucketPrefix string

Object key for the bucket in which Amazon AppFlow places the destination files.

s3OutputFormatConfig FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfig

Configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination. See S3 Output Format Config for more details.

bucket_name str

Amazon S3 bucket name in which Amazon AppFlow places the transferred data.

bucket_prefix str

Object key for the bucket in which Amazon AppFlow places the destination files.

s3_output_format_config FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfig

Configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination. See S3 Output Format Config for more details.

bucketName String

Amazon S3 bucket name in which Amazon AppFlow places the transferred data.

bucketPrefix String

Object key for the bucket in which Amazon AppFlow places the destination files.

s3OutputFormatConfig Property Map

Configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination. See S3 Output Format Config for more details.

FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfig

AggregationConfig FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfigAggregationConfig

Aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.

FileType string

File type that Amazon AppFlow places in the Amazon S3 bucket. Valid values are CSV, JSON, and PARQUET.

PrefixConfig FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfigPrefixConfig

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. See Prefix Config for more details.

AggregationConfig FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfigAggregationConfig

Aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.

FileType string

File type that Amazon AppFlow places in the Amazon S3 bucket. Valid values are CSV, JSON, and PARQUET.

PrefixConfig FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfigPrefixConfig

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. See Prefix Config for more details.

aggregationConfig FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfigAggregationConfig

Aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.

fileType String

File type that Amazon AppFlow places in the Amazon S3 bucket. Valid values are CSV, JSON, and PARQUET.

prefixConfig FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfigPrefixConfig

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. See Prefix Config for more details.

aggregationConfig FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfigAggregationConfig

Aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.

fileType string

File type that Amazon AppFlow places in the Amazon S3 bucket. Valid values are CSV, JSON, and PARQUET.

prefixConfig FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfigPrefixConfig

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. See Prefix Config for more details.

aggregation_config FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfigAggregationConfig

Aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.

file_type str

File type that Amazon AppFlow places in the Amazon S3 bucket. Valid values are CSV, JSON, and PARQUET.

prefix_config FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfigPrefixConfig

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. See Prefix Config for more details.

aggregationConfig Property Map

Aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.

fileType String

File type that Amazon AppFlow places in the Amazon S3 bucket. Valid values are CSV, JSON, and PARQUET.

prefixConfig Property Map

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. See Prefix Config for more details.

FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfigAggregationConfig

AggregationType string

Whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are None and SingleFile.

AggregationType string

Whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are None and SingleFile.

aggregationType String

Whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are None and SingleFile.

aggregationType string

Whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are None and SingleFile.

aggregation_type str

Whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are None and SingleFile.

aggregationType String

Whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are None and SingleFile.

FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfigPrefixConfig

PrefixFormat string

Determines the level of granularity that's included in the prefix. Valid values are YEAR, MONTH, DAY, HOUR, and MINUTE.

PrefixType string

Determines the format of the prefix, and whether it applies to the file name, file path, or both. Valid values are FILENAME, PATH, and PATH_AND_FILENAME.

PrefixFormat string

Determines the level of granularity that's included in the prefix. Valid values are YEAR, MONTH, DAY, HOUR, and MINUTE.

PrefixType string

Determines the format of the prefix, and whether it applies to the file name, file path, or both. Valid values are FILENAME, PATH, and PATH_AND_FILENAME.

prefixFormat String

Determines the level of granularity that's included in the prefix. Valid values are YEAR, MONTH, DAY, HOUR, and MINUTE.

prefixType String

Determines the format of the prefix, and whether it applies to the file name, file path, or both. Valid values are FILENAME, PATH, and PATH_AND_FILENAME.

prefixFormat string

Determines the level of granularity that's included in the prefix. Valid values are YEAR, MONTH, DAY, HOUR, and MINUTE.

prefixType string

Determines the format of the prefix, and whether it applies to the file name, file path, or both. Valid values are FILENAME, PATH, and PATH_AND_FILENAME.

prefix_format str

Determines the level of granularity that's included in the prefix. Valid values are YEAR, MONTH, DAY, HOUR, and MINUTE.

prefix_type str

Determines the format of the prefix, and whether it applies to the file name, file path, or both. Valid values are FILENAME, PATH, and PATH_AND_FILENAME.

prefixFormat String

Determines the level of granularity that's included in the prefix. Valid values are YEAR, MONTH, DAY, HOUR, and MINUTE.

prefixType String

Determines the format of the prefix, and whether it applies to the file name, file path, or both. Valid values are FILENAME, PATH, and PATH_AND_FILENAME.

FlowDestinationFlowConfigDestinationConnectorPropertiesSalesforce

Object string

Object specified in the flow destination.

ErrorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesSalesforceErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

IdFieldNames List<string>

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

WriteOperationType string

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

Object string

Object specified in the flow destination.

ErrorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesSalesforceErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

IdFieldNames []string

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

WriteOperationType string

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

object String

Object specified in the flow destination.

errorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesSalesforceErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

idFieldNames List<String>

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

writeOperationType String

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

object string

Object specified in the flow destination.

errorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesSalesforceErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

idFieldNames string[]

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

writeOperationType string

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

object str

Object specified in the flow destination.

error_handling_config FlowDestinationFlowConfigDestinationConnectorPropertiesSalesforceErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

id_field_names Sequence[str]

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

write_operation_type str

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

object String

Object specified in the flow destination.

errorHandlingConfig Property Map

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

idFieldNames List<String>

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

writeOperationType String

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

FlowDestinationFlowConfigDestinationConnectorPropertiesSalesforceErrorHandlingConfig

BucketName string

Name of the Amazon S3 bucket.

BucketPrefix string

Amazon S3 bucket prefix.

FailOnFirstDestinationError bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

BucketName string

Name of the Amazon S3 bucket.

BucketPrefix string

Amazon S3 bucket prefix.

FailOnFirstDestinationError bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName String

Name of the Amazon S3 bucket.

bucketPrefix String

Amazon S3 bucket prefix.

failOnFirstDestinationError Boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName string

Name of the Amazon S3 bucket.

bucketPrefix string

Amazon S3 bucket prefix.

failOnFirstDestinationError boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucket_name str

Name of the Amazon S3 bucket.

bucket_prefix str

Amazon S3 bucket prefix.

fail_on_first_destination_error bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName String

Name of the Amazon S3 bucket.

bucketPrefix String

Amazon S3 bucket prefix.

failOnFirstDestinationError Boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

FlowDestinationFlowConfigDestinationConnectorPropertiesSapoData

ObjectPath string

Object path specified in the SAPOData flow destination.

ErrorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesSapoDataErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

IdFieldNames List<string>

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

SuccessResponseHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesSapoDataSuccessResponseHandlingConfig

Determines how Amazon AppFlow handles the success response that it gets from the connector after placing data. See Success Response Handling Config for more details.

WriteOperationType string

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

ObjectPath string

Object path specified in the SAPOData flow destination.

ErrorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesSapoDataErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

IdFieldNames []string

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

SuccessResponseHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesSapoDataSuccessResponseHandlingConfig

Determines how Amazon AppFlow handles the success response that it gets from the connector after placing data. See Success Response Handling Config for more details.

WriteOperationType string

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

objectPath String

Object path specified in the SAPOData flow destination.

errorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesSapoDataErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

idFieldNames List<String>

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

successResponseHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesSapoDataSuccessResponseHandlingConfig

Determines how Amazon AppFlow handles the success response that it gets from the connector after placing data. See Success Response Handling Config for more details.

writeOperationType String

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

objectPath string

Object path specified in the SAPOData flow destination.

errorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesSapoDataErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

idFieldNames string[]

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

successResponseHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesSapoDataSuccessResponseHandlingConfig

Determines how Amazon AppFlow handles the success response that it gets from the connector after placing data. See Success Response Handling Config for more details.

writeOperationType string

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

object_path str

Object path specified in the SAPOData flow destination.

error_handling_config FlowDestinationFlowConfigDestinationConnectorPropertiesSapoDataErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

id_field_names Sequence[str]

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

success_response_handling_config FlowDestinationFlowConfigDestinationConnectorPropertiesSapoDataSuccessResponseHandlingConfig

Determines how Amazon AppFlow handles the success response that it gets from the connector after placing data. See Success Response Handling Config for more details.

write_operation_type str

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

objectPath String

Object path specified in the SAPOData flow destination.

errorHandlingConfig Property Map

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

idFieldNames List<String>

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

successResponseHandlingConfig Property Map

Determines how Amazon AppFlow handles the success response that it gets from the connector after placing data. See Success Response Handling Config for more details.

writeOperationType String

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

FlowDestinationFlowConfigDestinationConnectorPropertiesSapoDataErrorHandlingConfig

BucketName string

Name of the Amazon S3 bucket.

BucketPrefix string

Amazon S3 bucket prefix.

FailOnFirstDestinationError bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

BucketName string

Name of the Amazon S3 bucket.

BucketPrefix string

Amazon S3 bucket prefix.

FailOnFirstDestinationError bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName String

Name of the Amazon S3 bucket.

bucketPrefix String

Amazon S3 bucket prefix.

failOnFirstDestinationError Boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName string

Name of the Amazon S3 bucket.

bucketPrefix string

Amazon S3 bucket prefix.

failOnFirstDestinationError boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucket_name str

Name of the Amazon S3 bucket.

bucket_prefix str

Amazon S3 bucket prefix.

fail_on_first_destination_error bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName String

Name of the Amazon S3 bucket.

bucketPrefix String

Amazon S3 bucket prefix.

failOnFirstDestinationError Boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

FlowDestinationFlowConfigDestinationConnectorPropertiesSapoDataSuccessResponseHandlingConfig

BucketName string

Name of the Amazon S3 bucket.

BucketPrefix string

Amazon S3 bucket prefix.

BucketName string

Name of the Amazon S3 bucket.

BucketPrefix string

Amazon S3 bucket prefix.

bucketName String

Name of the Amazon S3 bucket.

bucketPrefix String

Amazon S3 bucket prefix.

bucketName string

Name of the Amazon S3 bucket.

bucketPrefix string

Amazon S3 bucket prefix.

bucket_name str

Name of the Amazon S3 bucket.

bucket_prefix str

Amazon S3 bucket prefix.

bucketName String

Name of the Amazon S3 bucket.

bucketPrefix String

Amazon S3 bucket prefix.

FlowDestinationFlowConfigDestinationConnectorPropertiesSnowflake

IntermediateBucketName string

Intermediate bucket that Amazon AppFlow uses when moving data into Amazon Redshift.

Object string

Object specified in the flow destination.

BucketPrefix string

Object key for the bucket in which Amazon AppFlow places the destination files.

ErrorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesSnowflakeErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

IntermediateBucketName string

Intermediate bucket that Amazon AppFlow uses when moving data into Amazon Redshift.

Object string

Object specified in the flow destination.

BucketPrefix string

Object key for the bucket in which Amazon AppFlow places the destination files.

ErrorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesSnowflakeErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

intermediateBucketName String

Intermediate bucket that Amazon AppFlow uses when moving data into Amazon Redshift.

object String

Object specified in the flow destination.

bucketPrefix String

Object key for the bucket in which Amazon AppFlow places the destination files.

errorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesSnowflakeErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

intermediateBucketName string

Intermediate bucket that Amazon AppFlow uses when moving data into Amazon Redshift.

object string

Object specified in the flow destination.

bucketPrefix string

Object key for the bucket in which Amazon AppFlow places the destination files.

errorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesSnowflakeErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

intermediate_bucket_name str

Intermediate bucket that Amazon AppFlow uses when moving data into Amazon Redshift.

object str

Object specified in the flow destination.

bucket_prefix str

Object key for the bucket in which Amazon AppFlow places the destination files.

error_handling_config FlowDestinationFlowConfigDestinationConnectorPropertiesSnowflakeErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

intermediateBucketName String

Intermediate bucket that Amazon AppFlow uses when moving data into Amazon Redshift.

object String

Object specified in the flow destination.

bucketPrefix String

Object key for the bucket in which Amazon AppFlow places the destination files.

errorHandlingConfig Property Map

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

FlowDestinationFlowConfigDestinationConnectorPropertiesSnowflakeErrorHandlingConfig

BucketName string

Name of the Amazon S3 bucket.

BucketPrefix string

Amazon S3 bucket prefix.

FailOnFirstDestinationError bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

BucketName string

Name of the Amazon S3 bucket.

BucketPrefix string

Amazon S3 bucket prefix.

FailOnFirstDestinationError bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName String

Name of the Amazon S3 bucket.

bucketPrefix String

Amazon S3 bucket prefix.

failOnFirstDestinationError Boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName string

Name of the Amazon S3 bucket.

bucketPrefix string

Amazon S3 bucket prefix.

failOnFirstDestinationError boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucket_name str

Name of the Amazon S3 bucket.

bucket_prefix str

Amazon S3 bucket prefix.

fail_on_first_destination_error bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName String

Name of the Amazon S3 bucket.

bucketPrefix String

Amazon S3 bucket prefix.

failOnFirstDestinationError Boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolver

BucketName string

Amazon S3 bucket name in which Amazon AppFlow places the transferred data.

S3OutputFormatConfig FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolverS3OutputFormatConfig

Configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination. See S3 Output Format Config for more details.

BucketPrefix string

Object key for the bucket in which Amazon AppFlow places the destination files.

BucketName string

Amazon S3 bucket name in which Amazon AppFlow places the transferred data.

S3OutputFormatConfig FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolverS3OutputFormatConfig

Configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination. See S3 Output Format Config for more details.

BucketPrefix string

Object key for the bucket in which Amazon AppFlow places the destination files.

bucketName String

Amazon S3 bucket name in which Amazon AppFlow places the transferred data.

s3OutputFormatConfig FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolverS3OutputFormatConfig

Configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination. See S3 Output Format Config for more details.

bucketPrefix String

Object key for the bucket in which Amazon AppFlow places the destination files.

bucketName string

Amazon S3 bucket name in which Amazon AppFlow places the transferred data.

s3OutputFormatConfig FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolverS3OutputFormatConfig

Configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination. See S3 Output Format Config for more details.

bucketPrefix string

Object key for the bucket in which Amazon AppFlow places the destination files.

bucket_name str

Amazon S3 bucket name in which Amazon AppFlow places the transferred data.

s3_output_format_config FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolverS3OutputFormatConfig

Configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination. See S3 Output Format Config for more details.

bucket_prefix str

Object key for the bucket in which Amazon AppFlow places the destination files.

bucketName String

Amazon S3 bucket name in which Amazon AppFlow places the transferred data.

s3OutputFormatConfig Property Map

Configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination. See S3 Output Format Config for more details.

bucketPrefix String

Object key for the bucket in which Amazon AppFlow places the destination files.

FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolverS3OutputFormatConfig

PrefixConfig FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolverS3OutputFormatConfigPrefixConfig

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. See Prefix Config for more details.

AggregationConfig FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolverS3OutputFormatConfigAggregationConfig

Aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.

FileType string

File type that Amazon AppFlow places in the Amazon S3 bucket. Valid values are CSV, JSON, and PARQUET.

PrefixConfig FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolverS3OutputFormatConfigPrefixConfig

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. See Prefix Config for more details.

AggregationConfig FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolverS3OutputFormatConfigAggregationConfig

Aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.

FileType string

File type that Amazon AppFlow places in the Amazon S3 bucket. Valid values are CSV, JSON, and PARQUET.

prefixConfig FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolverS3OutputFormatConfigPrefixConfig

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. See Prefix Config for more details.

aggregationConfig FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolverS3OutputFormatConfigAggregationConfig

Aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.

fileType String

File type that Amazon AppFlow places in the Amazon S3 bucket. Valid values are CSV, JSON, and PARQUET.

prefixConfig FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolverS3OutputFormatConfigPrefixConfig

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. See Prefix Config for more details.

aggregationConfig FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolverS3OutputFormatConfigAggregationConfig

Aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.

fileType string

File type that Amazon AppFlow places in the Amazon S3 bucket. Valid values are CSV, JSON, and PARQUET.

prefix_config FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolverS3OutputFormatConfigPrefixConfig

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. See Prefix Config for more details.

aggregation_config FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolverS3OutputFormatConfigAggregationConfig

Aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.

file_type str

File type that Amazon AppFlow places in the Amazon S3 bucket. Valid values are CSV, JSON, and PARQUET.

prefixConfig Property Map

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. See Prefix Config for more details.

aggregationConfig Property Map

Aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.

fileType String

File type that Amazon AppFlow places in the Amazon S3 bucket. Valid values are CSV, JSON, and PARQUET.

FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolverS3OutputFormatConfigAggregationConfig

AggregationType string

Whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are None and SingleFile.

AggregationType string

Whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are None and SingleFile.

aggregationType String

Whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are None and SingleFile.

aggregationType string

Whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are None and SingleFile.

aggregation_type str

Whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are None and SingleFile.

aggregationType String

Whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are None and SingleFile.

FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolverS3OutputFormatConfigPrefixConfig

PrefixType string

Determines the format of the prefix, and whether it applies to the file name, file path, or both. Valid values are FILENAME, PATH, and PATH_AND_FILENAME.

PrefixFormat string

Determines the level of granularity that's included in the prefix. Valid values are YEAR, MONTH, DAY, HOUR, and MINUTE.

PrefixType string

Determines the format of the prefix, and whether it applies to the file name, file path, or both. Valid values are FILENAME, PATH, and PATH_AND_FILENAME.

PrefixFormat string

Determines the level of granularity that's included in the prefix. Valid values are YEAR, MONTH, DAY, HOUR, and MINUTE.

prefixType String

Determines the format of the prefix, and whether it applies to the file name, file path, or both. Valid values are FILENAME, PATH, and PATH_AND_FILENAME.

prefixFormat String

Determines the level of granularity that's included in the prefix. Valid values are YEAR, MONTH, DAY, HOUR, and MINUTE.

prefixType string

Determines the format of the prefix, and whether it applies to the file name, file path, or both. Valid values are FILENAME, PATH, and PATH_AND_FILENAME.

prefixFormat string

Determines the level of granularity that's included in the prefix. Valid values are YEAR, MONTH, DAY, HOUR, and MINUTE.

prefix_type str

Determines the format of the prefix, and whether it applies to the file name, file path, or both. Valid values are FILENAME, PATH, and PATH_AND_FILENAME.

prefix_format str

Determines the level of granularity that's included in the prefix. Valid values are YEAR, MONTH, DAY, HOUR, and MINUTE.

prefixType String

Determines the format of the prefix, and whether it applies to the file name, file path, or both. Valid values are FILENAME, PATH, and PATH_AND_FILENAME.

prefixFormat String

Determines the level of granularity that's included in the prefix. Valid values are YEAR, MONTH, DAY, HOUR, and MINUTE.

FlowDestinationFlowConfigDestinationConnectorPropertiesZendesk

Object string

Object specified in the flow destination.

ErrorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesZendeskErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

IdFieldNames List<string>

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

WriteOperationType string

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

Object string

Object specified in the flow destination.

ErrorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesZendeskErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

IdFieldNames []string

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

WriteOperationType string

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

object String

Object specified in the flow destination.

errorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesZendeskErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

idFieldNames List<String>

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

writeOperationType String

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

object string

Object specified in the flow destination.

errorHandlingConfig FlowDestinationFlowConfigDestinationConnectorPropertiesZendeskErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

idFieldNames string[]

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

writeOperationType string

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

object str

Object specified in the flow destination.

error_handling_config FlowDestinationFlowConfigDestinationConnectorPropertiesZendeskErrorHandlingConfig

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

id_field_names Sequence[str]

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

write_operation_type str

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

object String

Object specified in the flow destination.

errorHandlingConfig Property Map

Settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.

idFieldNames List<String>

Name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

writeOperationType String

Type of write operation to be performed in the custom connector when it's used as destination. Valid values are INSERT, UPSERT, UPDATE, and DELETE.

FlowDestinationFlowConfigDestinationConnectorPropertiesZendeskErrorHandlingConfig

BucketName string

Name of the Amazon S3 bucket.

BucketPrefix string

Amazon S3 bucket prefix.

FailOnFirstDestinationError bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

BucketName string

Name of the Amazon S3 bucket.

BucketPrefix string

Amazon S3 bucket prefix.

FailOnFirstDestinationError bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName String

Name of the Amazon S3 bucket.

bucketPrefix String

Amazon S3 bucket prefix.

failOnFirstDestinationError Boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName string

Name of the Amazon S3 bucket.

bucketPrefix string

Amazon S3 bucket prefix.

failOnFirstDestinationError boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucket_name str

Name of the Amazon S3 bucket.

bucket_prefix str

Amazon S3 bucket prefix.

fail_on_first_destination_error bool

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

bucketName String

Name of the Amazon S3 bucket.

bucketPrefix String

Amazon S3 bucket prefix.

failOnFirstDestinationError Boolean

If the flow should fail after the first instance of a failure when attempting to place data in the destination.

FlowSourceFlowConfig

ConnectorType string

Type of connector, such as Salesforce, Amplitude, and so on. Valid values are Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles, SAPOData, and CustomConnector.

SourceConnectorProperties FlowSourceFlowConfigSourceConnectorProperties

Information that is required to query a particular source connector. See Source Connector Properties for details.

ApiVersion string

API version that the destination connector uses.

ConnectorProfileName string

Name of the connector profile. This name must be unique for each connector profile in the AWS account.

IncrementalPullConfig FlowSourceFlowConfigIncrementalPullConfig

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. See Incremental Pull Config for more details.

ConnectorType string

Type of connector, such as Salesforce, Amplitude, and so on. Valid values are Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles, SAPOData, and CustomConnector.

SourceConnectorProperties FlowSourceFlowConfigSourceConnectorProperties

Information that is required to query a particular source connector. See Source Connector Properties for details.

ApiVersion string

API version that the destination connector uses.

ConnectorProfileName string

Name of the connector profile. This name must be unique for each connector profile in the AWS account.

IncrementalPullConfig FlowSourceFlowConfigIncrementalPullConfig

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. See Incremental Pull Config for more details.

connectorType String

Type of connector, such as Salesforce, Amplitude, and so on. Valid values are Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles, SAPOData, and CustomConnector.

sourceConnectorProperties FlowSourceFlowConfigSourceConnectorProperties

Information that is required to query a particular source connector. See Source Connector Properties for details.

apiVersion String

API version that the destination connector uses.

connectorProfileName String

Name of the connector profile. This name must be unique for each connector profile in the AWS account.

incrementalPullConfig FlowSourceFlowConfigIncrementalPullConfig

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. See Incremental Pull Config for more details.

connectorType string

Type of connector, such as Salesforce, Amplitude, and so on. Valid values are Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles, SAPOData, and CustomConnector.

sourceConnectorProperties FlowSourceFlowConfigSourceConnectorProperties

Information that is required to query a particular source connector. See Source Connector Properties for details.

apiVersion string

API version that the destination connector uses.

connectorProfileName string

Name of the connector profile. This name must be unique for each connector profile in the AWS account.

incrementalPullConfig FlowSourceFlowConfigIncrementalPullConfig

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. See Incremental Pull Config for more details.

connector_type str

Type of connector, such as Salesforce, Amplitude, and so on. Valid values are Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles, SAPOData, and CustomConnector.

source_connector_properties FlowSourceFlowConfigSourceConnectorProperties

Information that is required to query a particular source connector. See Source Connector Properties for details.

api_version str

API version that the destination connector uses.

connector_profile_name str

Name of the connector profile. This name must be unique for each connector profile in the AWS account.

incremental_pull_config FlowSourceFlowConfigIncrementalPullConfig

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. See Incremental Pull Config for more details.

connectorType String

Type of connector, such as Salesforce, Amplitude, and so on. Valid values are Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles, SAPOData, and CustomConnector.

sourceConnectorProperties Property Map

Information that is required to query a particular source connector. See Source Connector Properties for details.

apiVersion String

API version that the destination connector uses.

connectorProfileName String

Name of the connector profile. This name must be unique for each connector profile in the AWS account.

incrementalPullConfig Property Map

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. See Incremental Pull Config for more details.

FlowSourceFlowConfigIncrementalPullConfig

DatetimeTypeFieldName string

Field that specifies the date time or timestamp field as the criteria to use when importing incremental records from the source.

DatetimeTypeFieldName string

Field that specifies the date time or timestamp field as the criteria to use when importing incremental records from the source.

datetimeTypeFieldName String

Field that specifies the date time or timestamp field as the criteria to use when importing incremental records from the source.

datetimeTypeFieldName string

Field that specifies the date time or timestamp field as the criteria to use when importing incremental records from the source.

datetime_type_field_name str

Field that specifies the date time or timestamp field as the criteria to use when importing incremental records from the source.

datetimeTypeFieldName String

Field that specifies the date time or timestamp field as the criteria to use when importing incremental records from the source.

FlowSourceFlowConfigSourceConnectorProperties

Amplitude FlowSourceFlowConfigSourceConnectorPropertiesAmplitude

Information that is required for querying Amplitude. See Generic Source Properties for more details.

CustomConnector FlowSourceFlowConfigSourceConnectorPropertiesCustomConnector

Properties that are applied when the custom connector is being used as a source. See Custom Connector Source Properties.

Datadog FlowSourceFlowConfigSourceConnectorPropertiesDatadog

Information that is required for querying Datadog. See Generic Source Properties for more details.

Dynatrace FlowSourceFlowConfigSourceConnectorPropertiesDynatrace

Operation to be performed on the provided Dynatrace source fields. Valid values are 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, and NO_OP.

GoogleAnalytics FlowSourceFlowConfigSourceConnectorPropertiesGoogleAnalytics

Operation to be performed on the provided Google Analytics source fields. Valid values are PROJECTION and BETWEEN.

InforNexus FlowSourceFlowConfigSourceConnectorPropertiesInforNexus

Information that is required for querying Infor Nexus. See Generic Source Properties for more details.

Marketo FlowSourceFlowConfigSourceConnectorPropertiesMarketo

Information that is required for querying Marketo. See Generic Source Properties for more details.

S3 FlowSourceFlowConfigSourceConnectorPropertiesS3

Information that is required for querying Amazon S3. See S3 Source Properties for more details.

Salesforce FlowSourceFlowConfigSourceConnectorPropertiesSalesforce

Information that is required for querying Salesforce. See Salesforce Source Properties for more details.

SapoData FlowSourceFlowConfigSourceConnectorPropertiesSapoData

Information that is required for querying SAPOData as a flow source. See SAPO Source Properties for more details.

ServiceNow FlowSourceFlowConfigSourceConnectorPropertiesServiceNow

Information that is required for querying ServiceNow. See Generic Source Properties for more details.

Singular FlowSourceFlowConfigSourceConnectorPropertiesSingular

Information that is required for querying Singular. See Generic Source Properties for more details.

Slack FlowSourceFlowConfigSourceConnectorPropertiesSlack

Information that is required for querying Slack. See Generic Source Properties for more details.

Trendmicro FlowSourceFlowConfigSourceConnectorPropertiesTrendmicro

Operation to be performed on the provided Trend Micro source fields. Valid values are 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, and NO_OP.

Veeva FlowSourceFlowConfigSourceConnectorPropertiesVeeva

Information that is required for querying Veeva. See Veeva Source Properties for more details.

Zendesk FlowSourceFlowConfigSourceConnectorPropertiesZendesk

Information that is required for querying Zendesk. See Generic Source Properties for more details.

Amplitude FlowSourceFlowConfigSourceConnectorPropertiesAmplitude

Information that is required for querying Amplitude. See Generic Source Properties for more details.

CustomConnector FlowSourceFlowConfigSourceConnectorPropertiesCustomConnector

Properties that are applied when the custom connector is being used as a source. See Custom Connector Source Properties.

Datadog FlowSourceFlowConfigSourceConnectorPropertiesDatadog

Information that is required for querying Datadog. See Generic Source Properties for more details.

Dynatrace FlowSourceFlowConfigSourceConnectorPropertiesDynatrace

Operation to be performed on the provided Dynatrace source fields. Valid values are 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, and NO_OP.

GoogleAnalytics FlowSourceFlowConfigSourceConnectorPropertiesGoogleAnalytics

Operation to be performed on the provided Google Analytics source fields. Valid values are PROJECTION and BETWEEN.

InforNexus FlowSourceFlowConfigSourceConnectorPropertiesInforNexus

Information that is required for querying Infor Nexus. See Generic Source Properties for more details.

Marketo FlowSourceFlowConfigSourceConnectorPropertiesMarketo

Information that is required for querying Marketo. See Generic Source Properties for more details.

S3 FlowSourceFlowConfigSourceConnectorPropertiesS3

Information that is required for querying Amazon S3. See S3 Source Properties for more details.

Salesforce FlowSourceFlowConfigSourceConnectorPropertiesSalesforce

Information that is required for querying Salesforce. See Salesforce Source Properties for more details.

SapoData FlowSourceFlowConfigSourceConnectorPropertiesSapoData

Information that is required for querying SAPOData as a flow source. See SAPO Source Properties for more details.

ServiceNow FlowSourceFlowConfigSourceConnectorPropertiesServiceNow

Information that is required for querying ServiceNow. See Generic Source Properties for more details.

Singular FlowSourceFlowConfigSourceConnectorPropertiesSingular

Information that is required for querying Singular. See Generic Source Properties for more details.

Slack FlowSourceFlowConfigSourceConnectorPropertiesSlack

Information that is required for querying Slack. See Generic Source Properties for more details.

Trendmicro FlowSourceFlowConfigSourceConnectorPropertiesTrendmicro

Operation to be performed on the provided Trend Micro source fields. Valid values are 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, and NO_OP.

Veeva FlowSourceFlowConfigSourceConnectorPropertiesVeeva

Information that is required for querying Veeva. See Veeva Source Properties for more details.

Zendesk FlowSourceFlowConfigSourceConnectorPropertiesZendesk

Information that is required for querying Zendesk. See Generic Source Properties for more details.

amplitude FlowSourceFlowConfigSourceConnectorPropertiesAmplitude

Information that is required for querying Amplitude. See Generic Source Properties for more details.

customConnector FlowSourceFlowConfigSourceConnectorPropertiesCustomConnector

Properties that are applied when the custom connector is being used as a source. See Custom Connector Source Properties.

datadog FlowSourceFlowConfigSourceConnectorPropertiesDatadog

Information that is required for querying Datadog. See Generic Source Properties for more details.

dynatrace FlowSourceFlowConfigSourceConnectorPropertiesDynatrace

Operation to be performed on the provided Dynatrace source fields. Valid values are 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, and NO_OP.

googleAnalytics FlowSourceFlowConfigSourceConnectorPropertiesGoogleAnalytics

Operation to be performed on the provided Google Analytics source fields. Valid values are PROJECTION and BETWEEN.

inforNexus FlowSourceFlowConfigSourceConnectorPropertiesInforNexus

Information that is required for querying Infor Nexus. See Generic Source Properties for more details.

marketo FlowSourceFlowConfigSourceConnectorPropertiesMarketo

Information that is required for querying Marketo. See Generic Source Properties for more details.

s3 FlowSourceFlowConfigSourceConnectorPropertiesS3

Information that is required for querying Amazon S3. See S3 Source Properties for more details.

salesforce FlowSourceFlowConfigSourceConnectorPropertiesSalesforce

Information that is required for querying Salesforce. See Salesforce Source Properties for more details.

sapoData FlowSourceFlowConfigSourceConnectorPropertiesSapoData

Information that is required for querying SAPOData as a flow source. See SAPO Source Properties for more details.

serviceNow FlowSourceFlowConfigSourceConnectorPropertiesServiceNow

Information that is required for querying ServiceNow. See Generic Source Properties for more details.

singular FlowSourceFlowConfigSourceConnectorPropertiesSingular

Information that is required for querying Singular. See Generic Source Properties for more details.

slack FlowSourceFlowConfigSourceConnectorPropertiesSlack

Information that is required for querying Slack. See Generic Source Properties for more details.

trendmicro FlowSourceFlowConfigSourceConnectorPropertiesTrendmicro

Operation to be performed on the provided Trend Micro source fields. Valid values are 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, and NO_OP.

veeva FlowSourceFlowConfigSourceConnectorPropertiesVeeva

Information that is required for querying Veeva. See Veeva Source Properties for more details.

zendesk FlowSourceFlowConfigSourceConnectorPropertiesZendesk

Information that is required for querying Zendesk. See Generic Source Properties for more details.

amplitude FlowSourceFlowConfigSourceConnectorPropertiesAmplitude

Information that is required for querying Amplitude. See Generic Source Properties for more details.

customConnector FlowSourceFlowConfigSourceConnectorPropertiesCustomConnector

Properties that are applied when the custom connector is being used as a source. See Custom Connector Source Properties.

datadog FlowSourceFlowConfigSourceConnectorPropertiesDatadog

Information that is required for querying Datadog. See Generic Source Properties for more details.

dynatrace FlowSourceFlowConfigSourceConnectorPropertiesDynatrace

Operation to be performed on the provided Dynatrace source fields. Valid values are 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, and NO_OP.

googleAnalytics FlowSourceFlowConfigSourceConnectorPropertiesGoogleAnalytics

Operation to be performed on the provided Google Analytics source fields. Valid values are PROJECTION and BETWEEN.

inforNexus FlowSourceFlowConfigSourceConnectorPropertiesInforNexus

Information that is required for querying Infor Nexus. See Generic Source Properties for more details.

marketo FlowSourceFlowConfigSourceConnectorPropertiesMarketo

Information that is required for querying Marketo. See Generic Source Properties for more details.

s3 FlowSourceFlowConfigSourceConnectorPropertiesS3

Information that is required for querying Amazon S3. See S3 Source Properties for more details.

salesforce FlowSourceFlowConfigSourceConnectorPropertiesSalesforce

Information that is required for querying Salesforce. See Salesforce Source Properties for more details.

sapoData FlowSourceFlowConfigSourceConnectorPropertiesSapoData

Information that is required for querying SAPOData as a flow source. See SAPO Source Properties for more details.

serviceNow FlowSourceFlowConfigSourceConnectorPropertiesServiceNow

Information that is required for querying ServiceNow. See Generic Source Properties for more details.

singular FlowSourceFlowConfigSourceConnectorPropertiesSingular

Information that is required for querying Singular. See Generic Source Properties for more details.

slack FlowSourceFlowConfigSourceConnectorPropertiesSlack

Information that is required for querying Slack. See Generic Source Properties for more details.

trendmicro FlowSourceFlowConfigSourceConnectorPropertiesTrendmicro

Operation to be performed on the provided Trend Micro source fields. Valid values are 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, and NO_OP.

veeva FlowSourceFlowConfigSourceConnectorPropertiesVeeva

Information that is required for querying Veeva. See Veeva Source Properties for more details.

zendesk FlowSourceFlowConfigSourceConnectorPropertiesZendesk

Information that is required for querying Zendesk. See Generic Source Properties for more details.

amplitude FlowSourceFlowConfigSourceConnectorPropertiesAmplitude

Information that is required for querying Amplitude. See Generic Source Properties for more details.

custom_connector FlowSourceFlowConfigSourceConnectorPropertiesCustomConnector

Properties that are applied when the custom connector is being used as a source. See Custom Connector Source Properties.

datadog FlowSourceFlowConfigSourceConnectorPropertiesDatadog

Information that is required for querying Datadog. See Generic Source Properties for more details.

dynatrace FlowSourceFlowConfigSourceConnectorPropertiesDynatrace

Operation to be performed on the provided Dynatrace source fields. Valid values are 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, and NO_OP.

google_analytics FlowSourceFlowConfigSourceConnectorPropertiesGoogleAnalytics

Operation to be performed on the provided Google Analytics source fields. Valid values are PROJECTION and BETWEEN.

infor_nexus FlowSourceFlowConfigSourceConnectorPropertiesInforNexus

Information that is required for querying Infor Nexus. See Generic Source Properties for more details.

marketo FlowSourceFlowConfigSourceConnectorPropertiesMarketo

Information that is required for querying Marketo. See Generic Source Properties for more details.

s3 FlowSourceFlowConfigSourceConnectorPropertiesS3

Information that is required for querying Amazon S3. See S3 Source Properties for more details.

salesforce FlowSourceFlowConfigSourceConnectorPropertiesSalesforce

Information that is required for querying Salesforce. See Salesforce Source Properties for more details.

sapo_data FlowSourceFlowConfigSourceConnectorPropertiesSapoData

Information that is required for querying SAPOData as a flow source. See SAPO Source Properties for more details.

service_now FlowSourceFlowConfigSourceConnectorPropertiesServiceNow

Information that is required for querying ServiceNow. See Generic Source Properties for more details.

singular FlowSourceFlowConfigSourceConnectorPropertiesSingular

Information that is required for querying Singular. See Generic Source Properties for more details.

slack FlowSourceFlowConfigSourceConnectorPropertiesSlack

Information that is required for querying Slack. See Generic Source Properties for more details.

trendmicro FlowSourceFlowConfigSourceConnectorPropertiesTrendmicro

Operation to be performed on the provided Trend Micro source fields. Valid values are 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, and NO_OP.

veeva FlowSourceFlowConfigSourceConnectorPropertiesVeeva

Information that is required for querying Veeva. See Veeva Source Properties for more details.

zendesk FlowSourceFlowConfigSourceConnectorPropertiesZendesk

Information that is required for querying Zendesk. See Generic Source Properties for more details.

amplitude Property Map

Information that is required for querying Amplitude. See Generic Source Properties for more details.

customConnector Property Map

Properties that are applied when the custom connector is being used as a source. See Custom Connector Source Properties.

datadog Property Map

Information that is required for querying Datadog. See Generic Source Properties for more details.

dynatrace Property Map

Operation to be performed on the provided Dynatrace source fields. Valid values are 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, and NO_OP.

googleAnalytics Property Map

Operation to be performed on the provided Google Analytics source fields. Valid values are PROJECTION and BETWEEN.

inforNexus Property Map

Information that is required for querying Infor Nexus. See Generic Source Properties for more details.

marketo Property Map

Information that is required for querying Marketo. See Generic Source Properties for more details.

s3 Property Map

Information that is required for querying Amazon S3. See S3 Source Properties for more details.

salesforce Property Map

Information that is required for querying Salesforce. See Salesforce Source Properties for more details.

sapoData Property Map

Information that is required for querying SAPOData as a flow source. See SAPO Source Properties for more details.

serviceNow Property Map

Information that is required for querying ServiceNow. See Generic Source Properties for more details.

singular Property Map

Information that is required for querying Singular. See Generic Source Properties for more details.

slack Property Map

Information that is required for querying Slack. See Generic Source Properties for more details.

trendmicro Property Map

Operation to be performed on the provided Trend Micro source fields. Valid values are 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, and NO_OP.

veeva Property Map

Information that is required for querying Veeva. See Veeva Source Properties for more details.

zendesk Property Map

Information that is required for querying Zendesk. See Generic Source Properties for more details.

FlowSourceFlowConfigSourceConnectorPropertiesAmplitude

Object string

Object specified in the flow destination.

Object string

Object specified in the flow destination.

object String

Object specified in the flow destination.

object string

Object specified in the flow destination.

object str

Object specified in the flow destination.

object String

Object specified in the flow destination.

FlowSourceFlowConfigSourceConnectorPropertiesCustomConnector

EntityName string

Entity specified in the custom connector as a destination in the flow.

CustomProperties Dictionary<string, string>

Custom properties that are specific to the connector when it's used as a destination in the flow. Maximum of 50 items.

EntityName string

Entity specified in the custom connector as a destination in the flow.

CustomProperties map[string]string

Custom properties that are specific to the connector when it's used as a destination in the flow. Maximum of 50 items.

entityName String

Entity specified in the custom connector as a destination in the flow.

customProperties Map<String,String>

Custom properties that are specific to the connector when it's used as a destination in the flow. Maximum of 50 items.

entityName string

Entity specified in the custom connector as a destination in the flow.

customProperties {[key: string]: string}

Custom properties that are specific to the connector when it's used as a destination in the flow. Maximum of 50 items.

entity_name str

Entity specified in the custom connector as a destination in the flow.

custom_properties Mapping[str, str]

Custom properties that are specific to the connector when it's used as a destination in the flow. Maximum of 50 items.

entityName String

Entity specified in the custom connector as a destination in the flow.

customProperties Map<String>

Custom properties that are specific to the connector when it's used as a destination in the flow. Maximum of 50 items.

FlowSourceFlowConfigSourceConnectorPropertiesDatadog

Object string

Object specified in the flow destination.

Object string

Object specified in the flow destination.

object String

Object specified in the flow destination.

object string

Object specified in the flow destination.

object str

Object specified in the flow destination.

object String

Object specified in the flow destination.

FlowSourceFlowConfigSourceConnectorPropertiesDynatrace

Object string

Object specified in the flow destination.

Object string

Object specified in the flow destination.

object String

Object specified in the flow destination.

object string

Object specified in the flow destination.

object str

Object specified in the flow destination.

object String

Object specified in the flow destination.

FlowSourceFlowConfigSourceConnectorPropertiesGoogleAnalytics

Object string

Object specified in the flow destination.

Object string

Object specified in the flow destination.

object String

Object specified in the flow destination.

object string

Object specified in the flow destination.

object str

Object specified in the flow destination.

object String

Object specified in the flow destination.

FlowSourceFlowConfigSourceConnectorPropertiesInforNexus

Object string

Object specified in the flow destination.

Object string

Object specified in the flow destination.

object String

Object specified in the flow destination.

object string

Object specified in the flow destination.

object str

Object specified in the flow destination.

object String

Object specified in the flow destination.

FlowSourceFlowConfigSourceConnectorPropertiesMarketo

Object string

Object specified in the flow destination.

Object string

Object specified in the flow destination.

object String

Object specified in the flow destination.

object string

Object specified in the flow destination.

object str

Object specified in the flow destination.

object String

Object specified in the flow destination.

FlowSourceFlowConfigSourceConnectorPropertiesS3

BucketName string

Amazon S3 bucket name in which Amazon AppFlow places the transferred data.

BucketPrefix string

Object key for the bucket in which Amazon AppFlow places the destination files.

S3InputFormatConfig FlowSourceFlowConfigSourceConnectorPropertiesS3S3InputFormatConfig

When you use Amazon S3 as the source, the configuration format that you provide the flow input data. See S3 Input Format Config for details.

BucketName string

Amazon S3 bucket name in which Amazon AppFlow places the transferred data.

BucketPrefix string

Object key for the bucket in which Amazon AppFlow places the destination files.

S3InputFormatConfig FlowSourceFlowConfigSourceConnectorPropertiesS3S3InputFormatConfig

When you use Amazon S3 as the source, the configuration format that you provide the flow input data. See S3 Input Format Config for details.

bucketName String

Amazon S3 bucket name in which Amazon AppFlow places the transferred data.

bucketPrefix String

Object key for the bucket in which Amazon AppFlow places the destination files.

s3InputFormatConfig FlowSourceFlowConfigSourceConnectorPropertiesS3S3InputFormatConfig

When you use Amazon S3 as the source, the configuration format that you provide the flow input data. See S3 Input Format Config for details.

bucketName string

Amazon S3 bucket name in which Amazon AppFlow places the transferred data.

bucketPrefix string

Object key for the bucket in which Amazon AppFlow places the destination files.

s3InputFormatConfig FlowSourceFlowConfigSourceConnectorPropertiesS3S3InputFormatConfig

When you use Amazon S3 as the source, the configuration format that you provide the flow input data. See S3 Input Format Config for details.

bucket_name str

Amazon S3 bucket name in which Amazon AppFlow places the transferred data.

bucket_prefix str

Object key for the bucket in which Amazon AppFlow places the destination files.

s3_input_format_config FlowSourceFlowConfigSourceConnectorPropertiesS3S3InputFormatConfig

When you use Amazon S3 as the source, the configuration format that you provide the flow input data. See S3 Input Format Config for details.

bucketName String

Amazon S3 bucket name in which Amazon AppFlow places the transferred data.

bucketPrefix String

Object key for the bucket in which Amazon AppFlow places the destination files.

s3InputFormatConfig Property Map

When you use Amazon S3 as the source, the configuration format that you provide the flow input data. See S3 Input Format Config for details.

FlowSourceFlowConfigSourceConnectorPropertiesS3S3InputFormatConfig

S3InputFileType string

File type that Amazon AppFlow gets from your Amazon S3 bucket. Valid values are CSV and JSON.

S3InputFileType string

File type that Amazon AppFlow gets from your Amazon S3 bucket. Valid values are CSV and JSON.

s3InputFileType String

File type that Amazon AppFlow gets from your Amazon S3 bucket. Valid values are CSV and JSON.

s3InputFileType string

File type that Amazon AppFlow gets from your Amazon S3 bucket. Valid values are CSV and JSON.

s3_input_file_type str

File type that Amazon AppFlow gets from your Amazon S3 bucket. Valid values are CSV and JSON.

s3InputFileType String

File type that Amazon AppFlow gets from your Amazon S3 bucket. Valid values are CSV and JSON.

FlowSourceFlowConfigSourceConnectorPropertiesSalesforce

Object string

Object specified in the flow destination.

EnableDynamicFieldUpdate bool

Flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a flow.

IncludeDeletedRecords bool

Whether Amazon AppFlow includes deleted files in the flow run.

Object string

Object specified in the flow destination.

EnableDynamicFieldUpdate bool

Flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a flow.

IncludeDeletedRecords bool

Whether Amazon AppFlow includes deleted files in the flow run.

object String

Object specified in the flow destination.

enableDynamicFieldUpdate Boolean

Flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a flow.

includeDeletedRecords Boolean

Whether Amazon AppFlow includes deleted files in the flow run.

object string

Object specified in the flow destination.

enableDynamicFieldUpdate boolean

Flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a flow.

includeDeletedRecords boolean

Whether Amazon AppFlow includes deleted files in the flow run.

object str

Object specified in the flow destination.

enable_dynamic_field_update bool

Flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a flow.

include_deleted_records bool

Whether Amazon AppFlow includes deleted files in the flow run.

object String

Object specified in the flow destination.

enableDynamicFieldUpdate Boolean

Flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a flow.

includeDeletedRecords Boolean

Whether Amazon AppFlow includes deleted files in the flow run.

FlowSourceFlowConfigSourceConnectorPropertiesSapoData

ObjectPath string

Object path specified in the SAPOData flow destination.

ObjectPath string

Object path specified in the SAPOData flow destination.

objectPath String

Object path specified in the SAPOData flow destination.

objectPath string

Object path specified in the SAPOData flow destination.

object_path str

Object path specified in the SAPOData flow destination.

objectPath String

Object path specified in the SAPOData flow destination.

FlowSourceFlowConfigSourceConnectorPropertiesServiceNow

Object string

Object specified in the flow destination.

Object string

Object specified in the flow destination.

object String

Object specified in the flow destination.

object string

Object specified in the flow destination.

object str

Object specified in the flow destination.

object String

Object specified in the flow destination.

FlowSourceFlowConfigSourceConnectorPropertiesSingular

Object string

Object specified in the flow destination.

Object string

Object specified in the flow destination.

object String

Object specified in the flow destination.

object string

Object specified in the flow destination.

object str

Object specified in the flow destination.

object String

Object specified in the flow destination.

FlowSourceFlowConfigSourceConnectorPropertiesSlack

Object string

Object specified in the flow destination.

Object string

Object specified in the flow destination.

object String

Object specified in the flow destination.

object string

Object specified in the flow destination.

object str

Object specified in the flow destination.

object String

Object specified in the flow destination.

FlowSourceFlowConfigSourceConnectorPropertiesTrendmicro

Object string

Object specified in the flow destination.

Object string

Object specified in the flow destination.

object String

Object specified in the flow destination.

object string

Object specified in the flow destination.

object str

Object specified in the flow destination.

object String

Object specified in the flow destination.

FlowSourceFlowConfigSourceConnectorPropertiesVeeva

Object string

Object specified in the flow destination.

DocumentType string

Document type specified in the Veeva document extract flow.

IncludeAllVersions bool

Boolean value to include All Versions of files in Veeva document extract flow.

IncludeRenditions bool

Boolean value to include file renditions in Veeva document extract flow.

IncludeSourceFiles bool

Boolean value to include source files in Veeva document extract flow.

Object string

Object specified in the flow destination.

DocumentType string

Document type specified in the Veeva document extract flow.

IncludeAllVersions bool

Boolean value to include All Versions of files in Veeva document extract flow.

IncludeRenditions bool

Boolean value to include file renditions in Veeva document extract flow.

IncludeSourceFiles bool

Boolean value to include source files in Veeva document extract flow.

object String

Object specified in the flow destination.

documentType String

Document type specified in the Veeva document extract flow.

includeAllVersions Boolean

Boolean value to include All Versions of files in Veeva document extract flow.

includeRenditions Boolean

Boolean value to include file renditions in Veeva document extract flow.

includeSourceFiles Boolean

Boolean value to include source files in Veeva document extract flow.

object string

Object specified in the flow destination.

documentType string

Document type specified in the Veeva document extract flow.

includeAllVersions boolean

Boolean value to include All Versions of files in Veeva document extract flow.

includeRenditions boolean

Boolean value to include file renditions in Veeva document extract flow.

includeSourceFiles boolean

Boolean value to include source files in Veeva document extract flow.

object str

Object specified in the flow destination.

document_type str

Document type specified in the Veeva document extract flow.

include_all_versions bool

Boolean value to include All Versions of files in Veeva document extract flow.

include_renditions bool

Boolean value to include file renditions in Veeva document extract flow.

include_source_files bool

Boolean value to include source files in Veeva document extract flow.

object String

Object specified in the flow destination.

documentType String

Document type specified in the Veeva document extract flow.

includeAllVersions Boolean

Boolean value to include All Versions of files in Veeva document extract flow.

includeRenditions Boolean

Boolean value to include file renditions in Veeva document extract flow.

includeSourceFiles Boolean

Boolean value to include source files in Veeva document extract flow.

FlowSourceFlowConfigSourceConnectorPropertiesZendesk

Object string

Object specified in the flow destination.

Object string

Object specified in the flow destination.

object String

Object specified in the flow destination.

object string

Object specified in the flow destination.

object str

Object specified in the flow destination.

object String

Object specified in the flow destination.

FlowTask

SourceFields List<string>

Source fields to which a particular task is applied.

TaskType string

Particular task implementation that Amazon AppFlow performs. Valid values are Arithmetic, Filter, Map, Map_all, Mask, Merge, Passthrough, Truncate, and Validate.

ConnectorOperators List<FlowTaskConnectorOperator>

Operation to be performed on the provided source fields. See Connector Operator for details.

DestinationField string

Field in a destination connector, or a field value against which Amazon AppFlow validates a source field.

TaskProperties Dictionary<string, string>

Map used to store task-related information. The execution service looks for particular information based on the TaskType. Valid keys are 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, and EXCLUDE_SOURCE_FIELDS_LIST.

SourceFields []string

Source fields to which a particular task is applied.

TaskType string

Particular task implementation that Amazon AppFlow performs. Valid values are Arithmetic, Filter, Map, Map_all, Mask, Merge, Passthrough, Truncate, and Validate.

ConnectorOperators []FlowTaskConnectorOperator

Operation to be performed on the provided source fields. See Connector Operator for details.

DestinationField string

Field in a destination connector, or a field value against which Amazon AppFlow validates a source field.

TaskProperties map[string]string

Map used to store task-related information. The execution service looks for particular information based on the TaskType. Valid keys are 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, and EXCLUDE_SOURCE_FIELDS_LIST.

sourceFields List<String>

Source fields to which a particular task is applied.

taskType String

Particular task implementation that Amazon AppFlow performs. Valid values are Arithmetic, Filter, Map, Map_all, Mask, Merge, Passthrough, Truncate, and Validate.

connectorOperators List<FlowTaskConnectorOperator>

Operation to be performed on the provided source fields. See Connector Operator for details.

destinationField String

Field in a destination connector, or a field value against which Amazon AppFlow validates a source field.

taskProperties Map<String,String>

Map used to store task-related information. The execution service looks for particular information based on the TaskType. Valid keys are 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, and EXCLUDE_SOURCE_FIELDS_LIST.

sourceFields string[]

Source fields to which a particular task is applied.

taskType string

Particular task implementation that Amazon AppFlow performs. Valid values are Arithmetic, Filter, Map, Map_all, Mask, Merge, Passthrough, Truncate, and Validate.

connectorOperators FlowTaskConnectorOperator[]

Operation to be performed on the provided source fields. See Connector Operator for details.

destinationField string

Field in a destination connector, or a field value against which Amazon AppFlow validates a source field.

taskProperties {[key: string]: string}

Map used to store task-related information. The execution service looks for particular information based on the TaskType. Valid keys are 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, and EXCLUDE_SOURCE_FIELDS_LIST.

source_fields Sequence[str]

Source fields to which a particular task is applied.

task_type str

Particular task implementation that Amazon AppFlow performs. Valid values are Arithmetic, Filter, Map, Map_all, Mask, Merge, Passthrough, Truncate, and Validate.

connector_operators Sequence[FlowTaskConnectorOperator]

Operation to be performed on the provided source fields. See Connector Operator for details.

destination_field str

Field in a destination connector, or a field value against which Amazon AppFlow validates a source field.

task_properties Mapping[str, str]

Map used to store task-related information. The execution service looks for particular information based on the TaskType. Valid keys are 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, and EXCLUDE_SOURCE_FIELDS_LIST.

sourceFields List<String>

Source fields to which a particular task is applied.

taskType String

Particular task implementation that Amazon AppFlow performs. Valid values are Arithmetic, Filter, Map, Map_all, Mask, Merge, Passthrough, Truncate, and Validate.

connectorOperators List<Property Map>

Operation to be performed on the provided source fields. See Connector Operator for details.

destinationField String

Field in a destination connector, or a field value against which Amazon AppFlow validates a source field.

taskProperties Map<String>

Map used to store task-related information. The execution service looks for particular information based on the TaskType. Valid keys are 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, and EXCLUDE_SOURCE_FIELDS_LIST.

FlowTaskConnectorOperator

Amplitude string

Operation to be performed on the provided Amplitude source fields. The only valid value is BETWEEN.

CustomConnector string

Operators supported by the custom connector. Valid values are 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, and NO_OP.

Datadog string

Operation to be performed on the provided Datadog source fields. Valid values are 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, and NO_OP.

Dynatrace string

Operation to be performed on the provided Dynatrace source fields. Valid values are 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, and NO_OP.

GoogleAnalytics string

Operation to be performed on the provided Google Analytics source fields. Valid values are PROJECTION and BETWEEN.

InforNexus string

Operation to be performed on the provided Infor Nexus source fields. Valid values are 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, and NO_OP.

Marketo string

Operation to be performed on the provided Marketo source fields. Valid values are 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, and NO_OP.

S3 string

Operation to be performed on the provided Amazon S3 source fields. Valid values are 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, and NO_OP.

Salesforce string

Operation to be performed on the provided Salesforce source fields. Valid values are 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, and NO_OP.

SapoData string

Operation to be performed on the provided SAPOData source fields. Valid values are 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, and NO_OP.

ServiceNow string

Operation to be performed on the provided ServiceNow source fields. Valid values are 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, and NO_OP.

Singular string

Operation to be performed on the provided Singular source fields. Valid values are 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, and NO_OP.

Slack string

Operation to be performed on the provided Slack source fields. Valid values are PROJECTION, LESS_THAN, GREATER_THAN, BETWEEN, LESS_THAN_OR_EQUAL_TO, GREATER_THAN_OR_EQUAL_TO, 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, and NO_OP.

Trendmicro string

Operation to be performed on the provided Trend Micro source fields. Valid values are 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, and NO_OP.

Veeva string

Operation to be performed on the provided Veeva source fields. Valid values are 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, and NO_OP.

Zendesk string

Operation to be performed on the provided Zendesk source fields. Valid values are 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, and NO_OP.

Amplitude string

Operation to be performed on the provided Amplitude source fields. The only valid value is BETWEEN.

CustomConnector string

Operators supported by the custom connector. Valid values are 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, and NO_OP.

Datadog string

Operation to be performed on the provided Datadog source fields. Valid values are 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, and NO_OP.

Dynatrace string

Operation to be performed on the provided Dynatrace source fields. Valid values are 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, and NO_OP.

GoogleAnalytics string

Operation to be performed on the provided Google Analytics source fields. Valid values are PROJECTION and BETWEEN.

InforNexus string

Operation to be performed on the provided Infor Nexus source fields. Valid values are 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, and NO_OP.

Marketo string

Operation to be performed on the provided Marketo source fields. Valid values are 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, and NO_OP.

S3 string

Operation to be performed on the provided Amazon S3 source fields. Valid values are 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, and NO_OP.

Salesforce string

Operation to be performed on the provided Salesforce source fields. Valid values are 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, and NO_OP.

SapoData string

Operation to be performed on the provided SAPOData source fields. Valid values are 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, and NO_OP.

ServiceNow string

Operation to be performed on the provided ServiceNow source fields. Valid values are 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, and NO_OP.

Singular string

Operation to be performed on the provided Singular source fields. Valid values are 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, and NO_OP.

Slack string

Operation to be performed on the provided Slack source fields. Valid values are PROJECTION, LESS_THAN, GREATER_THAN, BETWEEN, LESS_THAN_OR_EQUAL_TO, GREATER_THAN_OR_EQUAL_TO, 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, and NO_OP.

Trendmicro string

Operation to be performed on the provided Trend Micro source fields. Valid values are 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, and NO_OP.

Veeva string

Operation to be performed on the provided Veeva source fields. Valid values are 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, and NO_OP.

Zendesk string

Operation to be performed on the provided Zendesk source fields. Valid values are 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, and NO_OP.

amplitude String

Operation to be performed on the provided Amplitude source fields. The only valid value is BETWEEN.

customConnector String

Operators supported by the custom connector. Valid values are 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, and NO_OP.

datadog String

Operation to be performed on the provided Datadog source fields. Valid values are 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, and NO_OP.

dynatrace String

Operation to be performed on the provided Dynatrace source fields. Valid values are 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, and NO_OP.

googleAnalytics String

Operation to be performed on the provided Google Analytics source fields. Valid values are PROJECTION and BETWEEN.

inforNexus String

Operation to be performed on the provided Infor Nexus source fields. Valid values are 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, and NO_OP.

marketo String

Operation to be performed on the provided Marketo source fields. Valid values are 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, and NO_OP.

s3 String

Operation to be performed on the provided Amazon S3 source fields. Valid values are 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, and NO_OP.

salesforce String

Operation to be performed on the provided Salesforce source fields. Valid values are 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, and NO_OP.

sapoData String

Operation to be performed on the provided SAPOData source fields. Valid values are 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, and NO_OP.

serviceNow String

Operation to be performed on the provided ServiceNow source fields. Valid values are 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, and NO_OP.

singular String

Operation to be performed on the provided Singular source fields. Valid values are 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, and NO_OP.

slack String

Operation to be performed on the provided Slack source fields. Valid values are PROJECTION, LESS_THAN, GREATER_THAN, BETWEEN, LESS_THAN_OR_EQUAL_TO, GREATER_THAN_OR_EQUAL_TO, 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, and NO_OP.

trendmicro String

Operation to be performed on the provided Trend Micro source fields. Valid values are 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, and NO_OP.

veeva String

Operation to be performed on the provided Veeva source fields. Valid values are 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, and NO_OP.

zendesk String

Operation to be performed on the provided Zendesk source fields. Valid values are 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, and NO_OP.

amplitude string

Operation to be performed on the provided Amplitude source fields. The only valid value is BETWEEN.

customConnector string

Operators supported by the custom connector. Valid values are 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, and NO_OP.

datadog string

Operation to be performed on the provided Datadog source fields. Valid values are 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, and NO_OP.

dynatrace string

Operation to be performed on the provided Dynatrace source fields. Valid values are 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, and NO_OP.

googleAnalytics string

Operation to be performed on the provided Google Analytics source fields. Valid values are PROJECTION and BETWEEN.

inforNexus string

Operation to be performed on the provided Infor Nexus source fields. Valid values are 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, and NO_OP.

marketo string

Operation to be performed on the provided Marketo source fields. Valid values are 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, and NO_OP.

s3 string

Operation to be performed on the provided Amazon S3 source fields. Valid values are 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, and NO_OP.

salesforce string

Operation to be performed on the provided Salesforce source fields. Valid values are 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, and NO_OP.

sapoData string

Operation to be performed on the provided SAPOData source fields. Valid values are 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, and NO_OP.

serviceNow string

Operation to be performed on the provided ServiceNow source fields. Valid values are 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, and NO_OP.

singular string

Operation to be performed on the provided Singular source fields. Valid values are 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, and NO_OP.

slack string

Operation to be performed on the provided Slack source fields. Valid values are PROJECTION, LESS_THAN, GREATER_THAN, BETWEEN, LESS_THAN_OR_EQUAL_TO, GREATER_THAN_OR_EQUAL_TO, 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, and NO_OP.

trendmicro string

Operation to be performed on the provided Trend Micro source fields. Valid values are 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, and NO_OP.

veeva string

Operation to be performed on the provided Veeva source fields. Valid values are 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, and NO_OP.

zendesk string

Operation to be performed on the provided Zendesk source fields. Valid values are 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, and NO_OP.

amplitude str

Operation to be performed on the provided Amplitude source fields. The only valid value is BETWEEN.

custom_connector str

Operators supported by the custom connector. Valid values are 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, and NO_OP.

datadog str

Operation to be performed on the provided Datadog source fields. Valid values are 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, and NO_OP.

dynatrace str

Operation to be performed on the provided Dynatrace source fields. Valid values are 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, and NO_OP.

google_analytics str

Operation to be performed on the provided Google Analytics source fields. Valid values are PROJECTION and BETWEEN.

infor_nexus str

Operation to be performed on the provided Infor Nexus source fields. Valid values are 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, and NO_OP.

marketo str

Operation to be performed on the provided Marketo source fields. Valid values are 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, and NO_OP.

s3 str

Operation to be performed on the provided Amazon S3 source fields. Valid values are 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, and NO_OP.

salesforce str

Operation to be performed on the provided Salesforce source fields. Valid values are 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, and NO_OP.

sapo_data str

Operation to be performed on the provided SAPOData source fields. Valid values are 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, and NO_OP.

service_now str

Operation to be performed on the provided ServiceNow source fields. Valid values are 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, and NO_OP.

singular str

Operation to be performed on the provided Singular source fields. Valid values are 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, and NO_OP.

slack str

Operation to be performed on the provided Slack source fields. Valid values are PROJECTION, LESS_THAN, GREATER_THAN, BETWEEN, LESS_THAN_OR_EQUAL_TO, GREATER_THAN_OR_EQUAL_TO, 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, and NO_OP.

trendmicro str

Operation to be performed on the provided Trend Micro source fields. Valid values are 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, and NO_OP.

veeva str

Operation to be performed on the provided Veeva source fields. Valid values are 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, and NO_OP.

zendesk str

Operation to be performed on the provided Zendesk source fields. Valid values are 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, and NO_OP.

amplitude String

Operation to be performed on the provided Amplitude source fields. The only valid value is BETWEEN.

customConnector String

Operators supported by the custom connector. Valid values are 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, and NO_OP.

datadog String

Operation to be performed on the provided Datadog source fields. Valid values are 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, and NO_OP.

dynatrace String

Operation to be performed on the provided Dynatrace source fields. Valid values are 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, and NO_OP.

googleAnalytics String

Operation to be performed on the provided Google Analytics source fields. Valid values are PROJECTION and BETWEEN.

inforNexus String

Operation to be performed on the provided Infor Nexus source fields. Valid values are 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, and NO_OP.

marketo String

Operation to be performed on the provided Marketo source fields. Valid values are 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, and NO_OP.

s3 String

Operation to be performed on the provided Amazon S3 source fields. Valid values are 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, and NO_OP.

salesforce String

Operation to be performed on the provided Salesforce source fields. Valid values are 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, and NO_OP.

sapoData String

Operation to be performed on the provided SAPOData source fields. Valid values are 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, and NO_OP.

serviceNow String

Operation to be performed on the provided ServiceNow source fields. Valid values are 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, and NO_OP.

singular String

Operation to be performed on the provided Singular source fields. Valid values are 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, and NO_OP.

slack String

Operation to be performed on the provided Slack source fields. Valid values are PROJECTION, LESS_THAN, GREATER_THAN, BETWEEN, LESS_THAN_OR_EQUAL_TO, GREATER_THAN_OR_EQUAL_TO, 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, and NO_OP.

trendmicro String

Operation to be performed on the provided Trend Micro source fields. Valid values are 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, and NO_OP.

veeva String

Operation to be performed on the provided Veeva source fields. Valid values are 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, and NO_OP.

zendesk String

Operation to be performed on the provided Zendesk source fields. Valid values are 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, and NO_OP.

FlowTriggerConfig

TriggerType string

Type of flow trigger. Valid values are Scheduled, Event, and OnDemand.

TriggerProperties FlowTriggerConfigTriggerProperties

Configuration details of a schedule-triggered flow as defined by the user. Currently, these settings only apply to the Scheduled trigger type. See Scheduled Trigger Properties for details.

TriggerType string

Type of flow trigger. Valid values are Scheduled, Event, and OnDemand.

TriggerProperties FlowTriggerConfigTriggerProperties

Configuration details of a schedule-triggered flow as defined by the user. Currently, these settings only apply to the Scheduled trigger type. See Scheduled Trigger Properties for details.

triggerType String

Type of flow trigger. Valid values are Scheduled, Event, and OnDemand.

triggerProperties FlowTriggerConfigTriggerProperties

Configuration details of a schedule-triggered flow as defined by the user. Currently, these settings only apply to the Scheduled trigger type. See Scheduled Trigger Properties for details.

triggerType string

Type of flow trigger. Valid values are Scheduled, Event, and OnDemand.

triggerProperties FlowTriggerConfigTriggerProperties

Configuration details of a schedule-triggered flow as defined by the user. Currently, these settings only apply to the Scheduled trigger type. See Scheduled Trigger Properties for details.

trigger_type str

Type of flow trigger. Valid values are Scheduled, Event, and OnDemand.

trigger_properties FlowTriggerConfigTriggerProperties

Configuration details of a schedule-triggered flow as defined by the user. Currently, these settings only apply to the Scheduled trigger type. See Scheduled Trigger Properties for details.

triggerType String

Type of flow trigger. Valid values are Scheduled, Event, and OnDemand.

triggerProperties Property Map

Configuration details of a schedule-triggered flow as defined by the user. Currently, these settings only apply to the Scheduled trigger type. See Scheduled Trigger Properties for details.

FlowTriggerConfigTriggerProperties

FlowTriggerConfigTriggerPropertiesScheduled

ScheduleExpression string

Scheduling expression that determines the rate at which the schedule will run, for example rate(5minutes).

DataPullMode string

Whether a scheduled flow has an incremental data transfer or a complete data transfer for each flow run. Valid values are Incremental and Complete.

FirstExecutionFrom string

Date range for the records to import from the connector in the first flow run. Must be a valid RFC3339 timestamp.

ScheduleEndTime string

Scheduled end time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.

ScheduleOffset int

Optional offset that is added to the time interval for a schedule-triggered flow. Maximum value of 36000.

ScheduleStartTime string

Scheduled start time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.

Timezone string

Time zone used when referring to the date and time of a scheduled-triggered flow, such as America/New_York.

ScheduleExpression string

Scheduling expression that determines the rate at which the schedule will run, for example rate(5minutes).

DataPullMode string

Whether a scheduled flow has an incremental data transfer or a complete data transfer for each flow run. Valid values are Incremental and Complete.

FirstExecutionFrom string

Date range for the records to import from the connector in the first flow run. Must be a valid RFC3339 timestamp.

ScheduleEndTime string

Scheduled end time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.

ScheduleOffset int

Optional offset that is added to the time interval for a schedule-triggered flow. Maximum value of 36000.

ScheduleStartTime string

Scheduled start time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.

Timezone string

Time zone used when referring to the date and time of a scheduled-triggered flow, such as America/New_York.

scheduleExpression String

Scheduling expression that determines the rate at which the schedule will run, for example rate(5minutes).

dataPullMode String

Whether a scheduled flow has an incremental data transfer or a complete data transfer for each flow run. Valid values are Incremental and Complete.

firstExecutionFrom String

Date range for the records to import from the connector in the first flow run. Must be a valid RFC3339 timestamp.

scheduleEndTime String

Scheduled end time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.

scheduleOffset Integer

Optional offset that is added to the time interval for a schedule-triggered flow. Maximum value of 36000.

scheduleStartTime String

Scheduled start time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.

timezone String

Time zone used when referring to the date and time of a scheduled-triggered flow, such as America/New_York.

scheduleExpression string

Scheduling expression that determines the rate at which the schedule will run, for example rate(5minutes).

dataPullMode string

Whether a scheduled flow has an incremental data transfer or a complete data transfer for each flow run. Valid values are Incremental and Complete.

firstExecutionFrom string

Date range for the records to import from the connector in the first flow run. Must be a valid RFC3339 timestamp.

scheduleEndTime string

Scheduled end time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.

scheduleOffset number

Optional offset that is added to the time interval for a schedule-triggered flow. Maximum value of 36000.

scheduleStartTime string

Scheduled start time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.

timezone string

Time zone used when referring to the date and time of a scheduled-triggered flow, such as America/New_York.

schedule_expression str

Scheduling expression that determines the rate at which the schedule will run, for example rate(5minutes).

data_pull_mode str

Whether a scheduled flow has an incremental data transfer or a complete data transfer for each flow run. Valid values are Incremental and Complete.

first_execution_from str

Date range for the records to import from the connector in the first flow run. Must be a valid RFC3339 timestamp.

schedule_end_time str

Scheduled end time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.

schedule_offset int

Optional offset that is added to the time interval for a schedule-triggered flow. Maximum value of 36000.

schedule_start_time str

Scheduled start time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.

timezone str

Time zone used when referring to the date and time of a scheduled-triggered flow, such as America/New_York.

scheduleExpression String

Scheduling expression that determines the rate at which the schedule will run, for example rate(5minutes).

dataPullMode String

Whether a scheduled flow has an incremental data transfer or a complete data transfer for each flow run. Valid values are Incremental and Complete.

firstExecutionFrom String

Date range for the records to import from the connector in the first flow run. Must be a valid RFC3339 timestamp.

scheduleEndTime String

Scheduled end time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.

scheduleOffset Number

Optional offset that is added to the time interval for a schedule-triggered flow. Maximum value of 36000.

scheduleStartTime String

Scheduled start time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.

timezone String

Time zone used when referring to the date and time of a scheduled-triggered flow, such as America/New_York.

Import

AppFlow flows can be imported using the arn, e.g.

 $ pulumi import aws:appflow/flow:Flow example arn:aws:appflow:us-west-2:123456789012:flow/example-flow

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes

This Pulumi package is based on the aws Terraform Provider.