@aws-sdk/client-appflow 3.299.0 → 3.301.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. package/dist-types/commands/CreateConnectorProfileCommand.d.ts +232 -0
  2. package/dist-types/commands/CreateFlowCommand.d.ts +271 -0
  3. package/dist-types/commands/DeleteConnectorProfileCommand.d.ts +4 -0
  4. package/dist-types/commands/DeleteFlowCommand.d.ts +4 -0
  5. package/dist-types/commands/DescribeConnectorCommand.d.ts +4 -0
  6. package/dist-types/commands/DescribeConnectorEntityCommand.d.ts +6 -0
  7. package/dist-types/commands/DescribeConnectorProfilesCommand.d.ts +9 -0
  8. package/dist-types/commands/DescribeConnectorsCommand.d.ts +7 -0
  9. package/dist-types/commands/DescribeFlowCommand.d.ts +3 -0
  10. package/dist-types/commands/DescribeFlowExecutionRecordsCommand.d.ts +5 -0
  11. package/dist-types/commands/ListConnectorEntitiesCommand.d.ts +8 -0
  12. package/dist-types/commands/ListConnectorsCommand.d.ts +4 -0
  13. package/dist-types/commands/ListFlowsCommand.d.ts +4 -0
  14. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  15. package/dist-types/commands/RegisterConnectorCommand.d.ts +10 -0
  16. package/dist-types/commands/StartFlowCommand.d.ts +3 -0
  17. package/dist-types/commands/StopFlowCommand.d.ts +3 -0
  18. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  19. package/dist-types/commands/UnregisterConnectorCommand.d.ts +4 -0
  20. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  21. package/dist-types/commands/UpdateConnectorProfileCommand.d.ts +229 -0
  22. package/dist-types/commands/UpdateConnectorRegistrationCommand.d.ts +9 -0
  23. package/dist-types/commands/UpdateFlowCommand.d.ts +267 -0
  24. package/package.json +8 -8
@@ -28,6 +28,10 @@ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __M
28
28
  * import { AppflowClient, ListConnectorsCommand } from "@aws-sdk/client-appflow"; // ES Modules import
29
29
  * // const { AppflowClient, ListConnectorsCommand } = require("@aws-sdk/client-appflow"); // CommonJS import
30
30
  * const client = new AppflowClient(config);
31
+ * const input = { // ListConnectorsRequest
32
+ * maxResults: Number("int"),
33
+ * nextToken: "STRING_VALUE",
34
+ * };
31
35
  * const command = new ListConnectorsCommand(input);
32
36
  * const response = await client.send(command);
33
37
  * ```
@@ -26,6 +26,10 @@ export interface ListFlowsCommandOutput extends ListFlowsResponse, __MetadataBea
26
26
  * import { AppflowClient, ListFlowsCommand } from "@aws-sdk/client-appflow"; // ES Modules import
27
27
  * // const { AppflowClient, ListFlowsCommand } = require("@aws-sdk/client-appflow"); // CommonJS import
28
28
  * const client = new AppflowClient(config);
29
+ * const input = { // ListFlowsRequest
30
+ * maxResults: Number("int"),
31
+ * nextToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new ListFlowsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { AppflowClient, ListTagsForResourceCommand } from "@aws-sdk/client-appflow"; // ES Modules import
27
27
  * // const { AppflowClient, ListTagsForResourceCommand } = require("@aws-sdk/client-appflow"); // CommonJS import
28
28
  * const client = new AppflowClient(config);
29
+ * const input = { // ListTagsForResourceRequest
30
+ * resourceArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new ListTagsForResourceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -28,6 +28,16 @@ export interface RegisterConnectorCommandOutput extends RegisterConnectorRespons
28
28
  * import { AppflowClient, RegisterConnectorCommand } from "@aws-sdk/client-appflow"; // ES Modules import
29
29
  * // const { AppflowClient, RegisterConnectorCommand } = require("@aws-sdk/client-appflow"); // CommonJS import
30
30
  * const client = new AppflowClient(config);
31
+ * const input = { // RegisterConnectorRequest
32
+ * connectorLabel: "STRING_VALUE",
33
+ * description: "STRING_VALUE",
34
+ * connectorProvisioningType: "LAMBDA",
35
+ * connectorProvisioningConfig: { // ConnectorProvisioningConfig
36
+ * lambda: { // LambdaConnectorProvisioningConfig
37
+ * lambdaArn: "STRING_VALUE", // required
38
+ * },
39
+ * },
40
+ * };
31
41
  * const command = new RegisterConnectorCommand(input);
32
42
  * const response = await client.send(command);
33
43
  * ```
@@ -27,6 +27,9 @@ export interface StartFlowCommandOutput extends StartFlowResponse, __MetadataBea
27
27
  * import { AppflowClient, StartFlowCommand } from "@aws-sdk/client-appflow"; // ES Modules import
28
28
  * // const { AppflowClient, StartFlowCommand } = require("@aws-sdk/client-appflow"); // CommonJS import
29
29
  * const client = new AppflowClient(config);
30
+ * const input = { // StartFlowRequest
31
+ * flowName: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new StartFlowCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -28,6 +28,9 @@ export interface StopFlowCommandOutput extends StopFlowResponse, __MetadataBeare
28
28
  * import { AppflowClient, StopFlowCommand } from "@aws-sdk/client-appflow"; // ES Modules import
29
29
  * // const { AppflowClient, StopFlowCommand } = require("@aws-sdk/client-appflow"); // CommonJS import
30
30
  * const client = new AppflowClient(config);
31
+ * const input = { // StopFlowRequest
32
+ * flowName: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new StopFlowCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -26,6 +26,12 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
26
26
  * import { AppflowClient, TagResourceCommand } from "@aws-sdk/client-appflow"; // ES Modules import
27
27
  * // const { AppflowClient, TagResourceCommand } = require("@aws-sdk/client-appflow"); // CommonJS import
28
28
  * const client = new AppflowClient(config);
29
+ * const input = { // TagResourceRequest
30
+ * resourceArn: "STRING_VALUE", // required
31
+ * tags: { // TagMap // required
32
+ * "<keys>": "STRING_VALUE",
33
+ * },
34
+ * };
29
35
  * const command = new TagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -27,6 +27,10 @@ export interface UnregisterConnectorCommandOutput extends UnregisterConnectorRes
27
27
  * import { AppflowClient, UnregisterConnectorCommand } from "@aws-sdk/client-appflow"; // ES Modules import
28
28
  * // const { AppflowClient, UnregisterConnectorCommand } = require("@aws-sdk/client-appflow"); // CommonJS import
29
29
  * const client = new AppflowClient(config);
30
+ * const input = { // UnregisterConnectorRequest
31
+ * connectorLabel: "STRING_VALUE", // required
32
+ * forceDelete: true || false,
33
+ * };
30
34
  * const command = new UnregisterConnectorCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { AppflowClient, UntagResourceCommand } from "@aws-sdk/client-appflow"; // ES Modules import
27
27
  * // const { AppflowClient, UntagResourceCommand } = require("@aws-sdk/client-appflow"); // CommonJS import
28
28
  * const client = new AppflowClient(config);
29
+ * const input = { // UntagResourceRequest
30
+ * resourceArn: "STRING_VALUE", // required
31
+ * tagKeys: [ // TagKeyList // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new UntagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,235 @@ export interface UpdateConnectorProfileCommandOutput extends UpdateConnectorProf
26
26
  * import { AppflowClient, UpdateConnectorProfileCommand } from "@aws-sdk/client-appflow"; // ES Modules import
27
27
  * // const { AppflowClient, UpdateConnectorProfileCommand } = require("@aws-sdk/client-appflow"); // CommonJS import
28
28
  * const client = new AppflowClient(config);
29
+ * const input = { // UpdateConnectorProfileRequest
30
+ * connectorProfileName: "STRING_VALUE", // required
31
+ * connectionMode: "Public" || "Private", // required
32
+ * connectorProfileConfig: { // ConnectorProfileConfig
33
+ * connectorProfileProperties: { // ConnectorProfileProperties
34
+ * Amplitude: {},
35
+ * Datadog: { // DatadogConnectorProfileProperties
36
+ * instanceUrl: "STRING_VALUE", // required
37
+ * },
38
+ * Dynatrace: { // DynatraceConnectorProfileProperties
39
+ * instanceUrl: "STRING_VALUE", // required
40
+ * },
41
+ * GoogleAnalytics: {},
42
+ * Honeycode: {},
43
+ * InforNexus: { // InforNexusConnectorProfileProperties
44
+ * instanceUrl: "STRING_VALUE", // required
45
+ * },
46
+ * Marketo: { // MarketoConnectorProfileProperties
47
+ * instanceUrl: "STRING_VALUE", // required
48
+ * },
49
+ * Redshift: { // RedshiftConnectorProfileProperties
50
+ * databaseUrl: "STRING_VALUE",
51
+ * bucketName: "STRING_VALUE", // required
52
+ * bucketPrefix: "STRING_VALUE",
53
+ * roleArn: "STRING_VALUE", // required
54
+ * dataApiRoleArn: "STRING_VALUE",
55
+ * isRedshiftServerless: true || false,
56
+ * clusterIdentifier: "STRING_VALUE",
57
+ * workgroupName: "STRING_VALUE",
58
+ * databaseName: "STRING_VALUE",
59
+ * },
60
+ * Salesforce: { // SalesforceConnectorProfileProperties
61
+ * instanceUrl: "STRING_VALUE",
62
+ * isSandboxEnvironment: true || false,
63
+ * usePrivateLinkForMetadataAndAuthorization: true || false,
64
+ * },
65
+ * ServiceNow: { // ServiceNowConnectorProfileProperties
66
+ * instanceUrl: "STRING_VALUE", // required
67
+ * },
68
+ * Singular: {},
69
+ * Slack: { // SlackConnectorProfileProperties
70
+ * instanceUrl: "STRING_VALUE", // required
71
+ * },
72
+ * Snowflake: { // SnowflakeConnectorProfileProperties
73
+ * warehouse: "STRING_VALUE", // required
74
+ * stage: "STRING_VALUE", // required
75
+ * bucketName: "STRING_VALUE", // required
76
+ * bucketPrefix: "STRING_VALUE",
77
+ * privateLinkServiceName: "STRING_VALUE",
78
+ * accountName: "STRING_VALUE",
79
+ * region: "STRING_VALUE",
80
+ * },
81
+ * Trendmicro: {},
82
+ * Veeva: { // VeevaConnectorProfileProperties
83
+ * instanceUrl: "STRING_VALUE", // required
84
+ * },
85
+ * Zendesk: { // ZendeskConnectorProfileProperties
86
+ * instanceUrl: "STRING_VALUE", // required
87
+ * },
88
+ * SAPOData: { // SAPODataConnectorProfileProperties
89
+ * applicationHostUrl: "STRING_VALUE", // required
90
+ * applicationServicePath: "STRING_VALUE", // required
91
+ * portNumber: Number("int"), // required
92
+ * clientNumber: "STRING_VALUE", // required
93
+ * logonLanguage: "STRING_VALUE",
94
+ * privateLinkServiceName: "STRING_VALUE",
95
+ * oAuthProperties: { // OAuthProperties
96
+ * tokenUrl: "STRING_VALUE", // required
97
+ * authCodeUrl: "STRING_VALUE", // required
98
+ * oAuthScopes: [ // OAuthScopeList // required
99
+ * "STRING_VALUE",
100
+ * ],
101
+ * },
102
+ * },
103
+ * CustomConnector: { // CustomConnectorProfileProperties
104
+ * profileProperties: { // ProfilePropertiesMap
105
+ * "<keys>": "STRING_VALUE",
106
+ * },
107
+ * oAuth2Properties: { // OAuth2Properties
108
+ * tokenUrl: "STRING_VALUE", // required
109
+ * oAuth2GrantType: "CLIENT_CREDENTIALS" || "AUTHORIZATION_CODE", // required
110
+ * tokenUrlCustomProperties: { // TokenUrlCustomProperties
111
+ * "<keys>": "STRING_VALUE",
112
+ * },
113
+ * },
114
+ * },
115
+ * Pardot: { // PardotConnectorProfileProperties
116
+ * instanceUrl: "STRING_VALUE",
117
+ * isSandboxEnvironment: true || false,
118
+ * businessUnitId: "STRING_VALUE",
119
+ * },
120
+ * },
121
+ * connectorProfileCredentials: { // ConnectorProfileCredentials
122
+ * Amplitude: { // AmplitudeConnectorProfileCredentials
123
+ * apiKey: "STRING_VALUE", // required
124
+ * secretKey: "STRING_VALUE", // required
125
+ * },
126
+ * Datadog: { // DatadogConnectorProfileCredentials
127
+ * apiKey: "STRING_VALUE", // required
128
+ * applicationKey: "STRING_VALUE", // required
129
+ * },
130
+ * Dynatrace: { // DynatraceConnectorProfileCredentials
131
+ * apiToken: "STRING_VALUE", // required
132
+ * },
133
+ * GoogleAnalytics: { // GoogleAnalyticsConnectorProfileCredentials
134
+ * clientId: "STRING_VALUE", // required
135
+ * clientSecret: "STRING_VALUE", // required
136
+ * accessToken: "STRING_VALUE",
137
+ * refreshToken: "STRING_VALUE",
138
+ * oAuthRequest: { // ConnectorOAuthRequest
139
+ * authCode: "STRING_VALUE",
140
+ * redirectUri: "STRING_VALUE",
141
+ * },
142
+ * },
143
+ * Honeycode: { // HoneycodeConnectorProfileCredentials
144
+ * accessToken: "STRING_VALUE",
145
+ * refreshToken: "STRING_VALUE",
146
+ * oAuthRequest: {
147
+ * authCode: "STRING_VALUE",
148
+ * redirectUri: "STRING_VALUE",
149
+ * },
150
+ * },
151
+ * InforNexus: { // InforNexusConnectorProfileCredentials
152
+ * accessKeyId: "STRING_VALUE", // required
153
+ * userId: "STRING_VALUE", // required
154
+ * secretAccessKey: "STRING_VALUE", // required
155
+ * datakey: "STRING_VALUE", // required
156
+ * },
157
+ * Marketo: { // MarketoConnectorProfileCredentials
158
+ * clientId: "STRING_VALUE", // required
159
+ * clientSecret: "STRING_VALUE", // required
160
+ * accessToken: "STRING_VALUE",
161
+ * oAuthRequest: {
162
+ * authCode: "STRING_VALUE",
163
+ * redirectUri: "STRING_VALUE",
164
+ * },
165
+ * },
166
+ * Redshift: { // RedshiftConnectorProfileCredentials
167
+ * username: "STRING_VALUE",
168
+ * password: "STRING_VALUE",
169
+ * },
170
+ * Salesforce: { // SalesforceConnectorProfileCredentials
171
+ * accessToken: "STRING_VALUE",
172
+ * refreshToken: "STRING_VALUE",
173
+ * oAuthRequest: {
174
+ * authCode: "STRING_VALUE",
175
+ * redirectUri: "STRING_VALUE",
176
+ * },
177
+ * clientCredentialsArn: "STRING_VALUE",
178
+ * },
179
+ * ServiceNow: { // ServiceNowConnectorProfileCredentials
180
+ * username: "STRING_VALUE", // required
181
+ * password: "STRING_VALUE", // required
182
+ * },
183
+ * Singular: { // SingularConnectorProfileCredentials
184
+ * apiKey: "STRING_VALUE", // required
185
+ * },
186
+ * Slack: { // SlackConnectorProfileCredentials
187
+ * clientId: "STRING_VALUE", // required
188
+ * clientSecret: "STRING_VALUE", // required
189
+ * accessToken: "STRING_VALUE",
190
+ * oAuthRequest: {
191
+ * authCode: "STRING_VALUE",
192
+ * redirectUri: "STRING_VALUE",
193
+ * },
194
+ * },
195
+ * Snowflake: { // SnowflakeConnectorProfileCredentials
196
+ * username: "STRING_VALUE", // required
197
+ * password: "STRING_VALUE", // required
198
+ * },
199
+ * Trendmicro: { // TrendmicroConnectorProfileCredentials
200
+ * apiSecretKey: "STRING_VALUE", // required
201
+ * },
202
+ * Veeva: { // VeevaConnectorProfileCredentials
203
+ * username: "STRING_VALUE", // required
204
+ * password: "STRING_VALUE", // required
205
+ * },
206
+ * Zendesk: { // ZendeskConnectorProfileCredentials
207
+ * clientId: "STRING_VALUE", // required
208
+ * clientSecret: "STRING_VALUE", // required
209
+ * accessToken: "STRING_VALUE",
210
+ * oAuthRequest: "<ConnectorOAuthRequest>",
211
+ * },
212
+ * SAPOData: { // SAPODataConnectorProfileCredentials
213
+ * basicAuthCredentials: { // BasicAuthCredentials
214
+ * username: "STRING_VALUE", // required
215
+ * password: "STRING_VALUE", // required
216
+ * },
217
+ * oAuthCredentials: { // OAuthCredentials
218
+ * clientId: "STRING_VALUE", // required
219
+ * clientSecret: "STRING_VALUE", // required
220
+ * accessToken: "STRING_VALUE",
221
+ * refreshToken: "STRING_VALUE",
222
+ * oAuthRequest: "<ConnectorOAuthRequest>",
223
+ * },
224
+ * },
225
+ * CustomConnector: { // CustomConnectorProfileCredentials
226
+ * authenticationType: "OAUTH2" || "APIKEY" || "BASIC" || "CUSTOM", // required
227
+ * basic: {
228
+ * username: "STRING_VALUE", // required
229
+ * password: "STRING_VALUE", // required
230
+ * },
231
+ * oauth2: { // OAuth2Credentials
232
+ * clientId: "STRING_VALUE",
233
+ * clientSecret: "STRING_VALUE",
234
+ * accessToken: "STRING_VALUE",
235
+ * refreshToken: "STRING_VALUE",
236
+ * oAuthRequest: "<ConnectorOAuthRequest>",
237
+ * },
238
+ * apiKey: { // ApiKeyCredentials
239
+ * apiKey: "STRING_VALUE", // required
240
+ * apiSecretKey: "STRING_VALUE",
241
+ * },
242
+ * custom: { // CustomAuthCredentials
243
+ * customAuthenticationType: "STRING_VALUE", // required
244
+ * credentialsMap: { // CredentialsMap
245
+ * "<keys>": "STRING_VALUE",
246
+ * },
247
+ * },
248
+ * },
249
+ * Pardot: { // PardotConnectorProfileCredentials
250
+ * accessToken: "STRING_VALUE",
251
+ * refreshToken: "STRING_VALUE",
252
+ * oAuthRequest: "<ConnectorOAuthRequest>",
253
+ * clientCredentialsArn: "STRING_VALUE",
254
+ * },
255
+ * },
256
+ * },
257
+ * };
29
258
  * const command = new UpdateConnectorProfileCommand(input);
30
259
  * const response = await client.send(command);
31
260
  * ```
@@ -35,6 +35,15 @@ export interface UpdateConnectorRegistrationCommandOutput extends UpdateConnecto
35
35
  * import { AppflowClient, UpdateConnectorRegistrationCommand } from "@aws-sdk/client-appflow"; // ES Modules import
36
36
  * // const { AppflowClient, UpdateConnectorRegistrationCommand } = require("@aws-sdk/client-appflow"); // CommonJS import
37
37
  * const client = new AppflowClient(config);
38
+ * const input = { // UpdateConnectorRegistrationRequest
39
+ * connectorLabel: "STRING_VALUE", // required
40
+ * description: "STRING_VALUE",
41
+ * connectorProvisioningConfig: { // ConnectorProvisioningConfig
42
+ * lambda: { // LambdaConnectorProvisioningConfig
43
+ * lambdaArn: "STRING_VALUE", // required
44
+ * },
45
+ * },
46
+ * };
38
47
  * const command = new UpdateConnectorRegistrationCommand(input);
39
48
  * const response = await client.send(command);
40
49
  * ```
@@ -26,6 +26,273 @@ export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataB
26
26
  * import { AppflowClient, UpdateFlowCommand } from "@aws-sdk/client-appflow"; // ES Modules import
27
27
  * // const { AppflowClient, UpdateFlowCommand } = require("@aws-sdk/client-appflow"); // CommonJS import
28
28
  * const client = new AppflowClient(config);
29
+ * const input = { // UpdateFlowRequest
30
+ * flowName: "STRING_VALUE", // required
31
+ * description: "STRING_VALUE",
32
+ * triggerConfig: { // TriggerConfig
33
+ * triggerType: "Scheduled" || "Event" || "OnDemand", // required
34
+ * triggerProperties: { // TriggerProperties
35
+ * Scheduled: { // ScheduledTriggerProperties
36
+ * scheduleExpression: "STRING_VALUE", // required
37
+ * dataPullMode: "Incremental" || "Complete",
38
+ * scheduleStartTime: new Date("TIMESTAMP"),
39
+ * scheduleEndTime: new Date("TIMESTAMP"),
40
+ * timezone: "STRING_VALUE",
41
+ * scheduleOffset: Number("long"),
42
+ * firstExecutionFrom: new Date("TIMESTAMP"),
43
+ * flowErrorDeactivationThreshold: Number("int"),
44
+ * },
45
+ * },
46
+ * },
47
+ * sourceFlowConfig: { // SourceFlowConfig
48
+ * connectorType: "Salesforce" || "Singular" || "Slack" || "Redshift" || "S3" || "Marketo" || "Googleanalytics" || "Zendesk" || "Servicenow" || "Datadog" || "Trendmicro" || "Snowflake" || "Dynatrace" || "Infornexus" || "Amplitude" || "Veeva" || "EventBridge" || "LookoutMetrics" || "Upsolver" || "Honeycode" || "CustomerProfiles" || "SAPOData" || "CustomConnector" || "Pardot", // required
49
+ * apiVersion: "STRING_VALUE",
50
+ * connectorProfileName: "STRING_VALUE",
51
+ * sourceConnectorProperties: { // SourceConnectorProperties
52
+ * Amplitude: { // AmplitudeSourceProperties
53
+ * object: "STRING_VALUE", // required
54
+ * },
55
+ * Datadog: { // DatadogSourceProperties
56
+ * object: "STRING_VALUE", // required
57
+ * },
58
+ * Dynatrace: { // DynatraceSourceProperties
59
+ * object: "STRING_VALUE", // required
60
+ * },
61
+ * GoogleAnalytics: { // GoogleAnalyticsSourceProperties
62
+ * object: "STRING_VALUE", // required
63
+ * },
64
+ * InforNexus: { // InforNexusSourceProperties
65
+ * object: "STRING_VALUE", // required
66
+ * },
67
+ * Marketo: { // MarketoSourceProperties
68
+ * object: "STRING_VALUE", // required
69
+ * },
70
+ * S3: { // S3SourceProperties
71
+ * bucketName: "STRING_VALUE", // required
72
+ * bucketPrefix: "STRING_VALUE",
73
+ * s3InputFormatConfig: { // S3InputFormatConfig
74
+ * s3InputFileType: "CSV" || "JSON",
75
+ * },
76
+ * },
77
+ * Salesforce: { // SalesforceSourceProperties
78
+ * object: "STRING_VALUE", // required
79
+ * enableDynamicFieldUpdate: true || false,
80
+ * includeDeletedRecords: true || false,
81
+ * dataTransferApi: "AUTOMATIC" || "BULKV2" || "REST_SYNC",
82
+ * },
83
+ * ServiceNow: { // ServiceNowSourceProperties
84
+ * object: "STRING_VALUE", // required
85
+ * },
86
+ * Singular: { // SingularSourceProperties
87
+ * object: "STRING_VALUE", // required
88
+ * },
89
+ * Slack: { // SlackSourceProperties
90
+ * object: "STRING_VALUE", // required
91
+ * },
92
+ * Trendmicro: { // TrendmicroSourceProperties
93
+ * object: "STRING_VALUE", // required
94
+ * },
95
+ * Veeva: { // VeevaSourceProperties
96
+ * object: "STRING_VALUE", // required
97
+ * documentType: "STRING_VALUE",
98
+ * includeSourceFiles: true || false,
99
+ * includeRenditions: true || false,
100
+ * includeAllVersions: true || false,
101
+ * },
102
+ * Zendesk: { // ZendeskSourceProperties
103
+ * object: "STRING_VALUE", // required
104
+ * },
105
+ * SAPOData: { // SAPODataSourceProperties
106
+ * objectPath: "STRING_VALUE",
107
+ * },
108
+ * CustomConnector: { // CustomConnectorSourceProperties
109
+ * entityName: "STRING_VALUE", // required
110
+ * customProperties: { // CustomProperties
111
+ * "<keys>": "STRING_VALUE",
112
+ * },
113
+ * },
114
+ * Pardot: { // PardotSourceProperties
115
+ * object: "STRING_VALUE", // required
116
+ * },
117
+ * },
118
+ * incrementalPullConfig: { // IncrementalPullConfig
119
+ * datetimeTypeFieldName: "STRING_VALUE",
120
+ * },
121
+ * },
122
+ * destinationFlowConfigList: [ // DestinationFlowConfigList // required
123
+ * { // DestinationFlowConfig
124
+ * connectorType: "Salesforce" || "Singular" || "Slack" || "Redshift" || "S3" || "Marketo" || "Googleanalytics" || "Zendesk" || "Servicenow" || "Datadog" || "Trendmicro" || "Snowflake" || "Dynatrace" || "Infornexus" || "Amplitude" || "Veeva" || "EventBridge" || "LookoutMetrics" || "Upsolver" || "Honeycode" || "CustomerProfiles" || "SAPOData" || "CustomConnector" || "Pardot", // required
125
+ * apiVersion: "STRING_VALUE",
126
+ * connectorProfileName: "STRING_VALUE",
127
+ * destinationConnectorProperties: { // DestinationConnectorProperties
128
+ * Redshift: { // RedshiftDestinationProperties
129
+ * object: "STRING_VALUE", // required
130
+ * intermediateBucketName: "STRING_VALUE", // required
131
+ * bucketPrefix: "STRING_VALUE",
132
+ * errorHandlingConfig: { // ErrorHandlingConfig
133
+ * failOnFirstDestinationError: true || false,
134
+ * bucketPrefix: "STRING_VALUE",
135
+ * bucketName: "STRING_VALUE",
136
+ * },
137
+ * },
138
+ * S3: { // S3DestinationProperties
139
+ * bucketName: "STRING_VALUE", // required
140
+ * bucketPrefix: "STRING_VALUE",
141
+ * s3OutputFormatConfig: { // S3OutputFormatConfig
142
+ * fileType: "CSV" || "JSON" || "PARQUET",
143
+ * prefixConfig: { // PrefixConfig
144
+ * prefixType: "FILENAME" || "PATH" || "PATH_AND_FILENAME",
145
+ * prefixFormat: "YEAR" || "MONTH" || "DAY" || "HOUR" || "MINUTE",
146
+ * pathPrefixHierarchy: [ // PathPrefixHierarchy
147
+ * "EXECUTION_ID" || "SCHEMA_VERSION",
148
+ * ],
149
+ * },
150
+ * aggregationConfig: { // AggregationConfig
151
+ * aggregationType: "None" || "SingleFile",
152
+ * targetFileSize: Number("long"),
153
+ * },
154
+ * preserveSourceDataTyping: true || false,
155
+ * },
156
+ * },
157
+ * Salesforce: { // SalesforceDestinationProperties
158
+ * object: "STRING_VALUE", // required
159
+ * idFieldNames: [ // IdFieldNameList
160
+ * "STRING_VALUE",
161
+ * ],
162
+ * errorHandlingConfig: {
163
+ * failOnFirstDestinationError: true || false,
164
+ * bucketPrefix: "STRING_VALUE",
165
+ * bucketName: "STRING_VALUE",
166
+ * },
167
+ * writeOperationType: "INSERT" || "UPSERT" || "UPDATE" || "DELETE",
168
+ * dataTransferApi: "AUTOMATIC" || "BULKV2" || "REST_SYNC",
169
+ * },
170
+ * Snowflake: { // SnowflakeDestinationProperties
171
+ * object: "STRING_VALUE", // required
172
+ * intermediateBucketName: "STRING_VALUE", // required
173
+ * bucketPrefix: "STRING_VALUE",
174
+ * errorHandlingConfig: {
175
+ * failOnFirstDestinationError: true || false,
176
+ * bucketPrefix: "STRING_VALUE",
177
+ * bucketName: "STRING_VALUE",
178
+ * },
179
+ * },
180
+ * EventBridge: { // EventBridgeDestinationProperties
181
+ * object: "STRING_VALUE", // required
182
+ * errorHandlingConfig: {
183
+ * failOnFirstDestinationError: true || false,
184
+ * bucketPrefix: "STRING_VALUE",
185
+ * bucketName: "STRING_VALUE",
186
+ * },
187
+ * },
188
+ * LookoutMetrics: {},
189
+ * Upsolver: { // UpsolverDestinationProperties
190
+ * bucketName: "STRING_VALUE", // required
191
+ * bucketPrefix: "STRING_VALUE",
192
+ * s3OutputFormatConfig: { // UpsolverS3OutputFormatConfig
193
+ * fileType: "CSV" || "JSON" || "PARQUET",
194
+ * prefixConfig: {
195
+ * prefixType: "FILENAME" || "PATH" || "PATH_AND_FILENAME",
196
+ * prefixFormat: "YEAR" || "MONTH" || "DAY" || "HOUR" || "MINUTE",
197
+ * pathPrefixHierarchy: [
198
+ * "EXECUTION_ID" || "SCHEMA_VERSION",
199
+ * ],
200
+ * },
201
+ * aggregationConfig: {
202
+ * aggregationType: "None" || "SingleFile",
203
+ * targetFileSize: Number("long"),
204
+ * },
205
+ * },
206
+ * },
207
+ * Honeycode: { // HoneycodeDestinationProperties
208
+ * object: "STRING_VALUE", // required
209
+ * errorHandlingConfig: {
210
+ * failOnFirstDestinationError: true || false,
211
+ * bucketPrefix: "STRING_VALUE",
212
+ * bucketName: "STRING_VALUE",
213
+ * },
214
+ * },
215
+ * CustomerProfiles: { // CustomerProfilesDestinationProperties
216
+ * domainName: "STRING_VALUE", // required
217
+ * objectTypeName: "STRING_VALUE",
218
+ * },
219
+ * Zendesk: { // ZendeskDestinationProperties
220
+ * object: "STRING_VALUE", // required
221
+ * idFieldNames: [
222
+ * "STRING_VALUE",
223
+ * ],
224
+ * errorHandlingConfig: "<ErrorHandlingConfig>",
225
+ * writeOperationType: "INSERT" || "UPSERT" || "UPDATE" || "DELETE",
226
+ * },
227
+ * Marketo: { // MarketoDestinationProperties
228
+ * object: "STRING_VALUE", // required
229
+ * errorHandlingConfig: "<ErrorHandlingConfig>",
230
+ * },
231
+ * CustomConnector: { // CustomConnectorDestinationProperties
232
+ * entityName: "STRING_VALUE", // required
233
+ * errorHandlingConfig: "<ErrorHandlingConfig>",
234
+ * writeOperationType: "INSERT" || "UPSERT" || "UPDATE" || "DELETE",
235
+ * idFieldNames: [
236
+ * "STRING_VALUE",
237
+ * ],
238
+ * customProperties: {
239
+ * "<keys>": "STRING_VALUE",
240
+ * },
241
+ * },
242
+ * SAPOData: { // SAPODataDestinationProperties
243
+ * objectPath: "STRING_VALUE", // required
244
+ * successResponseHandlingConfig: { // SuccessResponseHandlingConfig
245
+ * bucketPrefix: "STRING_VALUE",
246
+ * bucketName: "STRING_VALUE",
247
+ * },
248
+ * idFieldNames: [
249
+ * "STRING_VALUE",
250
+ * ],
251
+ * errorHandlingConfig: "<ErrorHandlingConfig>",
252
+ * writeOperationType: "INSERT" || "UPSERT" || "UPDATE" || "DELETE",
253
+ * },
254
+ * },
255
+ * },
256
+ * ],
257
+ * tasks: [ // Tasks // required
258
+ * { // Task
259
+ * sourceFields: [ // SourceFields // required
260
+ * "STRING_VALUE",
261
+ * ],
262
+ * connectorOperator: { // ConnectorOperator
263
+ * Amplitude: "BETWEEN",
264
+ * Datadog: "PROJECTION" || "BETWEEN" || "EQUAL_TO" || "ADDITION" || "MULTIPLICATION" || "DIVISION" || "SUBTRACTION" || "MASK_ALL" || "MASK_FIRST_N" || "MASK_LAST_N" || "VALIDATE_NON_NULL" || "VALIDATE_NON_ZERO" || "VALIDATE_NON_NEGATIVE" || "VALIDATE_NUMERIC" || "NO_OP",
265
+ * Dynatrace: "PROJECTION" || "BETWEEN" || "EQUAL_TO" || "ADDITION" || "MULTIPLICATION" || "DIVISION" || "SUBTRACTION" || "MASK_ALL" || "MASK_FIRST_N" || "MASK_LAST_N" || "VALIDATE_NON_NULL" || "VALIDATE_NON_ZERO" || "VALIDATE_NON_NEGATIVE" || "VALIDATE_NUMERIC" || "NO_OP",
266
+ * GoogleAnalytics: "PROJECTION" || "BETWEEN",
267
+ * InforNexus: "PROJECTION" || "BETWEEN" || "EQUAL_TO" || "ADDITION" || "MULTIPLICATION" || "DIVISION" || "SUBTRACTION" || "MASK_ALL" || "MASK_FIRST_N" || "MASK_LAST_N" || "VALIDATE_NON_NULL" || "VALIDATE_NON_ZERO" || "VALIDATE_NON_NEGATIVE" || "VALIDATE_NUMERIC" || "NO_OP",
268
+ * Marketo: "PROJECTION" || "LESS_THAN" || "GREATER_THAN" || "BETWEEN" || "ADDITION" || "MULTIPLICATION" || "DIVISION" || "SUBTRACTION" || "MASK_ALL" || "MASK_FIRST_N" || "MASK_LAST_N" || "VALIDATE_NON_NULL" || "VALIDATE_NON_ZERO" || "VALIDATE_NON_NEGATIVE" || "VALIDATE_NUMERIC" || "NO_OP",
269
+ * S3: "PROJECTION" || "LESS_THAN" || "GREATER_THAN" || "BETWEEN" || "LESS_THAN_OR_EQUAL_TO" || "GREATER_THAN_OR_EQUAL_TO" || "EQUAL_TO" || "NOT_EQUAL_TO" || "ADDITION" || "MULTIPLICATION" || "DIVISION" || "SUBTRACTION" || "MASK_ALL" || "MASK_FIRST_N" || "MASK_LAST_N" || "VALIDATE_NON_NULL" || "VALIDATE_NON_ZERO" || "VALIDATE_NON_NEGATIVE" || "VALIDATE_NUMERIC" || "NO_OP",
270
+ * Salesforce: "PROJECTION" || "LESS_THAN" || "CONTAINS" || "GREATER_THAN" || "BETWEEN" || "LESS_THAN_OR_EQUAL_TO" || "GREATER_THAN_OR_EQUAL_TO" || "EQUAL_TO" || "NOT_EQUAL_TO" || "ADDITION" || "MULTIPLICATION" || "DIVISION" || "SUBTRACTION" || "MASK_ALL" || "MASK_FIRST_N" || "MASK_LAST_N" || "VALIDATE_NON_NULL" || "VALIDATE_NON_ZERO" || "VALIDATE_NON_NEGATIVE" || "VALIDATE_NUMERIC" || "NO_OP",
271
+ * ServiceNow: "PROJECTION" || "CONTAINS" || "LESS_THAN" || "GREATER_THAN" || "BETWEEN" || "LESS_THAN_OR_EQUAL_TO" || "GREATER_THAN_OR_EQUAL_TO" || "EQUAL_TO" || "NOT_EQUAL_TO" || "ADDITION" || "MULTIPLICATION" || "DIVISION" || "SUBTRACTION" || "MASK_ALL" || "MASK_FIRST_N" || "MASK_LAST_N" || "VALIDATE_NON_NULL" || "VALIDATE_NON_ZERO" || "VALIDATE_NON_NEGATIVE" || "VALIDATE_NUMERIC" || "NO_OP",
272
+ * Singular: "PROJECTION" || "EQUAL_TO" || "ADDITION" || "MULTIPLICATION" || "DIVISION" || "SUBTRACTION" || "MASK_ALL" || "MASK_FIRST_N" || "MASK_LAST_N" || "VALIDATE_NON_NULL" || "VALIDATE_NON_ZERO" || "VALIDATE_NON_NEGATIVE" || "VALIDATE_NUMERIC" || "NO_OP",
273
+ * Slack: "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" || "NO_OP",
274
+ * Trendmicro: "PROJECTION" || "EQUAL_TO" || "ADDITION" || "MULTIPLICATION" || "DIVISION" || "SUBTRACTION" || "MASK_ALL" || "MASK_FIRST_N" || "MASK_LAST_N" || "VALIDATE_NON_NULL" || "VALIDATE_NON_ZERO" || "VALIDATE_NON_NEGATIVE" || "VALIDATE_NUMERIC" || "NO_OP",
275
+ * Veeva: "PROJECTION" || "LESS_THAN" || "GREATER_THAN" || "CONTAINS" || "BETWEEN" || "LESS_THAN_OR_EQUAL_TO" || "GREATER_THAN_OR_EQUAL_TO" || "EQUAL_TO" || "NOT_EQUAL_TO" || "ADDITION" || "MULTIPLICATION" || "DIVISION" || "SUBTRACTION" || "MASK_ALL" || "MASK_FIRST_N" || "MASK_LAST_N" || "VALIDATE_NON_NULL" || "VALIDATE_NON_ZERO" || "VALIDATE_NON_NEGATIVE" || "VALIDATE_NUMERIC" || "NO_OP",
276
+ * Zendesk: "PROJECTION" || "GREATER_THAN" || "ADDITION" || "MULTIPLICATION" || "DIVISION" || "SUBTRACTION" || "MASK_ALL" || "MASK_FIRST_N" || "MASK_LAST_N" || "VALIDATE_NON_NULL" || "VALIDATE_NON_ZERO" || "VALIDATE_NON_NEGATIVE" || "VALIDATE_NUMERIC" || "NO_OP",
277
+ * SAPOData: "PROJECTION" || "LESS_THAN" || "CONTAINS" || "GREATER_THAN" || "BETWEEN" || "LESS_THAN_OR_EQUAL_TO" || "GREATER_THAN_OR_EQUAL_TO" || "EQUAL_TO" || "NOT_EQUAL_TO" || "ADDITION" || "MULTIPLICATION" || "DIVISION" || "SUBTRACTION" || "MASK_ALL" || "MASK_FIRST_N" || "MASK_LAST_N" || "VALIDATE_NON_NULL" || "VALIDATE_NON_ZERO" || "VALIDATE_NON_NEGATIVE" || "VALIDATE_NUMERIC" || "NO_OP",
278
+ * CustomConnector: "PROJECTION" || "LESS_THAN" || "GREATER_THAN" || "CONTAINS" || "BETWEEN" || "LESS_THAN_OR_EQUAL_TO" || "GREATER_THAN_OR_EQUAL_TO" || "EQUAL_TO" || "NOT_EQUAL_TO" || "ADDITION" || "MULTIPLICATION" || "DIVISION" || "SUBTRACTION" || "MASK_ALL" || "MASK_FIRST_N" || "MASK_LAST_N" || "VALIDATE_NON_NULL" || "VALIDATE_NON_ZERO" || "VALIDATE_NON_NEGATIVE" || "VALIDATE_NUMERIC" || "NO_OP",
279
+ * Pardot: "PROJECTION" || "EQUAL_TO" || "NO_OP" || "ADDITION" || "MULTIPLICATION" || "DIVISION" || "SUBTRACTION" || "MASK_ALL" || "MASK_FIRST_N" || "MASK_LAST_N" || "VALIDATE_NON_NULL" || "VALIDATE_NON_ZERO" || "VALIDATE_NON_NEGATIVE" || "VALIDATE_NUMERIC",
280
+ * },
281
+ * destinationField: "STRING_VALUE",
282
+ * taskType: "Arithmetic" || "Filter" || "Map" || "Map_all" || "Mask" || "Merge" || "Passthrough" || "Truncate" || "Validate" || "Partition", // required
283
+ * taskProperties: { // TaskPropertiesMap
284
+ * "<keys>": "STRING_VALUE",
285
+ * },
286
+ * },
287
+ * ],
288
+ * metadataCatalogConfig: { // MetadataCatalogConfig
289
+ * glueDataCatalog: { // GlueDataCatalogConfig
290
+ * roleArn: "STRING_VALUE", // required
291
+ * databaseName: "STRING_VALUE", // required
292
+ * tablePrefix: "STRING_VALUE", // required
293
+ * },
294
+ * },
295
+ * };
29
296
  * const command = new UpdateFlowCommand(input);
30
297
  * const response = await client.send(command);
31
298
  * ```