@aws-sdk/client-appflow 3.300.0 → 3.303.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 (28) hide show
  1. package/dist-cjs/models/models_0.js +484 -526
  2. package/dist-es/models/models_0.js +484 -526
  3. package/dist-types/commands/CreateConnectorProfileCommand.d.ts +53 -65
  4. package/dist-types/commands/CreateFlowCommand.d.ts +61 -77
  5. package/dist-types/commands/DeleteConnectorProfileCommand.d.ts +1 -1
  6. package/dist-types/commands/DeleteFlowCommand.d.ts +1 -1
  7. package/dist-types/commands/DescribeConnectorCommand.d.ts +1 -1
  8. package/dist-types/commands/DescribeConnectorEntityCommand.d.ts +1 -1
  9. package/dist-types/commands/DescribeConnectorProfilesCommand.d.ts +2 -2
  10. package/dist-types/commands/DescribeConnectorsCommand.d.ts +2 -2
  11. package/dist-types/commands/DescribeFlowCommand.d.ts +1 -1
  12. package/dist-types/commands/DescribeFlowExecutionRecordsCommand.d.ts +1 -1
  13. package/dist-types/commands/ListConnectorEntitiesCommand.d.ts +1 -1
  14. package/dist-types/commands/ListConnectorsCommand.d.ts +1 -1
  15. package/dist-types/commands/ListFlowsCommand.d.ts +1 -1
  16. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  17. package/dist-types/commands/RegisterConnectorCommand.d.ts +3 -3
  18. package/dist-types/commands/StartFlowCommand.d.ts +1 -1
  19. package/dist-types/commands/StopFlowCommand.d.ts +1 -1
  20. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  21. package/dist-types/commands/UnregisterConnectorCommand.d.ts +1 -1
  22. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  23. package/dist-types/commands/UpdateConnectorProfileCommand.d.ts +53 -65
  24. package/dist-types/commands/UpdateConnectorRegistrationCommand.d.ts +3 -3
  25. package/dist-types/commands/UpdateFlowCommand.d.ts +60 -76
  26. package/dist-types/models/models_0.d.ts +736 -526
  27. package/dist-types/ts3.4/models/models_0.d.ts +556 -484
  28. package/package.json +34 -34
@@ -26,13 +26,13 @@ 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 = {
29
+ * const input = { // UpdateFlowRequest
30
30
  * flowName: "STRING_VALUE", // required
31
31
  * description: "STRING_VALUE",
32
- * triggerConfig: {
32
+ * triggerConfig: { // TriggerConfig
33
33
  * triggerType: "Scheduled" || "Event" || "OnDemand", // required
34
- * triggerProperties: {
35
- * Scheduled: {
34
+ * triggerProperties: { // TriggerProperties
35
+ * Scheduled: { // ScheduledTriggerProperties
36
36
  * scheduleExpression: "STRING_VALUE", // required
37
37
  * dataPullMode: "Incremental" || "Complete",
38
38
  * scheduleStartTime: new Date("TIMESTAMP"),
@@ -44,119 +44,119 @@ export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataB
44
44
  * },
45
45
  * },
46
46
  * },
47
- * sourceFlowConfig: {
47
+ * sourceFlowConfig: { // SourceFlowConfig
48
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
49
  * apiVersion: "STRING_VALUE",
50
50
  * connectorProfileName: "STRING_VALUE",
51
- * sourceConnectorProperties: {
52
- * Amplitude: {
51
+ * sourceConnectorProperties: { // SourceConnectorProperties
52
+ * Amplitude: { // AmplitudeSourceProperties
53
53
  * object: "STRING_VALUE", // required
54
54
  * },
55
- * Datadog: {
55
+ * Datadog: { // DatadogSourceProperties
56
56
  * object: "STRING_VALUE", // required
57
57
  * },
58
- * Dynatrace: {
58
+ * Dynatrace: { // DynatraceSourceProperties
59
59
  * object: "STRING_VALUE", // required
60
60
  * },
61
- * GoogleAnalytics: {
61
+ * GoogleAnalytics: { // GoogleAnalyticsSourceProperties
62
62
  * object: "STRING_VALUE", // required
63
63
  * },
64
- * InforNexus: {
64
+ * InforNexus: { // InforNexusSourceProperties
65
65
  * object: "STRING_VALUE", // required
66
66
  * },
67
- * Marketo: {
67
+ * Marketo: { // MarketoSourceProperties
68
68
  * object: "STRING_VALUE", // required
69
69
  * },
70
- * S3: {
70
+ * S3: { // S3SourceProperties
71
71
  * bucketName: "STRING_VALUE", // required
72
72
  * bucketPrefix: "STRING_VALUE",
73
- * s3InputFormatConfig: {
73
+ * s3InputFormatConfig: { // S3InputFormatConfig
74
74
  * s3InputFileType: "CSV" || "JSON",
75
75
  * },
76
76
  * },
77
- * Salesforce: {
77
+ * Salesforce: { // SalesforceSourceProperties
78
78
  * object: "STRING_VALUE", // required
79
79
  * enableDynamicFieldUpdate: true || false,
80
80
  * includeDeletedRecords: true || false,
81
81
  * dataTransferApi: "AUTOMATIC" || "BULKV2" || "REST_SYNC",
82
82
  * },
83
- * ServiceNow: {
83
+ * ServiceNow: { // ServiceNowSourceProperties
84
84
  * object: "STRING_VALUE", // required
85
85
  * },
86
- * Singular: {
86
+ * Singular: { // SingularSourceProperties
87
87
  * object: "STRING_VALUE", // required
88
88
  * },
89
- * Slack: {
89
+ * Slack: { // SlackSourceProperties
90
90
  * object: "STRING_VALUE", // required
91
91
  * },
92
- * Trendmicro: {
92
+ * Trendmicro: { // TrendmicroSourceProperties
93
93
  * object: "STRING_VALUE", // required
94
94
  * },
95
- * Veeva: {
95
+ * Veeva: { // VeevaSourceProperties
96
96
  * object: "STRING_VALUE", // required
97
97
  * documentType: "STRING_VALUE",
98
98
  * includeSourceFiles: true || false,
99
99
  * includeRenditions: true || false,
100
100
  * includeAllVersions: true || false,
101
101
  * },
102
- * Zendesk: {
102
+ * Zendesk: { // ZendeskSourceProperties
103
103
  * object: "STRING_VALUE", // required
104
104
  * },
105
- * SAPOData: {
105
+ * SAPOData: { // SAPODataSourceProperties
106
106
  * objectPath: "STRING_VALUE",
107
107
  * },
108
- * CustomConnector: {
108
+ * CustomConnector: { // CustomConnectorSourceProperties
109
109
  * entityName: "STRING_VALUE", // required
110
- * customProperties: {
110
+ * customProperties: { // CustomProperties
111
111
  * "<keys>": "STRING_VALUE",
112
112
  * },
113
113
  * },
114
- * Pardot: {
114
+ * Pardot: { // PardotSourceProperties
115
115
  * object: "STRING_VALUE", // required
116
116
  * },
117
117
  * },
118
- * incrementalPullConfig: {
118
+ * incrementalPullConfig: { // IncrementalPullConfig
119
119
  * datetimeTypeFieldName: "STRING_VALUE",
120
120
  * },
121
121
  * },
122
- * destinationFlowConfigList: [ // required
123
- * {
122
+ * destinationFlowConfigList: [ // DestinationFlowConfigList // required
123
+ * { // DestinationFlowConfig
124
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
125
  * apiVersion: "STRING_VALUE",
126
126
  * connectorProfileName: "STRING_VALUE",
127
- * destinationConnectorProperties: {
128
- * Redshift: {
127
+ * destinationConnectorProperties: { // DestinationConnectorProperties
128
+ * Redshift: { // RedshiftDestinationProperties
129
129
  * object: "STRING_VALUE", // required
130
130
  * intermediateBucketName: "STRING_VALUE", // required
131
131
  * bucketPrefix: "STRING_VALUE",
132
- * errorHandlingConfig: {
132
+ * errorHandlingConfig: { // ErrorHandlingConfig
133
133
  * failOnFirstDestinationError: true || false,
134
134
  * bucketPrefix: "STRING_VALUE",
135
135
  * bucketName: "STRING_VALUE",
136
136
  * },
137
137
  * },
138
- * S3: {
138
+ * S3: { // S3DestinationProperties
139
139
  * bucketName: "STRING_VALUE", // required
140
140
  * bucketPrefix: "STRING_VALUE",
141
- * s3OutputFormatConfig: {
141
+ * s3OutputFormatConfig: { // S3OutputFormatConfig
142
142
  * fileType: "CSV" || "JSON" || "PARQUET",
143
- * prefixConfig: {
143
+ * prefixConfig: { // PrefixConfig
144
144
  * prefixType: "FILENAME" || "PATH" || "PATH_AND_FILENAME",
145
145
  * prefixFormat: "YEAR" || "MONTH" || "DAY" || "HOUR" || "MINUTE",
146
- * pathPrefixHierarchy: [
146
+ * pathPrefixHierarchy: [ // PathPrefixHierarchy
147
147
  * "EXECUTION_ID" || "SCHEMA_VERSION",
148
148
  * ],
149
149
  * },
150
- * aggregationConfig: {
150
+ * aggregationConfig: { // AggregationConfig
151
151
  * aggregationType: "None" || "SingleFile",
152
152
  * targetFileSize: Number("long"),
153
153
  * },
154
154
  * preserveSourceDataTyping: true || false,
155
155
  * },
156
156
  * },
157
- * Salesforce: {
157
+ * Salesforce: { // SalesforceDestinationProperties
158
158
  * object: "STRING_VALUE", // required
159
- * idFieldNames: [
159
+ * idFieldNames: [ // IdFieldNameList
160
160
  * "STRING_VALUE",
161
161
  * ],
162
162
  * errorHandlingConfig: {
@@ -167,7 +167,7 @@ export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataB
167
167
  * writeOperationType: "INSERT" || "UPSERT" || "UPDATE" || "DELETE",
168
168
  * dataTransferApi: "AUTOMATIC" || "BULKV2" || "REST_SYNC",
169
169
  * },
170
- * Snowflake: {
170
+ * Snowflake: { // SnowflakeDestinationProperties
171
171
  * object: "STRING_VALUE", // required
172
172
  * intermediateBucketName: "STRING_VALUE", // required
173
173
  * bucketPrefix: "STRING_VALUE",
@@ -177,7 +177,7 @@ export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataB
177
177
  * bucketName: "STRING_VALUE",
178
178
  * },
179
179
  * },
180
- * EventBridge: {
180
+ * EventBridge: { // EventBridgeDestinationProperties
181
181
  * object: "STRING_VALUE", // required
182
182
  * errorHandlingConfig: {
183
183
  * failOnFirstDestinationError: true || false,
@@ -186,10 +186,10 @@ export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataB
186
186
  * },
187
187
  * },
188
188
  * LookoutMetrics: {},
189
- * Upsolver: {
189
+ * Upsolver: { // UpsolverDestinationProperties
190
190
  * bucketName: "STRING_VALUE", // required
191
191
  * bucketPrefix: "STRING_VALUE",
192
- * s3OutputFormatConfig: {
192
+ * s3OutputFormatConfig: { // UpsolverS3OutputFormatConfig
193
193
  * fileType: "CSV" || "JSON" || "PARQUET",
194
194
  * prefixConfig: {
195
195
  * prefixType: "FILENAME" || "PATH" || "PATH_AND_FILENAME",
@@ -204,7 +204,7 @@ export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataB
204
204
  * },
205
205
  * },
206
206
  * },
207
- * Honeycode: {
207
+ * Honeycode: { // HoneycodeDestinationProperties
208
208
  * object: "STRING_VALUE", // required
209
209
  * errorHandlingConfig: {
210
210
  * failOnFirstDestinationError: true || false,
@@ -212,37 +212,25 @@ export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataB
212
212
  * bucketName: "STRING_VALUE",
213
213
  * },
214
214
  * },
215
- * CustomerProfiles: {
215
+ * CustomerProfiles: { // CustomerProfilesDestinationProperties
216
216
  * domainName: "STRING_VALUE", // required
217
217
  * objectTypeName: "STRING_VALUE",
218
218
  * },
219
- * Zendesk: {
219
+ * Zendesk: { // ZendeskDestinationProperties
220
220
  * object: "STRING_VALUE", // required
221
221
  * idFieldNames: [
222
222
  * "STRING_VALUE",
223
223
  * ],
224
- * errorHandlingConfig: {
225
- * failOnFirstDestinationError: true || false,
226
- * bucketPrefix: "STRING_VALUE",
227
- * bucketName: "STRING_VALUE",
228
- * },
224
+ * errorHandlingConfig: "<ErrorHandlingConfig>",
229
225
  * writeOperationType: "INSERT" || "UPSERT" || "UPDATE" || "DELETE",
230
226
  * },
231
- * Marketo: {
227
+ * Marketo: { // MarketoDestinationProperties
232
228
  * object: "STRING_VALUE", // required
233
- * errorHandlingConfig: {
234
- * failOnFirstDestinationError: true || false,
235
- * bucketPrefix: "STRING_VALUE",
236
- * bucketName: "STRING_VALUE",
237
- * },
229
+ * errorHandlingConfig: "<ErrorHandlingConfig>",
238
230
  * },
239
- * CustomConnector: {
231
+ * CustomConnector: { // CustomConnectorDestinationProperties
240
232
  * entityName: "STRING_VALUE", // required
241
- * errorHandlingConfig: {
242
- * failOnFirstDestinationError: true || false,
243
- * bucketPrefix: "STRING_VALUE",
244
- * bucketName: "STRING_VALUE",
245
- * },
233
+ * errorHandlingConfig: "<ErrorHandlingConfig>",
246
234
  * writeOperationType: "INSERT" || "UPSERT" || "UPDATE" || "DELETE",
247
235
  * idFieldNames: [
248
236
  * "STRING_VALUE",
@@ -251,31 +239,27 @@ export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataB
251
239
  * "<keys>": "STRING_VALUE",
252
240
  * },
253
241
  * },
254
- * SAPOData: {
242
+ * SAPOData: { // SAPODataDestinationProperties
255
243
  * objectPath: "STRING_VALUE", // required
256
- * successResponseHandlingConfig: {
244
+ * successResponseHandlingConfig: { // SuccessResponseHandlingConfig
257
245
  * bucketPrefix: "STRING_VALUE",
258
246
  * bucketName: "STRING_VALUE",
259
247
  * },
260
248
  * idFieldNames: [
261
249
  * "STRING_VALUE",
262
250
  * ],
263
- * errorHandlingConfig: {
264
- * failOnFirstDestinationError: true || false,
265
- * bucketPrefix: "STRING_VALUE",
266
- * bucketName: "STRING_VALUE",
267
- * },
251
+ * errorHandlingConfig: "<ErrorHandlingConfig>",
268
252
  * writeOperationType: "INSERT" || "UPSERT" || "UPDATE" || "DELETE",
269
253
  * },
270
254
  * },
271
255
  * },
272
256
  * ],
273
- * tasks: [ // required
274
- * {
275
- * sourceFields: [ // required
257
+ * tasks: [ // Tasks // required
258
+ * { // Task
259
+ * sourceFields: [ // SourceFields // required
276
260
  * "STRING_VALUE",
277
261
  * ],
278
- * connectorOperator: {
262
+ * connectorOperator: { // ConnectorOperator
279
263
  * Amplitude: "BETWEEN",
280
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",
281
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",
@@ -296,13 +280,13 @@ export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataB
296
280
  * },
297
281
  * destinationField: "STRING_VALUE",
298
282
  * taskType: "Arithmetic" || "Filter" || "Map" || "Map_all" || "Mask" || "Merge" || "Passthrough" || "Truncate" || "Validate" || "Partition", // required
299
- * taskProperties: {
283
+ * taskProperties: { // TaskPropertiesMap
300
284
  * "<keys>": "STRING_VALUE",
301
285
  * },
302
286
  * },
303
287
  * ],
304
- * metadataCatalogConfig: {
305
- * glueDataCatalog: {
288
+ * metadataCatalogConfig: { // MetadataCatalogConfig
289
+ * glueDataCatalog: { // GlueDataCatalogConfig
306
290
  * roleArn: "STRING_VALUE", // required
307
291
  * databaseName: "STRING_VALUE", // required
308
292
  * tablePrefix: "STRING_VALUE", // required