AWS Classic
Flow
Provides an AppFlow flow resource.
Example Usage
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var exampleSourceBucketV2 = new Aws.S3.BucketV2("exampleSourceBucketV2", new Aws.S3.BucketV2Args
{
});
var exampleSourceBucketPolicy = new Aws.S3.BucketPolicy("exampleSourceBucketPolicy", new Aws.S3.BucketPolicyArgs
{
Bucket = exampleSourceBucketV2.Id,
Policy = @"{
""Statement"": [
{
""Effect"": ""Allow"",
""Sid"": ""AllowAppFlowSourceActions"",
""Principal"": {
""Service"": ""appflow.amazonaws.com""
},
""Action"": [
""s3:ListBucket"",
""s3:GetObject""
],
""Resource"": [
""arn:aws:s3:::example_source"",
""arn:aws:s3:::example_source/*""
]
}
],
""Version"": ""2012-10-17""
}
",
});
var exampleBucketObjectv2 = new Aws.S3.BucketObjectv2("exampleBucketObjectv2", new Aws.S3.BucketObjectv2Args
{
Bucket = exampleSourceBucketV2.Id,
Key = "example_source.csv",
Source = new FileAsset("example_source.csv"),
});
var exampleDestinationBucketV2 = new Aws.S3.BucketV2("exampleDestinationBucketV2", new Aws.S3.BucketV2Args
{
});
var exampleDestinationBucketPolicy = new Aws.S3.BucketPolicy("exampleDestinationBucketPolicy", new Aws.S3.BucketPolicyArgs
{
Bucket = exampleDestinationBucketV2.Id,
Policy = @"
{
""Statement"": [
{
""Effect"": ""Allow"",
""Sid"": ""AllowAppFlowDestinationActions"",
""Principal"": {
""Service"": ""appflow.amazonaws.com""
},
""Action"": [
""s3:PutObject"",
""s3:AbortMultipartUpload"",
""s3:ListMultipartUploadParts"",
""s3:ListBucketMultipartUploads"",
""s3:GetBucketAcl"",
""s3:PutObjectAcl""
],
""Resource"": [
""arn:aws:s3:::example_destination"",
""arn:aws:s3:::example_destination/*""
]
}
],
""Version"": ""2012-10-17""
}
",
});
var exampleFlow = new Aws.AppFlow.Flow("exampleFlow", new Aws.AppFlow.FlowArgs
{
SourceFlowConfig = new Aws.AppFlow.Inputs.FlowSourceFlowConfigArgs
{
ConnectorType = "S3",
SourceConnectorProperties = new Aws.AppFlow.Inputs.FlowSourceFlowConfigSourceConnectorPropertiesArgs
{
S3 = new Aws.AppFlow.Inputs.FlowSourceFlowConfigSourceConnectorPropertiesS3Args
{
BucketName = exampleSourceBucketPolicy.Bucket,
BucketPrefix = "example",
},
},
},
DestinationFlowConfigs =
{
new Aws.AppFlow.Inputs.FlowDestinationFlowConfigArgs
{
ConnectorType = "S3",
DestinationConnectorProperties = new Aws.AppFlow.Inputs.FlowDestinationFlowConfigDestinationConnectorPropertiesArgs
{
S3 = new Aws.AppFlow.Inputs.FlowDestinationFlowConfigDestinationConnectorPropertiesS3Args
{
BucketName = exampleDestinationBucketPolicy.Bucket,
S3OutputFormatConfig = new Aws.AppFlow.Inputs.FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfigArgs
{
PrefixConfig = new Aws.AppFlow.Inputs.FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfigPrefixConfigArgs
{
PrefixType = "PATH",
},
},
},
},
},
},
Tasks =
{
new Aws.AppFlow.Inputs.FlowTaskArgs
{
SourceFields =
{
"exampleField",
},
DestinationField = "exampleField",
TaskType = "Map",
ConnectorOperators =
{
new Aws.AppFlow.Inputs.FlowTaskConnectorOperatorArgs
{
S3 = "NO_OP",
},
},
},
},
TriggerConfig = new Aws.AppFlow.Inputs.FlowTriggerConfigArgs
{
TriggerType = "OnDemand",
},
});
}
}
package main
import (
"fmt"
"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/appflow"
"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/s3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleSourceBucketV2, err := s3.NewBucketV2(ctx, "exampleSourceBucketV2", nil)
if err != nil {
return err
}
exampleSourceBucketPolicy, err := s3.NewBucketPolicy(ctx, "exampleSourceBucketPolicy", &s3.BucketPolicyArgs{
Bucket: exampleSourceBucketV2.ID(),
Policy: pulumi.Any(fmt.Sprintf("%v%v%v%v%v%v%v%v%v%v%v%v%v%v%v%v%v%v%v%v", "{\n", " \"Statement\": [\n", " {\n", " \"Effect\": \"Allow\",\n", " \"Sid\": \"AllowAppFlowSourceActions\",\n", " \"Principal\": {\n", " \"Service\": \"appflow.amazonaws.com\"\n", " },\n", " \"Action\": [\n", " \"s3:ListBucket\",\n", " \"s3:GetObject\"\n", " ],\n", " \"Resource\": [\n", " \"arn:aws:s3:::example_source\",\n", " \"arn:aws:s3:::example_source/*\"\n", " ]\n", " }\n", " ],\n", " \"Version\": \"2012-10-17\"\n", "}\n")),
})
if err != nil {
return err
}
_, err = s3.NewBucketObjectv2(ctx, "exampleBucketObjectv2", &s3.BucketObjectv2Args{
Bucket: exampleSourceBucketV2.ID(),
Key: pulumi.String("example_source.csv"),
Source: pulumi.NewFileAsset("example_source.csv"),
})
if err != nil {
return err
}
exampleDestinationBucketV2, err := s3.NewBucketV2(ctx, "exampleDestinationBucketV2", nil)
if err != nil {
return err
}
exampleDestinationBucketPolicy, err := s3.NewBucketPolicy(ctx, "exampleDestinationBucketPolicy", &s3.BucketPolicyArgs{
Bucket: exampleDestinationBucketV2.ID(),
Policy: pulumi.Any(fmt.Sprintf("%v%v%v%v%v%v%v%v%v%v%v%v%v%v%v%v%v%v%v%v%v%v%v%v%v", "\n", "{\n", " \"Statement\": [\n", " {\n", " \"Effect\": \"Allow\",\n", " \"Sid\": \"AllowAppFlowDestinationActions\",\n", " \"Principal\": {\n", " \"Service\": \"appflow.amazonaws.com\"\n", " },\n", " \"Action\": [\n", " \"s3:PutObject\",\n", " \"s3:AbortMultipartUpload\",\n", " \"s3:ListMultipartUploadParts\",\n", " \"s3:ListBucketMultipartUploads\",\n", " \"s3:GetBucketAcl\",\n", " \"s3:PutObjectAcl\"\n", " ],\n", " \"Resource\": [\n", " \"arn:aws:s3:::example_destination\",\n", " \"arn:aws:s3:::example_destination/*\"\n", " ]\n", " }\n", " ],\n", " \"Version\": \"2012-10-17\"\n", "}\n")),
})
if err != nil {
return err
}
_, err = appflow.NewFlow(ctx, "exampleFlow", &appflow.FlowArgs{
SourceFlowConfig: &appflow.FlowSourceFlowConfigArgs{
ConnectorType: pulumi.String("S3"),
SourceConnectorProperties: &appflow.FlowSourceFlowConfigSourceConnectorPropertiesArgs{
S3: &appflow.FlowSourceFlowConfigSourceConnectorPropertiesS3Args{
BucketName: exampleSourceBucketPolicy.Bucket,
BucketPrefix: pulumi.String("example"),
},
},
},
DestinationFlowConfigs: appflow.FlowDestinationFlowConfigArray{
&appflow.FlowDestinationFlowConfigArgs{
ConnectorType: pulumi.String("S3"),
DestinationConnectorProperties: &appflow.FlowDestinationFlowConfigDestinationConnectorPropertiesArgs{
S3: &appflow.FlowDestinationFlowConfigDestinationConnectorPropertiesS3Args{
BucketName: exampleDestinationBucketPolicy.Bucket,
S3OutputFormatConfig: &appflow.FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfigArgs{
PrefixConfig: &appflow.FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfigPrefixConfigArgs{
PrefixType: pulumi.String("PATH"),
},
},
},
},
},
},
Tasks: appflow.FlowTaskArray{
&appflow.FlowTaskArgs{
SourceFields: pulumi.StringArray{
pulumi.String("exampleField"),
},
DestinationField: pulumi.String("exampleField"),
TaskType: pulumi.String("Map"),
ConnectorOperators: appflow.FlowTaskConnectorOperatorArray{
&appflow.FlowTaskConnectorOperatorArgs{
S3: pulumi.String("NO_OP"),
},
},
},
},
TriggerConfig: &appflow.FlowTriggerConfigArgs{
TriggerType: pulumi.String("OnDemand"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import java.util.*;
import java.io.*;
import java.nio.*;
import com.pulumi.*;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var exampleSourceBucketV2 = new BucketV2("exampleSourceBucketV2");
var exampleSourceBucketPolicy = new BucketPolicy("exampleSourceBucketPolicy", BucketPolicyArgs.builder()
.bucket(exampleSourceBucketV2.id())
.policy("""
{
"Statement": [
{
"Effect": "Allow",
"Sid": "AllowAppFlowSourceActions",
"Principal": {
"Service": "appflow.amazonaws.com"
},
"Action": [
"s3:ListBucket",
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::example_source",
"arn:aws:s3:::example_source/*"
]
}
],
"Version": "2012-10-17"
}
""")
.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");
var exampleDestinationBucketPolicy = new BucketPolicy("exampleDestinationBucketPolicy", BucketPolicyArgs.builder()
.bucket(exampleDestinationBucketV2.id())
.policy("""
{
"Statement": [
{
"Effect": "Allow",
"Sid": "AllowAppFlowDestinationActions",
"Principal": {
"Service": "appflow.amazonaws.com"
},
"Action": [
"s3:PutObject",
"s3:AbortMultipartUpload",
"s3:ListMultipartUploadParts",
"s3:ListBucketMultipartUploads",
"s3:GetBucketAcl",
"s3:PutObjectAcl"
],
"Resource": [
"arn:aws:s3:::example_destination",
"arn:aws:s3:::example_destination/*"
]
}
],
"Version": "2012-10-17"
}
""")
.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());
}
}
import pulumi
import pulumi_aws as aws
example_source_bucket_v2 = aws.s3.BucketV2("exampleSourceBucketV2")
example_source_bucket_policy = aws.s3.BucketPolicy("exampleSourceBucketPolicy",
bucket=example_source_bucket_v2.id,
policy="""{
"Statement": [
{
"Effect": "Allow",
"Sid": "AllowAppFlowSourceActions",
"Principal": {
"Service": "appflow.amazonaws.com"
},
"Action": [
"s3:ListBucket",
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::example_source",
"arn:aws:s3:::example_source/*"
]
}
],
"Version": "2012-10-17"
}
""")
example_bucket_objectv2 = aws.s3.BucketObjectv2("exampleBucketObjectv2",
bucket=example_source_bucket_v2.id,
key="example_source.csv",
source=pulumi.FileAsset("example_source.csv"))
example_destination_bucket_v2 = aws.s3.BucketV2("exampleDestinationBucketV2")
example_destination_bucket_policy = aws.s3.BucketPolicy("exampleDestinationBucketPolicy",
bucket=example_destination_bucket_v2.id,
policy="""
{
"Statement": [
{
"Effect": "Allow",
"Sid": "AllowAppFlowDestinationActions",
"Principal": {
"Service": "appflow.amazonaws.com"
},
"Action": [
"s3:PutObject",
"s3:AbortMultipartUpload",
"s3:ListMultipartUploadParts",
"s3:ListBucketMultipartUploads",
"s3:GetBucketAcl",
"s3:PutObjectAcl"
],
"Resource": [
"arn:aws:s3:::example_destination",
"arn:aws:s3:::example_destination/*"
]
}
],
"Version": "2012-10-17"
}
""")
example_flow = aws.appflow.Flow("exampleFlow",
source_flow_config=aws.appflow.FlowSourceFlowConfigArgs(
connector_type="S3",
source_connector_properties=aws.appflow.FlowSourceFlowConfigSourceConnectorPropertiesArgs(
s3=aws.appflow.FlowSourceFlowConfigSourceConnectorPropertiesS3Args(
bucket_name=example_source_bucket_policy.bucket,
bucket_prefix="example",
),
),
),
destination_flow_configs=[aws.appflow.FlowDestinationFlowConfigArgs(
connector_type="S3",
destination_connector_properties=aws.appflow.FlowDestinationFlowConfigDestinationConnectorPropertiesArgs(
s3=aws.appflow.FlowDestinationFlowConfigDestinationConnectorPropertiesS3Args(
bucket_name=example_destination_bucket_policy.bucket,
s3_output_format_config=aws.appflow.FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfigArgs(
prefix_config=aws.appflow.FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfigPrefixConfigArgs(
prefix_type="PATH",
),
),
),
),
)],
tasks=[aws.appflow.FlowTaskArgs(
source_fields=["exampleField"],
destination_field="exampleField",
task_type="Map",
connector_operators=[aws.appflow.FlowTaskConnectorOperatorArgs(
s3="NO_OP",
)],
)],
trigger_config=aws.appflow.FlowTriggerConfigArgs(
trigger_type="OnDemand",
))
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const exampleSourceBucketV2 = new aws.s3.BucketV2("exampleSourceBucketV2", {});
const exampleSourceBucketPolicy = new aws.s3.BucketPolicy("exampleSourceBucketPolicy", {
bucket: exampleSourceBucketV2.id,
policy: `{
"Statement": [
{
"Effect": "Allow",
"Sid": "AllowAppFlowSourceActions",
"Principal": {
"Service": "appflow.amazonaws.com"
},
"Action": [
"s3:ListBucket",
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::example_source",
"arn:aws:s3:::example_source/*"
]
}
],
"Version": "2012-10-17"
}
`,
});
const exampleBucketObjectv2 = new aws.s3.BucketObjectv2("exampleBucketObjectv2", {
bucket: exampleSourceBucketV2.id,
key: "example_source.csv",
source: new pulumi.asset.FileAsset("example_source.csv"),
});
const exampleDestinationBucketV2 = new aws.s3.BucketV2("exampleDestinationBucketV2", {});
const exampleDestinationBucketPolicy = new aws.s3.BucketPolicy("exampleDestinationBucketPolicy", {
bucket: exampleDestinationBucketV2.id,
policy: `
{
"Statement": [
{
"Effect": "Allow",
"Sid": "AllowAppFlowDestinationActions",
"Principal": {
"Service": "appflow.amazonaws.com"
},
"Action": [
"s3:PutObject",
"s3:AbortMultipartUpload",
"s3:ListMultipartUploadParts",
"s3:ListBucketMultipartUploads",
"s3:GetBucketAcl",
"s3:PutObjectAcl"
],
"Resource": [
"arn:aws:s3:::example_destination",
"arn:aws:s3:::example_destination/*"
]
}
],
"Version": "2012-10-17"
}
`,
});
const exampleFlow = new aws.appflow.Flow("exampleFlow", {
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",
},
});
resources:
exampleSourceBucketV2:
type: aws:s3:BucketV2
exampleSourceBucketPolicy:
type: aws:s3:BucketPolicy
properties:
bucket: ${exampleSourceBucketV2.id}
policy: |
{
"Statement": [
{
"Effect": "Allow",
"Sid": "AllowAppFlowSourceActions",
"Principal": {
"Service": "appflow.amazonaws.com"
},
"Action": [
"s3:ListBucket",
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::example_source",
"arn:aws:s3:::example_source/*"
]
}
],
"Version": "2012-10-17"
}
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: |2
{
"Statement": [
{
"Effect": "Allow",
"Sid": "AllowAppFlowDestinationActions",
"Principal": {
"Service": "appflow.amazonaws.com"
},
"Action": [
"s3:PutObject",
"s3:AbortMultipartUpload",
"s3:ListMultipartUploadParts",
"s3:ListBucketMultipartUploads",
"s3:GetBucketAcl",
"s3:PutObjectAcl"
],
"Resource": [
"arn:aws:s3:::example_destination",
"arn:aws:s3:::example_destination/*"
]
}
],
"Version": "2012-10-17"
}
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
Create a 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,
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)
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:
- Destination
Flow List<FlowConfigs Destination Flow Config Args> A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.
- Source
Flow FlowConfig Source Flow Config Args The Source Flow Config that controls how Amazon AppFlow retrieves data from the source connector.
- Tasks
List<Flow
Task Args> A Task that Amazon AppFlow performs while transferring the data in the flow run.
- Trigger
Config FlowTrigger Config Args A Trigger that determine how and when the flow runs.
- Description string
A description of the flow you want to create.
- Kms
Arn string The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you provide for encryption. This is required if you do not want to use the Amazon AppFlow-managed KMS key. If you don't provide anything here, Amazon AppFlow uses the Amazon AppFlow-managed KMS key.
- Name string
The name of the flow.
- 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.
- Destination
Flow []FlowConfigs Destination Flow Config Args A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.
- Source
Flow FlowConfig Source Flow Config Args The Source Flow Config that controls how Amazon AppFlow retrieves data from the source connector.
- Tasks
[]Flow
Task Args A Task that Amazon AppFlow performs while transferring the data in the flow run.
- Trigger
Config FlowTrigger Config Args A Trigger that determine how and when the flow runs.
- Description string
A description of the flow you want to create.
- Kms
Arn string The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you provide for encryption. This is required if you do not want to use the Amazon AppFlow-managed KMS key. If you don't provide anything here, Amazon AppFlow uses the Amazon AppFlow-managed KMS key.
- Name string
The name of the flow.
- 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.
- destination
Flow List<FlowConfigs Destination Flow Config Args> A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.
- source
Flow FlowConfig Source Flow Config Args The Source Flow Config that controls how Amazon AppFlow retrieves data from the source connector.
- tasks
List<Flow
Task Args> A Task that Amazon AppFlow performs while transferring the data in the flow run.
- trigger
Config FlowTrigger Config Args A Trigger that determine how and when the flow runs.
- description String
A description of the flow you want to create.
- kms
Arn String The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you provide for encryption. This is required if you do not want to use the Amazon AppFlow-managed KMS key. If you don't provide anything here, Amazon AppFlow uses the Amazon AppFlow-managed KMS key.
- name String
The name of the flow.
- 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.
- destination
Flow FlowConfigs Destination Flow Config Args[] A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.
- source
Flow FlowConfig Source Flow Config Args The Source Flow Config that controls how Amazon AppFlow retrieves data from the source connector.
- tasks
Flow
Task Args[] A Task that Amazon AppFlow performs while transferring the data in the flow run.
- trigger
Config FlowTrigger Config Args A Trigger that determine how and when the flow runs.
- description string
A description of the flow you want to create.
- kms
Arn string The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you provide for encryption. This is required if you do not want to use the Amazon AppFlow-managed KMS key. If you don't provide anything here, Amazon AppFlow uses the Amazon AppFlow-managed KMS key.
- name string
The name of the flow.
- {[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.
- destination_
flow_ Sequence[Flowconfigs Destination Flow Config Args] A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.
- source_
flow_ Flowconfig Source Flow Config Args The Source Flow Config that controls how Amazon AppFlow retrieves data from the source connector.
- tasks
Sequence[Flow
Task Args] A Task that Amazon AppFlow performs while transferring the data in the flow run.
- trigger_
config FlowTrigger Config Args A Trigger that determine how and when the flow runs.
- description str
A description of the flow you want to create.
- kms_
arn str The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you provide for encryption. This is required if you do not want to use the Amazon AppFlow-managed KMS key. If you don't provide anything here, Amazon AppFlow uses the Amazon AppFlow-managed KMS key.
- name str
The name of the flow.
- 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.
- destination
Flow List<Property Map>Configs A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.
- source
Flow Property MapConfig 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.
- trigger
Config Property Map A Trigger that determine how and when the flow runs.
- description String
A description of the flow you want to create.
- kms
Arn String The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you provide for encryption. This is required if you do not want to use the Amazon AppFlow-managed KMS key. If you don't provide anything here, Amazon AppFlow uses the Amazon AppFlow-managed KMS key.
- name String
The name of the flow.
- 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.
Outputs
All input properties are implicitly available as output properties. Additionally, the Flow resource produces the following output properties:
- Arn string
The flow's Amazon Resource Name (ARN).
- Id string
The provider-assigned unique ID for this managed resource.
- Dictionary<string, string>
Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
The flow's Amazon Resource Name (ARN).
- Id string
The provider-assigned unique ID for this managed resource.
- map[string]string
Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
The flow's Amazon Resource Name (ARN).
- id String
The provider-assigned unique ID for this managed resource.
- Map<String,String>
Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
The flow's Amazon Resource Name (ARN).
- id string
The provider-assigned unique ID for this managed resource.
- {[key: string]: string}
Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn str
The flow's Amazon Resource Name (ARN).
- id str
The provider-assigned unique ID for this managed resource.
- Mapping[str, str]
Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
The flow's Amazon Resource Name (ARN).
- id String
The provider-assigned unique ID for this managed resource.
- Map<String>
Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Look up an 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.
- Arn string
The flow's Amazon Resource Name (ARN).
- Description string
A description of the flow you want to create.
- Destination
Flow List<FlowConfigs Destination Flow Config Args> A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.
- Kms
Arn string The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you provide for encryption. This is required if you do not want to use the Amazon AppFlow-managed KMS key. If you don't provide anything here, Amazon AppFlow uses the Amazon AppFlow-managed KMS key.
- Name string
The name of the flow.
- Source
Flow FlowConfig Source Flow Config Args The Source Flow Config that controls how Amazon AppFlow retrieves data from the source connector.
- 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.- Dictionary<string, string>
Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.- Tasks
List<Flow
Task Args> A Task that Amazon AppFlow performs while transferring the data in the flow run.
- Trigger
Config FlowTrigger Config Args A Trigger that determine how and when the flow runs.
- Arn string
The flow's Amazon Resource Name (ARN).
- Description string
A description of the flow you want to create.
- Destination
Flow []FlowConfigs Destination Flow Config Args A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.
- Kms
Arn string The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you provide for encryption. This is required if you do not want to use the Amazon AppFlow-managed KMS key. If you don't provide anything here, Amazon AppFlow uses the Amazon AppFlow-managed KMS key.
- Name string
The name of the flow.
- Source
Flow FlowConfig Source Flow Config Args The Source Flow Config that controls how Amazon AppFlow retrieves data from the source connector.
- 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.- map[string]string
Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.- Tasks
[]Flow
Task Args A Task that Amazon AppFlow performs while transferring the data in the flow run.
- Trigger
Config FlowTrigger Config Args A Trigger that determine how and when the flow runs.
- arn String
The flow's Amazon Resource Name (ARN).
- description String
A description of the flow you want to create.
- destination
Flow List<FlowConfigs Destination Flow Config Args> A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.
- kms
Arn String The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you provide for encryption. This is required if you do not want to use the Amazon AppFlow-managed KMS key. If you don't provide anything here, Amazon AppFlow uses the Amazon AppFlow-managed KMS key.
- name String
The name of the flow.
- source
Flow FlowConfig Source Flow Config Args The Source Flow Config that controls how Amazon AppFlow retrieves data from the source connector.
- 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.- Map<String,String>
Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.- tasks
List<Flow
Task Args> A Task that Amazon AppFlow performs while transferring the data in the flow run.
- trigger
Config FlowTrigger Config Args A Trigger that determine how and when the flow runs.
- arn string
The flow's Amazon Resource Name (ARN).
- description string
A description of the flow you want to create.
- destination
Flow FlowConfigs Destination Flow Config Args[] A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.
- kms
Arn string The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you provide for encryption. This is required if you do not want to use the Amazon AppFlow-managed KMS key. If you don't provide anything here, Amazon AppFlow uses the Amazon AppFlow-managed KMS key.
- name string
The name of the flow.
- source
Flow FlowConfig Source Flow Config Args The Source Flow Config that controls how Amazon AppFlow retrieves data from the source connector.
- {[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.- {[key: string]: string}
Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.- tasks
Flow
Task Args[] A Task that Amazon AppFlow performs while transferring the data in the flow run.
- trigger
Config FlowTrigger Config Args A Trigger that determine how and when the flow runs.
- arn str
The flow's Amazon Resource Name (ARN).
- description str
A description of the flow you want to create.
- destination_
flow_ Sequence[Flowconfigs Destination Flow Config Args] A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.
- kms_
arn str The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you provide for encryption. This is required if you do not want to use the Amazon AppFlow-managed KMS key. If you don't provide anything here, Amazon AppFlow uses the Amazon AppFlow-managed KMS key.
- name str
The name of the flow.
- source_
flow_ Flowconfig Source Flow Config Args The Source Flow Config that controls how Amazon AppFlow retrieves data from the source connector.
- 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.- Mapping[str, str]
Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.- tasks
Sequence[Flow
Task Args] A Task that Amazon AppFlow performs while transferring the data in the flow run.
- trigger_
config FlowTrigger Config Args A Trigger that determine how and when the flow runs.
- arn String
The flow's Amazon Resource Name (ARN).
- description String
A description of the flow you want to create.
- destination
Flow List<Property Map>Configs A Destination Flow Config that controls how Amazon AppFlow places data in the destination connector.
- kms
Arn String The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you provide for encryption. This is required if you do not want to use the Amazon AppFlow-managed KMS key. If you don't provide anything here, Amazon AppFlow uses the Amazon AppFlow-managed KMS key.
- name String
The name of the flow.
- source
Flow Property MapConfig The Source Flow Config that controls how Amazon AppFlow retrieves data from the source connector.
- 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.- 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.
- trigger
Config Property Map A Trigger that determine how and when the flow runs.
Supporting Types
FlowDestinationFlowConfig
- Connector
Type string The 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
, andCustomConnector
.- Destination
Connector FlowProperties Destination Flow Config Destination Connector Properties This stores the information that is required to query a particular connector. See Destination Connector Properties for more information.
- Api
Version string The API version that the destination connector uses.
- Connector
Profile stringName The name of the connector profile. This name must be unique for each connector profile in the AWS account.
- Connector
Type string The 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
, andCustomConnector
.- Destination
Connector FlowProperties Destination Flow Config Destination Connector Properties This stores the information that is required to query a particular connector. See Destination Connector Properties for more information.
- Api
Version string The API version that the destination connector uses.
- Connector
Profile stringName The name of the connector profile. This name must be unique for each connector profile in the AWS account.
- connector
Type String The 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
, andCustomConnector
.- destination
Connector FlowProperties Destination Flow Config Destination Connector Properties This stores the information that is required to query a particular connector. See Destination Connector Properties for more information.
- api
Version String The API version that the destination connector uses.
- connector
Profile StringName The name of the connector profile. This name must be unique for each connector profile in the AWS account.
- connector
Type string The 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
, andCustomConnector
.- destination
Connector FlowProperties Destination Flow Config Destination Connector Properties This stores the information that is required to query a particular connector. See Destination Connector Properties for more information.
- api
Version string The API version that the destination connector uses.
- connector
Profile stringName The name of the connector profile. This name must be unique for each connector profile in the AWS account.
- connector_
type str The 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
, andCustomConnector
.- destination_
connector_ Flowproperties Destination Flow Config Destination Connector Properties This stores the information that is required to query a particular connector. See Destination Connector Properties for more information.
- api_
version str The API version that the destination connector uses.
- connector_
profile_ strname The name of the connector profile. This name must be unique for each connector profile in the AWS account.
- connector
Type String The 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
, andCustomConnector
.- destination
Connector Property MapProperties This stores the information that is required to query a particular connector. See Destination Connector Properties for more information.
- api
Version String The API version that the destination connector uses.
- connector
Profile StringName The name of the connector profile. This name must be unique for each connector profile in the AWS account.
FlowDestinationFlowConfigDestinationConnectorProperties
- Custom
Connector FlowDestination Flow Config Destination Connector Properties Custom Connector 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
, andNO_OP
.- Customer
Profiles FlowDestination Flow Config Destination Connector Properties Customer Profiles The properties that are required to query Amazon Connect Customer Profiles. See Customer Profiles Destination Properties for more details.
- Event
Bridge FlowDestination Flow Config Destination Connector Properties Event Bridge The properties that are required to query Amazon EventBridge. See Generic Destination Properties for more details.
- Honeycode
Flow
Destination Flow Config Destination Connector Properties Honeycode The properties that are required to query Amazon Honeycode. See Generic Destination Properties for more details.
- Lookout
Metrics FlowDestination Flow Config Destination Connector Properties Lookout Metrics - Marketo
Flow
Destination Flow Config Destination Connector Properties Marketo The 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
, andNO_OP
.- Redshift
Flow
Destination Flow Config Destination Connector Properties Redshift The properties that are required to query Amazon Redshift. See Redshift Destination Properties for more details.
- S3
Flow
Destination Flow Config Destination Connector Properties S3 The 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
, andNO_OP
.- Salesforce
Flow
Destination Flow Config Destination Connector Properties Salesforce The 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
, andNO_OP
.- Sapo
Data FlowDestination Flow Config Destination Connector Properties Sapo Data The 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
, andNO_OP
.- Snowflake
Flow
Destination Flow Config Destination Connector Properties Snowflake The properties that are required to query Snowflake. See Snowflake Destination Properties for more details.
- Upsolver
Flow
Destination Flow Config Destination Connector Properties Upsolver The properties that are required to query Upsolver. See Upsolver Destination Properties for more details.
- Zendesk
Flow
Destination Flow Config Destination Connector Properties Zendesk The 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
, andNO_OP
.
- Custom
Connector FlowDestination Flow Config Destination Connector Properties Custom Connector 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
, andNO_OP
.- Customer
Profiles FlowDestination Flow Config Destination Connector Properties Customer Profiles The properties that are required to query Amazon Connect Customer Profiles. See Customer Profiles Destination Properties for more details.
- Event
Bridge FlowDestination Flow Config Destination Connector Properties Event Bridge The properties that are required to query Amazon EventBridge. See Generic Destination Properties for more details.
- Honeycode
Flow
Destination Flow Config Destination Connector Properties Honeycode The properties that are required to query Amazon Honeycode. See Generic Destination Properties for more details.
- Lookout
Metrics FlowDestination Flow Config Destination Connector Properties Lookout Metrics - Marketo
Flow
Destination Flow Config Destination Connector Properties Marketo The 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
, andNO_OP
.- Redshift
Flow
Destination Flow Config Destination Connector Properties Redshift The properties that are required to query Amazon Redshift. See Redshift Destination Properties for more details.
- S3
Flow
Destination Flow Config Destination Connector Properties S3 The 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
, andNO_OP
.- Salesforce
Flow
Destination Flow Config Destination Connector Properties Salesforce The 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
, andNO_OP
.- Sapo
Data FlowDestination Flow Config Destination Connector Properties Sapo Data The 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
, andNO_OP
.- Snowflake
Flow
Destination Flow Config Destination Connector Properties Snowflake The properties that are required to query Snowflake. See Snowflake Destination Properties for more details.
- Upsolver
Flow
Destination Flow Config Destination Connector Properties Upsolver The properties that are required to query Upsolver. See Upsolver Destination Properties for more details.
- Zendesk
Flow
Destination Flow Config Destination Connector Properties Zendesk The 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
, andNO_OP
.
- custom
Connector FlowDestination Flow Config Destination Connector Properties Custom Connector 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
, andNO_OP
.- customer
Profiles FlowDestination Flow Config Destination Connector Properties Customer Profiles The properties that are required to query Amazon Connect Customer Profiles. See Customer Profiles Destination Properties for more details.
- event
Bridge FlowDestination Flow Config Destination Connector Properties Event Bridge The properties that are required to query Amazon EventBridge. See Generic Destination Properties for more details.
- honeycode
Flow
Destination Flow Config Destination Connector Properties Honeycode The properties that are required to query Amazon Honeycode. See Generic Destination Properties for more details.
- lookout
Metrics FlowDestination Flow Config Destination Connector Properties Lookout Metrics - marketo
Flow
Destination Flow Config Destination Connector Properties Marketo The 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
, andNO_OP
.- redshift
Flow
Destination Flow Config Destination Connector Properties Redshift The properties that are required to query Amazon Redshift. See Redshift Destination Properties for more details.
- s3
Flow
Destination Flow Config Destination Connector Properties S3 The 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
, andNO_OP
.- salesforce
Flow
Destination Flow Config Destination Connector Properties Salesforce The 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
, andNO_OP
.- sapo
Data FlowDestination Flow Config Destination Connector Properties Sapo Data The 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
, andNO_OP
.- snowflake
Flow
Destination Flow Config Destination Connector Properties Snowflake The properties that are required to query Snowflake. See Snowflake Destination Properties for more details.
- upsolver
Flow
Destination Flow Config Destination Connector Properties Upsolver The properties that are required to query Upsolver. See Upsolver Destination Properties for more details.
- zendesk
Flow
Destination Flow Config Destination Connector Properties Zendesk The 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
, andNO_OP
.
- custom
Connector FlowDestination Flow Config Destination Connector Properties Custom Connector 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
, andNO_OP
.- customer
Profiles FlowDestination Flow Config Destination Connector Properties Customer Profiles The properties that are required to query Amazon Connect Customer Profiles. See Customer Profiles Destination Properties for more details.
- event
Bridge FlowDestination Flow Config Destination Connector Properties Event Bridge The properties that are required to query Amazon EventBridge. See Generic Destination Properties for more details.
- honeycode
Flow
Destination Flow Config Destination Connector Properties Honeycode The properties that are required to query Amazon Honeycode. See Generic Destination Properties for more details.
- lookout
Metrics FlowDestination Flow Config Destination Connector Properties Lookout Metrics - marketo
Flow
Destination Flow Config Destination Connector Properties Marketo The 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
, andNO_OP
.- redshift
Flow
Destination Flow Config Destination Connector Properties Redshift The properties that are required to query Amazon Redshift. See Redshift Destination Properties for more details.
- s3
Flow
Destination Flow Config Destination Connector Properties S3 The 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
, andNO_OP
.- salesforce
Flow
Destination Flow Config Destination Connector Properties Salesforce The 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
, andNO_OP
.- sapo
Data FlowDestination Flow Config Destination Connector Properties Sapo Data The 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
, andNO_OP
.- snowflake
Flow
Destination Flow Config Destination Connector Properties Snowflake The properties that are required to query Snowflake. See Snowflake Destination Properties for more details.
- upsolver
Flow
Destination Flow Config Destination Connector Properties Upsolver The properties that are required to query Upsolver. See Upsolver Destination Properties for more details.
- zendesk
Flow
Destination Flow Config Destination Connector Properties Zendesk The 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
, andNO_OP
.
- custom_
connector FlowDestination Flow Config Destination Connector Properties Custom Connector 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
, andNO_OP
.- customer_
profiles FlowDestination Flow Config Destination Connector Properties Customer Profiles The properties that are required to query Amazon Connect Customer Profiles. See Customer Profiles Destination Properties for more details.
- event_
bridge FlowDestination Flow Config Destination Connector Properties Event Bridge The properties that are required to query Amazon EventBridge. See Generic Destination Properties for more details.
- honeycode
Flow
Destination Flow Config Destination Connector Properties Honeycode The properties that are required to query Amazon Honeycode. See Generic Destination Properties for more details.
- lookout_
metrics FlowDestination Flow Config Destination Connector Properties Lookout Metrics - marketo
Flow
Destination Flow Config Destination Connector Properties Marketo The 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
, andNO_OP
.- redshift
Flow
Destination Flow Config Destination Connector Properties Redshift The properties that are required to query Amazon Redshift. See Redshift Destination Properties for more details.
- s3
Flow
Destination Flow Config Destination Connector Properties S3 The 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
, andNO_OP
.- salesforce
Flow
Destination Flow Config Destination Connector Properties Salesforce The 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
, andNO_OP
.- sapo_
data FlowDestination Flow Config Destination Connector Properties Sapo Data The 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
, andNO_OP
.- snowflake
Flow
Destination Flow Config Destination Connector Properties Snowflake The properties that are required to query Snowflake. See Snowflake Destination Properties for more details.
- upsolver
Flow
Destination Flow Config Destination Connector Properties Upsolver The properties that are required to query Upsolver. See Upsolver Destination Properties for more details.
- zendesk
Flow
Destination Flow Config Destination Connector Properties Zendesk The 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
, andNO_OP
.
- custom
Connector Property Map 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
, andNO_OP
.- customer
Profiles Property Map The properties that are required to query Amazon Connect Customer Profiles. See Customer Profiles Destination Properties for more details.
- event
Bridge Property Map The properties that are required to query Amazon EventBridge. See Generic Destination Properties for more details.
- honeycode Property Map
The properties that are required to query Amazon Honeycode. See Generic Destination Properties for more details.
- lookout
Metrics Property Map - marketo Property Map
The 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
, andNO_OP
.- redshift Property Map
The properties that are required to query Amazon Redshift. See Redshift Destination Properties for more details.
- s3 Property Map
The 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
, andNO_OP
.- salesforce Property Map
The 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
, andNO_OP
.- sapo
Data Property Map The 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
, andNO_OP
.- snowflake Property Map
The properties that are required to query Snowflake. See Snowflake Destination Properties for more details.
- upsolver Property Map
The properties that are required to query Upsolver. See Upsolver Destination Properties for more details.
- zendesk Property Map
The 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
, andNO_OP
.
FlowDestinationFlowConfigDestinationConnectorPropertiesCustomConnector
- Entity
Name string The entity specified in the custom connector as a source in the flow.
- Custom
Properties Dictionary<string, string> The custom properties that are specific to the connector when it's used as a source in the flow. Maximum of 50 items.
- Error
Handling FlowConfig Destination Flow Config Destination Connector Properties Custom Connector Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- Id
Field List<string>Names The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- Write
Operation stringType This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
- Entity
Name string The entity specified in the custom connector as a source in the flow.
- Custom
Properties map[string]string The custom properties that are specific to the connector when it's used as a source in the flow. Maximum of 50 items.
- Error
Handling FlowConfig Destination Flow Config Destination Connector Properties Custom Connector Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- Id
Field []stringNames The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- Write
Operation stringType This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
- entity
Name String The entity specified in the custom connector as a source in the flow.
- custom
Properties Map<String,String> The custom properties that are specific to the connector when it's used as a source in the flow. Maximum of 50 items.
- error
Handling FlowConfig Destination Flow Config Destination Connector Properties Custom Connector Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- id
Field List<String>Names The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- write
Operation StringType This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
- entity
Name string The entity specified in the custom connector as a source in the flow.
- custom
Properties {[key: string]: string} The custom properties that are specific to the connector when it's used as a source in the flow. Maximum of 50 items.
- error
Handling FlowConfig Destination Flow Config Destination Connector Properties Custom Connector Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- id
Field string[]Names The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- write
Operation stringType This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
- entity_
name str The entity specified in the custom connector as a source in the flow.
- custom_
properties Mapping[str, str] The custom properties that are specific to the connector when it's used as a source in the flow. Maximum of 50 items.
- error_
handling_ Flowconfig Destination Flow Config Destination Connector Properties Custom Connector Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- id_
field_ Sequence[str]names The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- write_
operation_ strtype This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
- entity
Name String The entity specified in the custom connector as a source in the flow.
- custom
Properties Map<String> The custom properties that are specific to the connector when it's used as a source in the flow. Maximum of 50 items.
- error
Handling Property MapConfig The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- id
Field List<String>Names The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- write
Operation StringType This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
FlowDestinationFlowConfigDestinationConnectorPropertiesCustomConnectorErrorHandlingConfig
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Fail
On boolFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Fail
On boolFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On BooleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name string The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On booleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket_
name str The Amazon S3 bucket name where the source files are stored.
- bucket_
prefix str The object key for the Amazon S3 bucket in which the source files are stored.
- fail_
on_ boolfirst_ destination_ error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On BooleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
FlowDestinationFlowConfigDestinationConnectorPropertiesCustomerProfiles
- Domain
Name string The unique name of the Amazon Connect Customer Profiles domain.
- Object
Type stringName The object specified in the Amazon Connect Customer Profiles flow destination.
- Domain
Name string The unique name of the Amazon Connect Customer Profiles domain.
- Object
Type stringName The object specified in the Amazon Connect Customer Profiles flow destination.
- domain
Name String The unique name of the Amazon Connect Customer Profiles domain.
- object
Type StringName The object specified in the Amazon Connect Customer Profiles flow destination.
- domain
Name string The unique name of the Amazon Connect Customer Profiles domain.
- object
Type stringName The object specified in the Amazon Connect Customer Profiles flow destination.
- domain_
name str The unique name of the Amazon Connect Customer Profiles domain.
- object_
type_ strname The object specified in the Amazon Connect Customer Profiles flow destination.
- domain
Name String The unique name of the Amazon Connect Customer Profiles domain.
- object
Type StringName The object specified in the Amazon Connect Customer Profiles flow destination.
FlowDestinationFlowConfigDestinationConnectorPropertiesEventBridge
- Object string
The object specified in the Veeva flow source.
- Error
Handling FlowConfig Destination Flow Config Destination Connector Properties Event Bridge Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- Object string
The object specified in the Veeva flow source.
- Error
Handling FlowConfig Destination Flow Config Destination Connector Properties Event Bridge Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- object String
The object specified in the Veeva flow source.
- error
Handling FlowConfig Destination Flow Config Destination Connector Properties Event Bridge Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- object string
The object specified in the Veeva flow source.
- error
Handling FlowConfig Destination Flow Config Destination Connector Properties Event Bridge Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- object str
The object specified in the Veeva flow source.
- error_
handling_ Flowconfig Destination Flow Config Destination Connector Properties Event Bridge Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- object String
The object specified in the Veeva flow source.
- error
Handling Property MapConfig The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
FlowDestinationFlowConfigDestinationConnectorPropertiesEventBridgeErrorHandlingConfig
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Fail
On boolFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Fail
On boolFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On BooleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name string The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On booleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket_
name str The Amazon S3 bucket name where the source files are stored.
- bucket_
prefix str The object key for the Amazon S3 bucket in which the source files are stored.
- fail_
on_ boolfirst_ destination_ error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On BooleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
FlowDestinationFlowConfigDestinationConnectorPropertiesHoneycode
- Object string
The object specified in the Veeva flow source.
- Error
Handling FlowConfig Destination Flow Config Destination Connector Properties Honeycode Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- Object string
The object specified in the Veeva flow source.
- Error
Handling FlowConfig Destination Flow Config Destination Connector Properties Honeycode Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- object String
The object specified in the Veeva flow source.
- error
Handling FlowConfig Destination Flow Config Destination Connector Properties Honeycode Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- object string
The object specified in the Veeva flow source.
- error
Handling FlowConfig Destination Flow Config Destination Connector Properties Honeycode Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- object str
The object specified in the Veeva flow source.
- error_
handling_ Flowconfig Destination Flow Config Destination Connector Properties Honeycode Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- object String
The object specified in the Veeva flow source.
- error
Handling Property MapConfig The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
FlowDestinationFlowConfigDestinationConnectorPropertiesHoneycodeErrorHandlingConfig
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Fail
On boolFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Fail
On boolFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On BooleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name string The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On booleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket_
name str The Amazon S3 bucket name where the source files are stored.
- bucket_
prefix str The object key for the Amazon S3 bucket in which the source files are stored.
- fail_
on_ boolfirst_ destination_ error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On BooleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
FlowDestinationFlowConfigDestinationConnectorPropertiesMarketo
- Object string
The object specified in the Veeva flow source.
- Error
Handling FlowConfig Destination Flow Config Destination Connector Properties Marketo Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- Object string
The object specified in the Veeva flow source.
- Error
Handling FlowConfig Destination Flow Config Destination Connector Properties Marketo Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- object String
The object specified in the Veeva flow source.
- error
Handling FlowConfig Destination Flow Config Destination Connector Properties Marketo Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- object string
The object specified in the Veeva flow source.
- error
Handling FlowConfig Destination Flow Config Destination Connector Properties Marketo Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- object str
The object specified in the Veeva flow source.
- error_
handling_ Flowconfig Destination Flow Config Destination Connector Properties Marketo Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- object String
The object specified in the Veeva flow source.
- error
Handling Property MapConfig The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
FlowDestinationFlowConfigDestinationConnectorPropertiesMarketoErrorHandlingConfig
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Fail
On boolFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Fail
On boolFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On BooleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name string The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On booleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket_
name str The Amazon S3 bucket name where the source files are stored.
- bucket_
prefix str The object key for the Amazon S3 bucket in which the source files are stored.
- fail_
on_ boolfirst_ destination_ error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On BooleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
FlowDestinationFlowConfigDestinationConnectorPropertiesRedshift
- Intermediate
Bucket stringName The intermediate bucket that Amazon AppFlow uses when moving data into Amazon Snowflake.
- Object string
The object specified in the Veeva flow source.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Error
Handling FlowConfig Destination Flow Config Destination Connector Properties Redshift Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- Intermediate
Bucket stringName The intermediate bucket that Amazon AppFlow uses when moving data into Amazon Snowflake.
- Object string
The object specified in the Veeva flow source.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Error
Handling FlowConfig Destination Flow Config Destination Connector Properties Redshift Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- intermediate
Bucket StringName The intermediate bucket that Amazon AppFlow uses when moving data into Amazon Snowflake.
- object String
The object specified in the Veeva flow source.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- error
Handling FlowConfig Destination Flow Config Destination Connector Properties Redshift Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- intermediate
Bucket stringName The intermediate bucket that Amazon AppFlow uses when moving data into Amazon Snowflake.
- object string
The object specified in the Veeva flow source.
- bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- error
Handling FlowConfig Destination Flow Config Destination Connector Properties Redshift Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- intermediate_
bucket_ strname The intermediate bucket that Amazon AppFlow uses when moving data into Amazon Snowflake.
- object str
The object specified in the Veeva flow source.
- bucket_
prefix str The object key for the Amazon S3 bucket in which the source files are stored.
- error_
handling_ Flowconfig Destination Flow Config Destination Connector Properties Redshift Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- intermediate
Bucket StringName The intermediate bucket that Amazon AppFlow uses when moving data into Amazon Snowflake.
- object String
The object specified in the Veeva flow source.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- error
Handling Property MapConfig The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
FlowDestinationFlowConfigDestinationConnectorPropertiesRedshiftErrorHandlingConfig
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Fail
On boolFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Fail
On boolFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On BooleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name string The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On booleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket_
name str The Amazon S3 bucket name where the source files are stored.
- bucket_
prefix str The object key for the Amazon S3 bucket in which the source files are stored.
- fail_
on_ boolfirst_ destination_ error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On BooleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
FlowDestinationFlowConfigDestinationConnectorPropertiesS3
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- S3Output
Format FlowConfig Destination Flow Config Destination Connector Properties S3S3Output Format Config The configuration that determines how Amazon AppFlow should format the flow output data when Upsolver is used as the destination. See Upsolver S3 Output Format Config for more details.
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- S3Output
Format FlowConfig Destination Flow Config Destination Connector Properties S3S3Output Format Config The configuration that determines how Amazon AppFlow should format the flow output data when Upsolver is used as the destination. See Upsolver S3 Output Format Config for more details.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- s3Output
Format FlowConfig Destination Flow Config Destination Connector Properties S3S3Output Format Config The configuration that determines how Amazon AppFlow should format the flow output data when Upsolver is used as the destination. See Upsolver S3 Output Format Config for more details.
- bucket
Name string The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- s3Output
Format FlowConfig Destination Flow Config Destination Connector Properties S3S3Output Format Config The configuration that determines how Amazon AppFlow should format the flow output data when Upsolver is used as the destination. See Upsolver S3 Output Format Config for more details.
- bucket_
name str The Amazon S3 bucket name where the source files are stored.
- bucket_
prefix str The object key for the Amazon S3 bucket in which the source files are stored.
- s3_
output_ Flowformat_ config Destination Flow Config Destination Connector Properties S3S3Output Format Config The configuration that determines how Amazon AppFlow should format the flow output data when Upsolver is used as the destination. See Upsolver S3 Output Format Config for more details.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- s3Output
Format Property MapConfig The configuration that determines how Amazon AppFlow should format the flow output data when Upsolver is used as the destination. See Upsolver S3 Output Format Config for more details.
FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfig
- Aggregation
Config FlowDestination Flow Config Destination Connector Properties S3S3Output Format Config Aggregation Config The aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.
- File
Type string Indicates the file type that Amazon AppFlow places in the Upsolver Amazon S3 bucket. Valid values are
CSV
,JSON
, andPARQUET
.- Prefix
Config FlowDestination Flow Config Destination Connector Properties S3S3Output Format Config Prefix Config 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 FlowDestination Flow Config Destination Connector Properties S3S3Output Format Config Aggregation Config The aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.
- File
Type string Indicates the file type that Amazon AppFlow places in the Upsolver Amazon S3 bucket. Valid values are
CSV
,JSON
, andPARQUET
.- Prefix
Config FlowDestination Flow Config Destination Connector Properties S3S3Output Format Config Prefix Config 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 FlowDestination Flow Config Destination Connector Properties S3S3Output Format Config Aggregation Config The aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.
- file
Type String Indicates the file type that Amazon AppFlow places in the Upsolver Amazon S3 bucket. Valid values are
CSV
,JSON
, andPARQUET
.- prefix
Config FlowDestination Flow Config Destination Connector Properties S3S3Output Format Config Prefix Config 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 FlowDestination Flow Config Destination Connector Properties S3S3Output Format Config Aggregation Config The aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.
- file
Type string Indicates the file type that Amazon AppFlow places in the Upsolver Amazon S3 bucket. Valid values are
CSV
,JSON
, andPARQUET
.- prefix
Config FlowDestination Flow Config Destination Connector Properties S3S3Output Format Config Prefix Config 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 FlowDestination Flow Config Destination Connector Properties S3S3Output Format Config Aggregation Config The aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.
- file_
type str Indicates the file type that Amazon AppFlow places in the Upsolver Amazon S3 bucket. Valid values are
CSV
,JSON
, andPARQUET
.- prefix_
config FlowDestination Flow Config Destination Connector Properties S3S3Output Format Config Prefix Config 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 Property Map The aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.
- file
Type String Indicates the file type that Amazon AppFlow places in the Upsolver Amazon S3 bucket. Valid values are
CSV
,JSON
, andPARQUET
.- prefix
Config 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
- Aggregation
Type string Specifies whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are
None
andSingleFile
.
- Aggregation
Type string Specifies whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are
None
andSingleFile
.
- aggregation
Type String Specifies whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are
None
andSingleFile
.
- aggregation
Type string Specifies whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are
None
andSingleFile
.
- aggregation_
type str Specifies whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are
None
andSingleFile
.
- aggregation
Type String Specifies whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are
None
andSingleFile
.
FlowDestinationFlowConfigDestinationConnectorPropertiesS3S3OutputFormatConfigPrefixConfig
- Prefix
Format string Determines the level of granularity that's included in the prefix. Valid values are
YEAR
,MONTH
,DAY
,HOUR
, andMINUTE
.- Prefix
Type string Determines the format of the prefix, and whether it applies to the file name, file path, or both. Valid values are
FILENAME
,PATH
, andPATH_AND_FILENAME
.
- Prefix
Format string Determines the level of granularity that's included in the prefix. Valid values are
YEAR
,MONTH
,DAY
,HOUR
, andMINUTE
.- Prefix
Type string Determines the format of the prefix, and whether it applies to the file name, file path, or both. Valid values are
FILENAME
,PATH
, andPATH_AND_FILENAME
.
- prefix
Format String Determines the level of granularity that's included in the prefix. Valid values are
YEAR
,MONTH
,DAY
,HOUR
, andMINUTE
.- prefix
Type String Determines the format of the prefix, and whether it applies to the file name, file path, or both. Valid values are
FILENAME
,PATH
, andPATH_AND_FILENAME
.
- prefix
Format string Determines the level of granularity that's included in the prefix. Valid values are
YEAR
,MONTH
,DAY
,HOUR
, andMINUTE
.- prefix
Type string Determines the format of the prefix, and whether it applies to the file name, file path, or both. Valid values are
FILENAME
,PATH
, andPATH_AND_FILENAME
.
- prefix_
format str Determines the level of granularity that's included in the prefix. Valid values are
YEAR
,MONTH
,DAY
,HOUR
, andMINUTE
.- 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
, andPATH_AND_FILENAME
.
- prefix
Format String Determines the level of granularity that's included in the prefix. Valid values are
YEAR
,MONTH
,DAY
,HOUR
, andMINUTE
.- prefix
Type String Determines the format of the prefix, and whether it applies to the file name, file path, or both. Valid values are
FILENAME
,PATH
, andPATH_AND_FILENAME
.
FlowDestinationFlowConfigDestinationConnectorPropertiesSalesforce
- Object string
The object specified in the Veeva flow source.
- Error
Handling FlowConfig Destination Flow Config Destination Connector Properties Salesforce Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- Id
Field List<string>Names The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- Write
Operation stringType This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
- Object string
The object specified in the Veeva flow source.
- Error
Handling FlowConfig Destination Flow Config Destination Connector Properties Salesforce Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- Id
Field []stringNames The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- Write
Operation stringType This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
- object String
The object specified in the Veeva flow source.
- error
Handling FlowConfig Destination Flow Config Destination Connector Properties Salesforce Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- id
Field List<String>Names The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- write
Operation StringType This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
- object string
The object specified in the Veeva flow source.
- error
Handling FlowConfig Destination Flow Config Destination Connector Properties Salesforce Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- id
Field string[]Names The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- write
Operation stringType This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
- object str
The object specified in the Veeva flow source.
- error_
handling_ Flowconfig Destination Flow Config Destination Connector Properties Salesforce Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- id_
field_ Sequence[str]names The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- write_
operation_ strtype This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
- object String
The object specified in the Veeva flow source.
- error
Handling Property MapConfig The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- id
Field List<String>Names The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- write
Operation StringType This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
FlowDestinationFlowConfigDestinationConnectorPropertiesSalesforceErrorHandlingConfig
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Fail
On boolFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Fail
On boolFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On BooleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name string The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On booleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket_
name str The Amazon S3 bucket name where the source files are stored.
- bucket_
prefix str The object key for the Amazon S3 bucket in which the source files are stored.
- fail_
on_ boolfirst_ destination_ error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On BooleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
FlowDestinationFlowConfigDestinationConnectorPropertiesSapoData
- Object
Path string The object path specified in the SAPOData flow source.
- Error
Handling FlowConfig Destination Flow Config Destination Connector Properties Sapo Data Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- Id
Field List<string>Names The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- Success
Response FlowHandling Config Destination Flow Config Destination Connector Properties Sapo Data Success Response Handling Config 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 stringType This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
- Object
Path string The object path specified in the SAPOData flow source.
- Error
Handling FlowConfig Destination Flow Config Destination Connector Properties Sapo Data Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- Id
Field []stringNames The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- Success
Response FlowHandling Config Destination Flow Config Destination Connector Properties Sapo Data Success Response Handling Config 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 stringType This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
- object
Path String The object path specified in the SAPOData flow source.
- error
Handling FlowConfig Destination Flow Config Destination Connector Properties Sapo Data Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- id
Field List<String>Names The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- success
Response FlowHandling Config Destination Flow Config Destination Connector Properties Sapo Data Success Response Handling Config 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 StringType This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
- object
Path string The object path specified in the SAPOData flow source.
- error
Handling FlowConfig Destination Flow Config Destination Connector Properties Sapo Data Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- id
Field string[]Names The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- success
Response FlowHandling Config Destination Flow Config Destination Connector Properties Sapo Data Success Response Handling Config 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 stringType This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
- object_
path str The object path specified in the SAPOData flow source.
- error_
handling_ Flowconfig Destination Flow Config Destination Connector Properties Sapo Data Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- id_
field_ Sequence[str]names The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- success_
response_ Flowhandling_ config Destination Flow Config Destination Connector Properties Sapo Data Success Response Handling Config 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_ strtype This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
- object
Path String The object path specified in the SAPOData flow source.
- error
Handling Property MapConfig The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- id
Field List<String>Names The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- success
Response Property MapHandling Config 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 StringType This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
FlowDestinationFlowConfigDestinationConnectorPropertiesSapoDataErrorHandlingConfig
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Fail
On boolFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Fail
On boolFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On BooleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name string The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On booleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket_
name str The Amazon S3 bucket name where the source files are stored.
- bucket_
prefix str The object key for the Amazon S3 bucket in which the source files are stored.
- fail_
on_ boolfirst_ destination_ error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On BooleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
FlowDestinationFlowConfigDestinationConnectorPropertiesSapoDataSuccessResponseHandlingConfig
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- bucket
Name string The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- bucket_
name str The Amazon S3 bucket name where the source files are stored.
- bucket_
prefix str The object key for the Amazon S3 bucket in which the source files are stored.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
FlowDestinationFlowConfigDestinationConnectorPropertiesSnowflake
- Intermediate
Bucket stringName The intermediate bucket that Amazon AppFlow uses when moving data into Amazon Snowflake.
- Object string
The object specified in the Veeva flow source.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Error
Handling FlowConfig Destination Flow Config Destination Connector Properties Snowflake Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- Intermediate
Bucket stringName The intermediate bucket that Amazon AppFlow uses when moving data into Amazon Snowflake.
- Object string
The object specified in the Veeva flow source.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Error
Handling FlowConfig Destination Flow Config Destination Connector Properties Snowflake Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- intermediate
Bucket StringName The intermediate bucket that Amazon AppFlow uses when moving data into Amazon Snowflake.
- object String
The object specified in the Veeva flow source.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- error
Handling FlowConfig Destination Flow Config Destination Connector Properties Snowflake Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- intermediate
Bucket stringName The intermediate bucket that Amazon AppFlow uses when moving data into Amazon Snowflake.
- object string
The object specified in the Veeva flow source.
- bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- error
Handling FlowConfig Destination Flow Config Destination Connector Properties Snowflake Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- intermediate_
bucket_ strname The intermediate bucket that Amazon AppFlow uses when moving data into Amazon Snowflake.
- object str
The object specified in the Veeva flow source.
- bucket_
prefix str The object key for the Amazon S3 bucket in which the source files are stored.
- error_
handling_ Flowconfig Destination Flow Config Destination Connector Properties Snowflake Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- intermediate
Bucket StringName The intermediate bucket that Amazon AppFlow uses when moving data into Amazon Snowflake.
- object String
The object specified in the Veeva flow source.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- error
Handling Property MapConfig The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
FlowDestinationFlowConfigDestinationConnectorPropertiesSnowflakeErrorHandlingConfig
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Fail
On boolFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Fail
On boolFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On BooleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name string The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On booleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket_
name str The Amazon S3 bucket name where the source files are stored.
- bucket_
prefix str The object key for the Amazon S3 bucket in which the source files are stored.
- fail_
on_ boolfirst_ destination_ error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On BooleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolver
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- S3Output
Format FlowConfig Destination Flow Config Destination Connector Properties Upsolver S3Output Format Config The configuration that determines how Amazon AppFlow should format the flow output data when Upsolver is used as the destination. See Upsolver S3 Output Format Config for more details.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- S3Output
Format FlowConfig Destination Flow Config Destination Connector Properties Upsolver S3Output Format Config The configuration that determines how Amazon AppFlow should format the flow output data when Upsolver is used as the destination. See Upsolver S3 Output Format Config for more details.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- s3Output
Format FlowConfig Destination Flow Config Destination Connector Properties Upsolver S3Output Format Config The configuration that determines how Amazon AppFlow should format the flow output data when Upsolver is used as the destination. See Upsolver S3 Output Format Config for more details.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- bucket
Name string The Amazon S3 bucket name where the source files are stored.
- s3Output
Format FlowConfig Destination Flow Config Destination Connector Properties Upsolver S3Output Format Config The configuration that determines how Amazon AppFlow should format the flow output data when Upsolver is used as the destination. See Upsolver S3 Output Format Config for more details.
- bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- bucket_
name str The Amazon S3 bucket name where the source files are stored.
- s3_
output_ Flowformat_ config Destination Flow Config Destination Connector Properties Upsolver S3Output Format Config The configuration that determines how Amazon AppFlow should format the flow output data when Upsolver is used as the destination. See Upsolver S3 Output Format Config for more details.
- bucket_
prefix str The object key for the Amazon S3 bucket in which the source files are stored.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- s3Output
Format Property MapConfig The configuration that determines how Amazon AppFlow should format the flow output data when Upsolver is used as the destination. See Upsolver S3 Output Format Config for more details.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolverS3OutputFormatConfig
- Prefix
Config FlowDestination Flow Config Destination Connector Properties Upsolver S3Output Format Config Prefix Config 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 FlowDestination Flow Config Destination Connector Properties Upsolver S3Output Format Config Aggregation Config The aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.
- File
Type string Indicates the file type that Amazon AppFlow places in the Upsolver Amazon S3 bucket. Valid values are
CSV
,JSON
, andPARQUET
.
- Prefix
Config FlowDestination Flow Config Destination Connector Properties Upsolver S3Output Format Config Prefix Config 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 FlowDestination Flow Config Destination Connector Properties Upsolver S3Output Format Config Aggregation Config The aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.
- File
Type string Indicates the file type that Amazon AppFlow places in the Upsolver Amazon S3 bucket. Valid values are
CSV
,JSON
, andPARQUET
.
- prefix
Config FlowDestination Flow Config Destination Connector Properties Upsolver S3Output Format Config Prefix Config 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 FlowDestination Flow Config Destination Connector Properties Upsolver S3Output Format Config Aggregation Config The aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.
- file
Type String Indicates the file type that Amazon AppFlow places in the Upsolver Amazon S3 bucket. Valid values are
CSV
,JSON
, andPARQUET
.
- prefix
Config FlowDestination Flow Config Destination Connector Properties Upsolver S3Output Format Config Prefix Config 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 FlowDestination Flow Config Destination Connector Properties Upsolver S3Output Format Config Aggregation Config The aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.
- file
Type string Indicates the file type that Amazon AppFlow places in the Upsolver Amazon S3 bucket. Valid values are
CSV
,JSON
, andPARQUET
.
- prefix_
config FlowDestination Flow Config Destination Connector Properties Upsolver S3Output Format Config Prefix Config 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 FlowDestination Flow Config Destination Connector Properties Upsolver S3Output Format Config Aggregation Config The aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.
- file_
type str Indicates the file type that Amazon AppFlow places in the Upsolver Amazon S3 bucket. Valid values are
CSV
,JSON
, andPARQUET
.
- prefix
Config 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.
- aggregation
Config Property Map The aggregation settings that you can use to customize the output format of your flow data. See Aggregation Config for more details.
- file
Type String Indicates the file type that Amazon AppFlow places in the Upsolver Amazon S3 bucket. Valid values are
CSV
,JSON
, andPARQUET
.
FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolverS3OutputFormatConfigAggregationConfig
- Aggregation
Type string Specifies whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are
None
andSingleFile
.
- Aggregation
Type string Specifies whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are
None
andSingleFile
.
- aggregation
Type String Specifies whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are
None
andSingleFile
.
- aggregation
Type string Specifies whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are
None
andSingleFile
.
- aggregation_
type str Specifies whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are
None
andSingleFile
.
- aggregation
Type String Specifies whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. Valid values are
None
andSingleFile
.
FlowDestinationFlowConfigDestinationConnectorPropertiesUpsolverS3OutputFormatConfigPrefixConfig
- Prefix
Type string Determines the format of the prefix, and whether it applies to the file name, file path, or both. Valid values are
FILENAME
,PATH
, andPATH_AND_FILENAME
.- Prefix
Format string Determines the level of granularity that's included in the prefix. Valid values are
YEAR
,MONTH
,DAY
,HOUR
, andMINUTE
.
- Prefix
Type string Determines the format of the prefix, and whether it applies to the file name, file path, or both. Valid values are
FILENAME
,PATH
, andPATH_AND_FILENAME
.- Prefix
Format string Determines the level of granularity that's included in the prefix. Valid values are
YEAR
,MONTH
,DAY
,HOUR
, andMINUTE
.
- prefix
Type String Determines the format of the prefix, and whether it applies to the file name, file path, or both. Valid values are
FILENAME
,PATH
, andPATH_AND_FILENAME
.- prefix
Format String Determines the level of granularity that's included in the prefix. Valid values are
YEAR
,MONTH
,DAY
,HOUR
, andMINUTE
.
- prefix
Type string Determines the format of the prefix, and whether it applies to the file name, file path, or both. Valid values are
FILENAME
,PATH
, andPATH_AND_FILENAME
.- prefix
Format string Determines the level of granularity that's included in the prefix. Valid values are
YEAR
,MONTH
,DAY
,HOUR
, andMINUTE
.
- 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
, andPATH_AND_FILENAME
.- prefix_
format str Determines the level of granularity that's included in the prefix. Valid values are
YEAR
,MONTH
,DAY
,HOUR
, andMINUTE
.
- prefix
Type String Determines the format of the prefix, and whether it applies to the file name, file path, or both. Valid values are
FILENAME
,PATH
, andPATH_AND_FILENAME
.- prefix
Format String Determines the level of granularity that's included in the prefix. Valid values are
YEAR
,MONTH
,DAY
,HOUR
, andMINUTE
.
FlowDestinationFlowConfigDestinationConnectorPropertiesZendesk
- Object string
The object specified in the Veeva flow source.
- Error
Handling FlowConfig Destination Flow Config Destination Connector Properties Zendesk Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- Id
Field List<string>Names The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- Write
Operation stringType This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
- Object string
The object specified in the Veeva flow source.
- Error
Handling FlowConfig Destination Flow Config Destination Connector Properties Zendesk Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- Id
Field []stringNames The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- Write
Operation stringType This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
- object String
The object specified in the Veeva flow source.
- error
Handling FlowConfig Destination Flow Config Destination Connector Properties Zendesk Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- id
Field List<String>Names The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- write
Operation StringType This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
- object string
The object specified in the Veeva flow source.
- error
Handling FlowConfig Destination Flow Config Destination Connector Properties Zendesk Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- id
Field string[]Names The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- write
Operation stringType This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
- object str
The object specified in the Veeva flow source.
- error_
handling_ Flowconfig Destination Flow Config Destination Connector Properties Zendesk Error Handling Config The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- id_
field_ Sequence[str]names The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- write_
operation_ strtype This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
- object String
The object specified in the Veeva flow source.
- error
Handling Property MapConfig The settings that determine how Amazon AppFlow handles an error when placing data in the destination. See Error Handling Config for more details.
- id
Field List<String>Names The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
- write
Operation StringType This specifies the type of write operation to be performed in Zendesk. When the value is
UPSERT
, thenid_field_names
is required. Valid values areINSERT
,UPSERT
,UPDATE
, andDELETE
.
FlowDestinationFlowConfigDestinationConnectorPropertiesZendeskErrorHandlingConfig
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Fail
On boolFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- Fail
On boolFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On BooleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name string The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On booleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket_
name str The Amazon S3 bucket name where the source files are stored.
- bucket_
prefix str The object key for the Amazon S3 bucket in which the source files are stored.
- fail_
on_ boolfirst_ destination_ error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- bucket
Name String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- fail
On BooleanFirst Destination Error Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
FlowSourceFlowConfig
- Connector
Type string The 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
, andCustomConnector
.- Source
Connector FlowProperties Source Flow Config Source Connector Properties Specifies the information that is required to query a particular source connector. See Source Connector Properties for details.
- Api
Version string The API version that the destination connector uses.
- Connector
Profile stringName The name of the connector profile. This name must be unique for each connector profile in the AWS account.
- Incremental
Pull FlowConfig Source Flow Config Incremental Pull Config 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 string The 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
, andCustomConnector
.- Source
Connector FlowProperties Source Flow Config Source Connector Properties Specifies the information that is required to query a particular source connector. See Source Connector Properties for details.
- Api
Version string The API version that the destination connector uses.
- Connector
Profile stringName The name of the connector profile. This name must be unique for each connector profile in the AWS account.
- Incremental
Pull FlowConfig Source Flow Config Incremental Pull Config 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 String The 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
, andCustomConnector
.- source
Connector FlowProperties Source Flow Config Source Connector Properties Specifies the information that is required to query a particular source connector. See Source Connector Properties for details.
- api
Version String The API version that the destination connector uses.
- connector
Profile StringName The name of the connector profile. This name must be unique for each connector profile in the AWS account.
- incremental
Pull FlowConfig Source Flow Config Incremental Pull Config 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 string The 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
, andCustomConnector
.- source
Connector FlowProperties Source Flow Config Source Connector Properties Specifies the information that is required to query a particular source connector. See Source Connector Properties for details.
- api
Version string The API version that the destination connector uses.
- connector
Profile stringName The name of the connector profile. This name must be unique for each connector profile in the AWS account.
- incremental
Pull FlowConfig Source Flow Config Incremental Pull Config 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 The 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
, andCustomConnector
.- source_
connector_ Flowproperties Source Flow Config Source Connector Properties Specifies the information that is required to query a particular source connector. See Source Connector Properties for details.
- api_
version str The API version that the destination connector uses.
- connector_
profile_ strname The name of the connector profile. This name must be unique for each connector profile in the AWS account.
- incremental_
pull_ Flowconfig Source Flow Config Incremental Pull Config 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 String The 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
, andCustomConnector
.- source
Connector Property MapProperties Specifies the information that is required to query a particular source connector. See Source Connector Properties for details.
- api
Version String The API version that the destination connector uses.
- connector
Profile StringName The name of the connector profile. This name must be unique for each connector profile in the AWS account.
- incremental
Pull Property MapConfig 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
- Datetime
Type stringField Name A field that specifies the date time or timestamp field as the criteria to use when importing incremental records from the source.
- Datetime
Type stringField Name A field that specifies the date time or timestamp field as the criteria to use when importing incremental records from the source.
- datetime
Type StringField Name A field that specifies the date time or timestamp field as the criteria to use when importing incremental records from the source.
- datetime
Type stringField Name A field that specifies the date time or timestamp field as the criteria to use when importing incremental records from the source.
- datetime_
type_ strfield_ name A field that specifies the date time or timestamp field as the criteria to use when importing incremental records from the source.
- datetime
Type StringField Name A field that specifies the date time or timestamp field as the criteria to use when importing incremental records from the source.
FlowSourceFlowConfigSourceConnectorProperties
- Amplitude
Flow
Source Flow Config Source Connector Properties Amplitude The operation to be performed on the provided Amplitude source fields. The only valid value is
BETWEEN
.- Custom
Connector FlowSource Flow Config Source Connector Properties Custom Connector 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
, andNO_OP
.- Datadog
Flow
Source Flow Config Source Connector Properties Datadog The 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
, andNO_OP
.- Dynatrace
Flow
Source Flow Config Source Connector Properties Dynatrace The 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
, andNO_OP
.- Google
Analytics FlowSource Flow Config Source Connector Properties Google Analytics The operation to be performed on the provided Google Analytics source fields. Valid values are
PROJECTION
andBETWEEN
.- Infor
Nexus FlowSource Flow Config Source Connector Properties Infor Nexus The 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
, andNO_OP
.- Marketo
Flow
Source Flow Config Source Connector Properties Marketo The 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
, andNO_OP
.- S3
Flow
Source Flow Config Source Connector Properties S3 The 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
, andNO_OP
.- Salesforce
Flow
Source Flow Config Source Connector Properties Salesforce The 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
, andNO_OP
.- Sapo
Data FlowSource Flow Config Source Connector Properties Sapo Data The 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
, andNO_OP
.- Service
Now FlowSource Flow Config Source Connector Properties Service Now The 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
, andNO_OP
.- Singular
Flow
Source Flow Config Source Connector Properties Singular The 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
, andNO_OP
.- Slack
Flow
Source Flow Config Source Connector Properties Slack The 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
, andNO_OP
.- Trendmicro
Flow
Source Flow Config Source Connector Properties Trendmicro The 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
, andNO_OP
.- Veeva
Flow
Source Flow Config Source Connector Properties Veeva The 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
, andNO_OP
.- Zendesk
Flow
Source Flow Config Source Connector Properties Zendesk The 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
, andNO_OP
.
- Amplitude
Flow
Source Flow Config Source Connector Properties Amplitude The operation to be performed on the provided Amplitude source fields. The only valid value is
BETWEEN
.- Custom
Connector FlowSource Flow Config Source Connector Properties Custom Connector 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
, andNO_OP
.- Datadog
Flow
Source Flow Config Source Connector Properties Datadog The 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
, andNO_OP
.- Dynatrace
Flow
Source Flow Config Source Connector Properties Dynatrace The 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
, andNO_OP
.- Google
Analytics FlowSource Flow Config Source Connector Properties Google Analytics The operation to be performed on the provided Google Analytics source fields. Valid values are
PROJECTION
andBETWEEN
.- Infor
Nexus FlowSource Flow Config Source Connector Properties Infor Nexus The 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
, andNO_OP
.- Marketo
Flow
Source Flow Config Source Connector Properties Marketo The 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
, andNO_OP
.- S3
Flow
Source Flow Config Source Connector Properties S3 The 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
, andNO_OP
.- Salesforce
Flow
Source Flow Config Source Connector Properties Salesforce The 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
, andNO_OP
.- Sapo
Data FlowSource Flow Config Source Connector Properties Sapo Data The 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
, andNO_OP
.- Service
Now FlowSource Flow Config Source Connector Properties Service Now The 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
, andNO_OP
.- Singular
Flow
Source Flow Config Source Connector Properties Singular The 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
, andNO_OP
.- Slack
Flow
Source Flow Config Source Connector Properties Slack The 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
, andNO_OP
.- Trendmicro
Flow
Source Flow Config Source Connector Properties Trendmicro The 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
, andNO_OP
.- Veeva
Flow
Source Flow Config Source Connector Properties Veeva The 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
, andNO_OP
.- Zendesk
Flow
Source Flow Config Source Connector Properties Zendesk The 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
, andNO_OP
.
- amplitude
Flow
Source Flow Config Source Connector Properties Amplitude The operation to be performed on the provided Amplitude source fields. The only valid value is
BETWEEN
.- custom
Connector FlowSource Flow Config Source Connector Properties Custom Connector 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
, andNO_OP
.- datadog
Flow
Source Flow Config Source Connector Properties Datadog The 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
, andNO_OP
.- dynatrace
Flow
Source Flow Config Source Connector Properties Dynatrace The 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
, andNO_OP
.- google
Analytics FlowSource Flow Config Source Connector Properties Google Analytics The operation to be performed on the provided Google Analytics source fields. Valid values are
PROJECTION
andBETWEEN
.- infor
Nexus FlowSource Flow Config Source Connector Properties Infor Nexus The 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
, andNO_OP
.- marketo
Flow
Source Flow Config Source Connector Properties Marketo The 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
, andNO_OP
.- s3
Flow
Source Flow Config Source Connector Properties S3 The 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
, andNO_OP
.- salesforce
Flow
Source Flow Config Source Connector Properties Salesforce The 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
, andNO_OP
.- sapo
Data FlowSource Flow Config Source Connector Properties Sapo Data The 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
, andNO_OP
.- service
Now FlowSource Flow Config Source Connector Properties Service Now The 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
, andNO_OP
.- singular
Flow
Source Flow Config Source Connector Properties Singular The 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
, andNO_OP
.- slack
Flow
Source Flow Config Source Connector Properties Slack The 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
, andNO_OP
.- trendmicro
Flow
Source Flow Config Source Connector Properties Trendmicro The 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
, andNO_OP
.- veeva
Flow
Source Flow Config Source Connector Properties Veeva The 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
, andNO_OP
.- zendesk
Flow
Source Flow Config Source Connector Properties Zendesk The 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
, andNO_OP
.
- amplitude
Flow
Source Flow Config Source Connector Properties Amplitude The operation to be performed on the provided Amplitude source fields. The only valid value is
BETWEEN
.- custom
Connector FlowSource Flow Config Source Connector Properties Custom Connector 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
, andNO_OP
.- datadog
Flow
Source Flow Config Source Connector Properties Datadog The 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
, andNO_OP
.- dynatrace
Flow
Source Flow Config Source Connector Properties Dynatrace The 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
, andNO_OP
.- google
Analytics FlowSource Flow Config Source Connector Properties Google Analytics The operation to be performed on the provided Google Analytics source fields. Valid values are
PROJECTION
andBETWEEN
.- infor
Nexus FlowSource Flow Config Source Connector Properties Infor Nexus The 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
, andNO_OP
.- marketo
Flow
Source Flow Config Source Connector Properties Marketo The 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
, andNO_OP
.- s3
Flow
Source Flow Config Source Connector Properties S3 The 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
, andNO_OP
.- salesforce
Flow
Source Flow Config Source Connector Properties Salesforce The 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
, andNO_OP
.- sapo
Data FlowSource Flow Config Source Connector Properties Sapo Data The 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
, andNO_OP
.- service
Now FlowSource Flow Config Source Connector Properties Service Now The 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
, andNO_OP
.- singular
Flow
Source Flow Config Source Connector Properties Singular The 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
, andNO_OP
.- slack
Flow
Source Flow Config Source Connector Properties Slack The 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
, andNO_OP
.- trendmicro
Flow
Source Flow Config Source Connector Properties Trendmicro The 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
, andNO_OP
.- veeva
Flow
Source Flow Config Source Connector Properties Veeva The 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
, andNO_OP
.- zendesk
Flow
Source Flow Config Source Connector Properties Zendesk The 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
, andNO_OP
.
- amplitude
Flow
Source Flow Config Source Connector Properties Amplitude The operation to be performed on the provided Amplitude source fields. The only valid value is
BETWEEN
.- custom_
connector FlowSource Flow Config Source Connector Properties Custom Connector 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
, andNO_OP
.- datadog
Flow
Source Flow Config Source Connector Properties Datadog The 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
, andNO_OP
.- dynatrace
Flow
Source Flow Config Source Connector Properties Dynatrace The 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
, andNO_OP
.- google_
analytics FlowSource Flow Config Source Connector Properties Google Analytics The operation to be performed on the provided Google Analytics source fields. Valid values are
PROJECTION
andBETWEEN
.- infor_
nexus FlowSource Flow Config Source Connector Properties Infor Nexus The 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
, andNO_OP
.- marketo
Flow
Source Flow Config Source Connector Properties Marketo The 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
, andNO_OP
.- s3
Flow
Source Flow Config Source Connector Properties S3 The 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
, andNO_OP
.- salesforce
Flow
Source Flow Config Source Connector Properties Salesforce The 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
, andNO_OP
.- sapo_
data FlowSource Flow Config Source Connector Properties Sapo Data The 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
, andNO_OP
.- service_
now FlowSource Flow Config Source Connector Properties Service Now The 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
, andNO_OP
.- singular
Flow
Source Flow Config Source Connector Properties Singular The 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
, andNO_OP
.- slack
Flow
Source Flow Config Source Connector Properties Slack The 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
, andNO_OP
.- trendmicro
Flow
Source Flow Config Source Connector Properties Trendmicro The 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
, andNO_OP
.- veeva
Flow
Source Flow Config Source Connector Properties Veeva The 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
, andNO_OP
.- zendesk
Flow
Source Flow Config Source Connector Properties Zendesk The 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
, andNO_OP
.
- amplitude Property Map
The operation to be performed on the provided Amplitude source fields. The only valid value is
BETWEEN
.- custom
Connector Property Map 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
, andNO_OP
.- datadog Property Map
The 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
, andNO_OP
.- dynatrace Property Map
The 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
, andNO_OP
.- google
Analytics Property Map The operation to be performed on the provided Google Analytics source fields. Valid values are
PROJECTION
andBETWEEN
.- infor
Nexus Property Map The 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
, andNO_OP
.- marketo Property Map
The 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
, andNO_OP
.- s3 Property Map
The 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
, andNO_OP
.- salesforce Property Map
The 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
, andNO_OP
.- sapo
Data Property Map The 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
, andNO_OP
.- service
Now Property Map The 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
, andNO_OP
.- singular Property Map
The 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
, andNO_OP
.- slack Property Map
The 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
, andNO_OP
.- trendmicro Property Map
The 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
, andNO_OP
.- veeva Property Map
The 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
, andNO_OP
.- zendesk Property Map
The 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
, andNO_OP
.
FlowSourceFlowConfigSourceConnectorPropertiesAmplitude
- Object string
The object specified in the Veeva flow source.
- Object string
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
- object string
The object specified in the Veeva flow source.
- object str
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
FlowSourceFlowConfigSourceConnectorPropertiesCustomConnector
- Entity
Name string The entity specified in the custom connector as a source in the flow.
- Custom
Properties Dictionary<string, string> The custom properties that are specific to the connector when it's used as a source in the flow. Maximum of 50 items.
- Entity
Name string The entity specified in the custom connector as a source in the flow.
- Custom
Properties map[string]string The custom properties that are specific to the connector when it's used as a source in the flow. Maximum of 50 items.
- entity
Name String The entity specified in the custom connector as a source in the flow.
- custom
Properties Map<String,String> The custom properties that are specific to the connector when it's used as a source in the flow. Maximum of 50 items.
- entity
Name string The entity specified in the custom connector as a source in the flow.
- custom
Properties {[key: string]: string} The custom properties that are specific to the connector when it's used as a source in the flow. Maximum of 50 items.
- entity_
name str The entity specified in the custom connector as a source in the flow.
- custom_
properties Mapping[str, str] The custom properties that are specific to the connector when it's used as a source in the flow. Maximum of 50 items.
- entity
Name String The entity specified in the custom connector as a source in the flow.
- custom
Properties Map<String> The custom properties that are specific to the connector when it's used as a source in the flow. Maximum of 50 items.
FlowSourceFlowConfigSourceConnectorPropertiesDatadog
- Object string
The object specified in the Veeva flow source.
- Object string
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
- object string
The object specified in the Veeva flow source.
- object str
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
FlowSourceFlowConfigSourceConnectorPropertiesDynatrace
- Object string
The object specified in the Veeva flow source.
- Object string
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
- object string
The object specified in the Veeva flow source.
- object str
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
FlowSourceFlowConfigSourceConnectorPropertiesGoogleAnalytics
- Object string
The object specified in the Veeva flow source.
- Object string
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
- object string
The object specified in the Veeva flow source.
- object str
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
FlowSourceFlowConfigSourceConnectorPropertiesInforNexus
- Object string
The object specified in the Veeva flow source.
- Object string
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
- object string
The object specified in the Veeva flow source.
- object str
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
FlowSourceFlowConfigSourceConnectorPropertiesMarketo
- Object string
The object specified in the Veeva flow source.
- Object string
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
- object string
The object specified in the Veeva flow source.
- object str
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
FlowSourceFlowConfigSourceConnectorPropertiesS3
- Bucket
Name string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- S3Input
Format FlowConfig Source Flow Config Source Connector Properties S3S3Input Format Config 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 string The Amazon S3 bucket name where the source files are stored.
- Bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- S3Input
Format FlowConfig Source Flow Config Source Connector Properties S3S3Input Format Config 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 String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- s3Input
Format FlowConfig Source Flow Config Source Connector Properties S3S3Input Format Config 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 string The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix string The object key for the Amazon S3 bucket in which the source files are stored.
- s3Input
Format FlowConfig Source Flow Config Source Connector Properties S3S3Input Format Config 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 The Amazon S3 bucket name where the source files are stored.
- bucket_
prefix str The object key for the Amazon S3 bucket in which the source files are stored.
- s3_
input_ Flowformat_ config Source Flow Config Source Connector Properties S3S3Input Format Config 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 String The Amazon S3 bucket name where the source files are stored.
- bucket
Prefix String The object key for the Amazon S3 bucket in which the source files are stored.
- s3Input
Format Property MapConfig 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
- S3Input
File stringType The file type that Amazon AppFlow gets from your Amazon S3 bucket. Valid values are
CSV
andJSON
.
- S3Input
File stringType The file type that Amazon AppFlow gets from your Amazon S3 bucket. Valid values are
CSV
andJSON
.
- s3Input
File StringType The file type that Amazon AppFlow gets from your Amazon S3 bucket. Valid values are
CSV
andJSON
.
- s3Input
File stringType The file type that Amazon AppFlow gets from your Amazon S3 bucket. Valid values are
CSV
andJSON
.
- s3_
input_ strfile_ type The file type that Amazon AppFlow gets from your Amazon S3 bucket. Valid values are
CSV
andJSON
.
- s3Input
File StringType The file type that Amazon AppFlow gets from your Amazon S3 bucket. Valid values are
CSV
andJSON
.
FlowSourceFlowConfigSourceConnectorPropertiesSalesforce
- Object string
The object specified in the Veeva flow source.
- Enable
Dynamic boolField Update The flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a flow.
- Include
Deleted boolRecords Indicates whether Amazon AppFlow includes deleted files in the flow run.
- Object string
The object specified in the Veeva flow source.
- Enable
Dynamic boolField Update The flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a flow.
- Include
Deleted boolRecords Indicates whether Amazon AppFlow includes deleted files in the flow run.
- object String
The object specified in the Veeva flow source.
- enable
Dynamic BooleanField Update The flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a flow.
- include
Deleted BooleanRecords Indicates whether Amazon AppFlow includes deleted files in the flow run.
- object string
The object specified in the Veeva flow source.
- enable
Dynamic booleanField Update The flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a flow.
- include
Deleted booleanRecords Indicates whether Amazon AppFlow includes deleted files in the flow run.
- object str
The object specified in the Veeva flow source.
- enable_
dynamic_ boolfield_ update The flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a flow.
- include_
deleted_ boolrecords Indicates whether Amazon AppFlow includes deleted files in the flow run.
- object String
The object specified in the Veeva flow source.
- enable
Dynamic BooleanField Update The flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a flow.
- include
Deleted BooleanRecords Indicates whether Amazon AppFlow includes deleted files in the flow run.
FlowSourceFlowConfigSourceConnectorPropertiesSapoData
- Object string
The object specified in the Veeva flow source.
- Object string
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
- object string
The object specified in the Veeva flow source.
- object str
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
FlowSourceFlowConfigSourceConnectorPropertiesServiceNow
- Object string
The object specified in the Veeva flow source.
- Object string
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
- object string
The object specified in the Veeva flow source.
- object str
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
FlowSourceFlowConfigSourceConnectorPropertiesSingular
- Object string
The object specified in the Veeva flow source.
- Object string
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
- object string
The object specified in the Veeva flow source.
- object str
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
FlowSourceFlowConfigSourceConnectorPropertiesSlack
- Object string
The object specified in the Veeva flow source.
- Object string
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
- object string
The object specified in the Veeva flow source.
- object str
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
FlowSourceFlowConfigSourceConnectorPropertiesTrendmicro
- Object string
The object specified in the Veeva flow source.
- Object string
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
- object string
The object specified in the Veeva flow source.
- object str
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
FlowSourceFlowConfigSourceConnectorPropertiesVeeva
- Object string
The object specified in the Veeva flow source.
- Document
Type string The document type specified in the Veeva document extract flow.
- Include
All boolVersions 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 boolFiles Boolean value to include source files in Veeva document extract flow.
- Object string
The object specified in the Veeva flow source.
- Document
Type string The document type specified in the Veeva document extract flow.
- Include
All boolVersions 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 boolFiles Boolean value to include source files in Veeva document extract flow.
- object String
The object specified in the Veeva flow source.
- document
Type String The document type specified in the Veeva document extract flow.
- include
All BooleanVersions Boolean value to include All Versions of files in Veeva document extract flow.
- include
Renditions Boolean Boolean value to include file renditions in Veeva document extract flow.
- include
Source BooleanFiles Boolean value to include source files in Veeva document extract flow.
- object string
The object specified in the Veeva flow source.
- document
Type string The document type specified in the Veeva document extract flow.
- include
All booleanVersions Boolean value to include All Versions of files in Veeva document extract flow.
- include
Renditions boolean Boolean value to include file renditions in Veeva document extract flow.
- include
Source booleanFiles Boolean value to include source files in Veeva document extract flow.
- object str
The object specified in the Veeva flow source.
- document_
type str The document type specified in the Veeva document extract flow.
- include_
all_ boolversions 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_ boolfiles Boolean value to include source files in Veeva document extract flow.
- object String
The object specified in the Veeva flow source.
- document
Type String The document type specified in the Veeva document extract flow.
- include
All BooleanVersions Boolean value to include All Versions of files in Veeva document extract flow.
- include
Renditions Boolean Boolean value to include file renditions in Veeva document extract flow.
- include
Source BooleanFiles Boolean value to include source files in Veeva document extract flow.
FlowSourceFlowConfigSourceConnectorPropertiesZendesk
- Object string
The object specified in the Veeva flow source.
- Object string
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
- object string
The object specified in the Veeva flow source.
- object str
The object specified in the Veeva flow source.
- object String
The object specified in the Veeva flow source.
FlowTask
- Source
Fields List<string> The source fields to which a particular task is applied.
- Task
Type string Specifies the particular task implementation that Amazon AppFlow performs. Valid values are
Arithmetic
,Filter
,Map
,Map_all
,Mask
,Merge
,Passthrough
,Truncate
, andValidate
.- Connector
Operators List<FlowTask Connector Operator> The operation to be performed on the provided source fields. See Connector Operator for details.
- Destination
Field string A field in a destination connector, or a field value against which Amazon AppFlow validates a source field.
- Task
Properties Dictionary<string, string> A map used to store task-related information. The execution service looks for particular information based on the
TaskType
. Valid keys areVALUE
,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
, andEXCLUDE_SOURCE_FIELDS_LIST
.
- Source
Fields []string The source fields to which a particular task is applied.
- Task
Type string Specifies the particular task implementation that Amazon AppFlow performs. Valid values are
Arithmetic
,Filter
,Map
,Map_all
,Mask
,Merge
,Passthrough
,Truncate
, andValidate
.- Connector
Operators []FlowTask Connector Operator The operation to be performed on the provided source fields. See Connector Operator for details.
- Destination
Field string A field in a destination connector, or a field value against which Amazon AppFlow validates a source field.
- Task
Properties map[string]string A map used to store task-related information. The execution service looks for particular information based on the
TaskType
. Valid keys areVALUE
,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
, andEXCLUDE_SOURCE_FIELDS_LIST
.
- source
Fields List<String> The source fields to which a particular task is applied.
- task
Type String Specifies the particular task implementation that Amazon AppFlow performs. Valid values are
Arithmetic
,Filter
,Map
,Map_all
,Mask
,Merge
,Passthrough
,Truncate
, andValidate
.- connector
Operators List<FlowTask Connector Operator> The operation to be performed on the provided source fields. See Connector Operator for details.
- destination
Field String A field in a destination connector, or a field value against which Amazon AppFlow validates a source field.
- task
Properties Map<String,String> A map used to store task-related information. The execution service looks for particular information based on the
TaskType
. Valid keys areVALUE
,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
, andEXCLUDE_SOURCE_FIELDS_LIST
.
- source
Fields string[] The source fields to which a particular task is applied.
- task
Type string Specifies the particular task implementation that Amazon AppFlow performs. Valid values are
Arithmetic
,Filter
,Map
,Map_all
,Mask
,Merge
,Passthrough
,Truncate
, andValidate
.- connector
Operators FlowTask Connector Operator[] The operation to be performed on the provided source fields. See Connector Operator for details.
- destination
Field string A field in a destination connector, or a field value against which Amazon AppFlow validates a source field.
- task
Properties {[key: string]: string} A map used to store task-related information. The execution service looks for particular information based on the
TaskType
. Valid keys areVALUE
,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
, andEXCLUDE_SOURCE_FIELDS_LIST
.
- source_
fields Sequence[str] The source fields to which a particular task is applied.
- task_
type str Specifies the particular task implementation that Amazon AppFlow performs. Valid values are
Arithmetic
,Filter
,Map
,Map_all
,Mask
,Merge
,Passthrough
,Truncate
, andValidate
.- connector_
operators Sequence[FlowTask Connector Operator] The operation to be performed on the provided source fields. See Connector Operator for details.
- destination_
field str A field in a destination connector, or a field value against which Amazon AppFlow validates a source field.
- task_
properties Mapping[str, str] A map used to store task-related information. The execution service looks for particular information based on the
TaskType
. Valid keys areVALUE
,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
, andEXCLUDE_SOURCE_FIELDS_LIST
.
- source
Fields List<String> The source fields to which a particular task is applied.
- task
Type String Specifies the particular task implementation that Amazon AppFlow performs. Valid values are
Arithmetic
,Filter
,Map
,Map_all
,Mask
,Merge
,Passthrough
,Truncate
, andValidate
.- connector
Operators List<Property Map> The operation to be performed on the provided source fields. See Connector Operator for details.
- destination
Field String A field in a destination connector, or a field value against which Amazon AppFlow validates a source field.
- task
Properties Map<String> A map used to store task-related information. The execution service looks for particular information based on the
TaskType
. Valid keys areVALUE
,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
, andEXCLUDE_SOURCE_FIELDS_LIST
.
FlowTaskConnectorOperator
- Amplitude string
The operation to be performed on the provided Amplitude source fields. The only valid value is
BETWEEN
.- Custom
Connector 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
, andNO_OP
.- Datadog string
The 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
, andNO_OP
.- Dynatrace string
The 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
, andNO_OP
.- Google
Analytics string The operation to be performed on the provided Google Analytics source fields. Valid values are
PROJECTION
andBETWEEN
.- Infor
Nexus string The 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
, andNO_OP
.- Marketo string
The 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
, andNO_OP
.- S3 string
The 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
, andNO_OP
.- Salesforce string
The 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
, andNO_OP
.- Sapo
Data string The 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
, andNO_OP
.- Service
Now string The 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
, andNO_OP
.- Singular string
The 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
, andNO_OP
.- Slack string
The 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
, andNO_OP
.- Trendmicro string
The 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
, andNO_OP
.- Veeva string
The 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
, andNO_OP
.- Zendesk string
The 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
, andNO_OP
.
- Amplitude string
The operation to be performed on the provided Amplitude source fields. The only valid value is
BETWEEN
.- Custom
Connector 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
, andNO_OP
.- Datadog string
The 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
, andNO_OP
.- Dynatrace string
The 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
, andNO_OP
.- Google
Analytics string The operation to be performed on the provided Google Analytics source fields. Valid values are
PROJECTION
andBETWEEN
.- Infor
Nexus string The 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
, andNO_OP
.- Marketo string
The 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
, andNO_OP
.- S3 string
The 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
, andNO_OP
.- Salesforce string
The 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
, andNO_OP
.- Sapo
Data string The 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
, andNO_OP
.- Service
Now string The 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
, andNO_OP
.- Singular string
The 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
, andNO_OP
.- Slack string
The 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
, andNO_OP
.- Trendmicro string
The 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
, andNO_OP
.- Veeva string
The 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
, andNO_OP
.- Zendesk string
The 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
, andNO_OP
.
- amplitude String
The operation to be performed on the provided Amplitude source fields. The only valid value is
BETWEEN
.- custom
Connector 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
, andNO_OP
.- datadog String
The 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
, andNO_OP
.- dynatrace String
The 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
, andNO_OP
.- google
Analytics String The operation to be performed on the provided Google Analytics source fields. Valid values are
PROJECTION
andBETWEEN
.- infor
Nexus String The 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
, andNO_OP
.- marketo String
The 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
, andNO_OP
.- s3 String
The 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
, andNO_OP
.- salesforce String
The 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
, andNO_OP
.- sapo
Data String The 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
, andNO_OP
.- service
Now String The 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
, andNO_OP
.- singular String
The 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
, andNO_OP
.- slack String
The 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
, andNO_OP
.- trendmicro String
The 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
, andNO_OP
.- veeva String
The 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
, andNO_OP
.- zendesk String
The 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
, andNO_OP
.
- amplitude string
The operation to be performed on the provided Amplitude source fields. The only valid value is
BETWEEN
.- custom
Connector 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
, andNO_OP
.- datadog string
The 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
, andNO_OP
.- dynatrace string
The 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
, andNO_OP
.- google
Analytics string The operation to be performed on the provided Google Analytics source fields. Valid values are
PROJECTION
andBETWEEN
.- infor
Nexus string The 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
, andNO_OP
.- marketo string
The 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
, andNO_OP
.- s3 string
The 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
, andNO_OP
.- salesforce string
The 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
, andNO_OP
.- sapo
Data string The 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
, andNO_OP
.- service
Now string The 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
, andNO_OP
.- singular string
The 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
, andNO_OP
.- slack string
The 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
, andNO_OP
.- trendmicro string
The 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
, andNO_OP
.- veeva string
The 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
, andNO_OP
.- zendesk string
The 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
, andNO_OP
.
- amplitude str
The 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
, andNO_OP
.- datadog str
The 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
, andNO_OP
.- dynatrace str
The 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
, andNO_OP
.- google_
analytics str The operation to be performed on the provided Google Analytics source fields. Valid values are
PROJECTION
andBETWEEN
.- infor_
nexus str The 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
, andNO_OP
.- marketo str
The 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
, andNO_OP
.- s3 str
The 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
, andNO_OP
.- salesforce str
The 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
, andNO_OP
.- sapo_
data str The 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
, andNO_OP
.- service_
now str The 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
, andNO_OP
.- singular str
The 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
, andNO_OP
.- slack str
The 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
, andNO_OP
.- trendmicro str
The 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
, andNO_OP
.- veeva str
The 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
, andNO_OP
.- zendesk str
The 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
, andNO_OP
.
- amplitude String
The operation to be performed on the provided Amplitude source fields. The only valid value is
BETWEEN
.- custom
Connector 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
, andNO_OP
.- datadog String
The 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
, andNO_OP
.- dynatrace String
The 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
, andNO_OP
.- google
Analytics String The operation to be performed on the provided Google Analytics source fields. Valid values are
PROJECTION
andBETWEEN
.- infor
Nexus String The 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
, andNO_OP
.- marketo String
The 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
, andNO_OP
.- s3 String
The 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
, andNO_OP
.- salesforce String
The 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
, andNO_OP
.- sapo
Data String The 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
, andNO_OP
.- service
Now String The 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
, andNO_OP
.- singular String
The 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
, andNO_OP
.- slack String
The 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
, andNO_OP
.- trendmicro String
The 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
, andNO_OP
.- veeva String
The 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
, andNO_OP
.- zendesk String
The 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
, andNO_OP
.
FlowTriggerConfig
- Trigger
Type string Specifies the type of flow trigger. Valid values are
Scheduled
,Event
, andOnDemand
.- Trigger
Properties FlowTrigger Config Trigger Properties Specifies the 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 string Specifies the type of flow trigger. Valid values are
Scheduled
,Event
, andOnDemand
.- Trigger
Properties FlowTrigger Config Trigger Properties Specifies the 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 String Specifies the type of flow trigger. Valid values are
Scheduled
,Event
, andOnDemand
.- trigger
Properties FlowTrigger Config Trigger Properties Specifies the 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 string Specifies the type of flow trigger. Valid values are
Scheduled
,Event
, andOnDemand
.- trigger
Properties FlowTrigger Config Trigger Properties Specifies the 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 Specifies the type of flow trigger. Valid values are
Scheduled
,Event
, andOnDemand
.- trigger_
properties FlowTrigger Config Trigger Properties Specifies the 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 String Specifies the type of flow trigger. Valid values are
Scheduled
,Event
, andOnDemand
.- trigger
Properties Property Map Specifies the 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
- Schedule
Expression string The scheduling expression that determines the rate at which the schedule will run, for example
rate(5minutes)
.- Data
Pull stringMode Specifies whether a scheduled flow has an incremental data transfer or a complete data transfer for each flow run. Valid values are
Incremental
andComplete
.- First
Execution stringFrom Specifies the date range for the records to import from the connector in the first flow run. Must be a valid RFC3339 timestamp.
- Schedule
End stringTime Specifies the scheduled end time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.
- Schedule
Offset int Specifies the optional offset that is added to the time interval for a schedule-triggered flow. Maximum value of 36000.
- Schedule
Start stringTime Specifies the scheduled start time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.
- Timezone string
Specifies the time zone used when referring to the date and time of a scheduled-triggered flow, such as
America/New_York
.
- Schedule
Expression string The scheduling expression that determines the rate at which the schedule will run, for example
rate(5minutes)
.- Data
Pull stringMode Specifies whether a scheduled flow has an incremental data transfer or a complete data transfer for each flow run. Valid values are
Incremental
andComplete
.- First
Execution stringFrom Specifies the date range for the records to import from the connector in the first flow run. Must be a valid RFC3339 timestamp.
- Schedule
End stringTime Specifies the scheduled end time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.
- Schedule
Offset int Specifies the optional offset that is added to the time interval for a schedule-triggered flow. Maximum value of 36000.
- Schedule
Start stringTime Specifies the scheduled start time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.
- Timezone string
Specifies the time zone used when referring to the date and time of a scheduled-triggered flow, such as
America/New_York
.
- schedule
Expression String The scheduling expression that determines the rate at which the schedule will run, for example
rate(5minutes)
.- data
Pull StringMode Specifies whether a scheduled flow has an incremental data transfer or a complete data transfer for each flow run. Valid values are
Incremental
andComplete
.- first
Execution StringFrom Specifies the date range for the records to import from the connector in the first flow run. Must be a valid RFC3339 timestamp.
- schedule
End StringTime Specifies the scheduled end time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.
- schedule
Offset Integer Specifies the optional offset that is added to the time interval for a schedule-triggered flow. Maximum value of 36000.
- schedule
Start StringTime Specifies the scheduled start time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.
- timezone String
Specifies the time zone used when referring to the date and time of a scheduled-triggered flow, such as
America/New_York
.
- schedule
Expression string The scheduling expression that determines the rate at which the schedule will run, for example
rate(5minutes)
.- data
Pull stringMode Specifies whether a scheduled flow has an incremental data transfer or a complete data transfer for each flow run. Valid values are
Incremental
andComplete
.- first
Execution stringFrom Specifies the date range for the records to import from the connector in the first flow run. Must be a valid RFC3339 timestamp.
- schedule
End stringTime Specifies the scheduled end time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.
- schedule
Offset number Specifies the optional offset that is added to the time interval for a schedule-triggered flow. Maximum value of 36000.
- schedule
Start stringTime Specifies the scheduled start time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.
- timezone string
Specifies the time zone used when referring to the date and time of a scheduled-triggered flow, such as
America/New_York
.
- schedule_
expression str The scheduling expression that determines the rate at which the schedule will run, for example
rate(5minutes)
.- data_
pull_ strmode Specifies whether a scheduled flow has an incremental data transfer or a complete data transfer for each flow run. Valid values are
Incremental
andComplete
.- first_
execution_ strfrom Specifies the date range for the records to import from the connector in the first flow run. Must be a valid RFC3339 timestamp.
- schedule_
end_ strtime Specifies the scheduled end time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.
- schedule_
offset int Specifies the optional offset that is added to the time interval for a schedule-triggered flow. Maximum value of 36000.
- schedule_
start_ strtime Specifies the scheduled start time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.
- timezone str
Specifies the time zone used when referring to the date and time of a scheduled-triggered flow, such as
America/New_York
.
- schedule
Expression String The scheduling expression that determines the rate at which the schedule will run, for example
rate(5minutes)
.- data
Pull StringMode Specifies whether a scheduled flow has an incremental data transfer or a complete data transfer for each flow run. Valid values are
Incremental
andComplete
.- first
Execution StringFrom Specifies the date range for the records to import from the connector in the first flow run. Must be a valid RFC3339 timestamp.
- schedule
End StringTime Specifies the scheduled end time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.
- schedule
Offset Number Specifies the optional offset that is added to the time interval for a schedule-triggered flow. Maximum value of 36000.
- schedule
Start StringTime Specifies the scheduled start time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.
- timezone String
Specifies the 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
- https://github.com/pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
aws
Terraform Provider.