@aws-sdk/client-appflow 3.169.0 → 3.170.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 (44) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/Appflow.d.ts +400 -115
  3. package/dist-types/ts3.4/AppflowClient.d.ts +261 -95
  4. package/dist-types/ts3.4/commands/CreateConnectorProfileCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/CreateFlowCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/DeleteConnectorProfileCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/DeleteFlowCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/DescribeConnectorCommand.d.ts +38 -17
  9. package/dist-types/ts3.4/commands/DescribeConnectorEntityCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/DescribeConnectorProfilesCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/DescribeConnectorsCommand.d.ts +38 -17
  12. package/dist-types/ts3.4/commands/DescribeFlowCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/DescribeFlowExecutionRecordsCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/ListConnectorEntitiesCommand.d.ts +41 -17
  15. package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +37 -17
  16. package/dist-types/ts3.4/commands/ListFlowsCommand.d.ts +34 -17
  17. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  18. package/dist-types/ts3.4/commands/RegisterConnectorCommand.d.ts +38 -17
  19. package/dist-types/ts3.4/commands/StartFlowCommand.d.ts +34 -17
  20. package/dist-types/ts3.4/commands/StopFlowCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/UnregisterConnectorCommand.d.ts +38 -17
  23. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  24. package/dist-types/ts3.4/commands/UpdateConnectorProfileCommand.d.ts +41 -17
  25. package/dist-types/ts3.4/commands/UpdateFlowCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/index.d.ts +22 -22
  27. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  28. package/dist-types/ts3.4/index.d.ts +6 -6
  29. package/dist-types/ts3.4/models/AppflowServiceException.d.ts +8 -6
  30. package/dist-types/ts3.4/models/index.d.ts +1 -1
  31. package/dist-types/ts3.4/models/models_0.d.ts +2745 -2551
  32. package/dist-types/ts3.4/pagination/DescribeConnectorProfilesPaginator.d.ts +11 -4
  33. package/dist-types/ts3.4/pagination/DescribeConnectorsPaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/DescribeFlowExecutionRecordsPaginator.d.ts +11 -4
  35. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  36. package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/ListFlowsPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/index.d.ts +6 -6
  39. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +269 -68
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  44. package/package.json +34 -34
@@ -1,2551 +1,2745 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { AppflowServiceException as __BaseException } from "./AppflowServiceException";
3
-
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
-
8
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
9
- }
10
- export declare enum AggregationType {
11
- NONE = "None",
12
- SINGLE_FILE = "SingleFile"
13
- }
14
-
15
- export interface AggregationConfig {
16
-
17
- aggregationType?: AggregationType | string;
18
- }
19
- export declare enum AmplitudeConnectorOperator {
20
- BETWEEN = "BETWEEN"
21
- }
22
-
23
- export interface AmplitudeConnectorProfileCredentials {
24
-
25
- apiKey: string | undefined;
26
-
27
- secretKey: string | undefined;
28
- }
29
-
30
- export interface AmplitudeConnectorProfileProperties {
31
- }
32
-
33
- export interface AmplitudeMetadata {
34
- }
35
-
36
- export interface AmplitudeSourceProperties {
37
-
38
- object: string | undefined;
39
- }
40
-
41
- export interface ApiKeyCredentials {
42
-
43
- apiKey: string | undefined;
44
-
45
- apiSecretKey?: string;
46
- }
47
-
48
- export interface AuthParameter {
49
-
50
- key?: string;
51
-
52
- isRequired?: boolean;
53
-
54
- label?: string;
55
-
56
- description?: string;
57
-
58
- isSensitiveField?: boolean;
59
-
60
- connectorSuppliedValues?: string[];
61
- }
62
-
63
- export interface CustomAuthConfig {
64
-
65
- customAuthenticationType?: string;
66
-
67
- authParameters?: AuthParameter[];
68
- }
69
- export declare enum OAuth2CustomPropType {
70
- AUTH_URL = "AUTH_URL",
71
- TOKEN_URL = "TOKEN_URL"
72
- }
73
-
74
- export interface OAuth2CustomParameter {
75
-
76
- key?: string;
77
-
78
- isRequired?: boolean;
79
-
80
- label?: string;
81
-
82
- description?: string;
83
-
84
- isSensitiveField?: boolean;
85
-
86
- connectorSuppliedValues?: string[];
87
-
88
- type?: OAuth2CustomPropType | string;
89
- }
90
- export declare enum OAuth2GrantType {
91
- AUTHORIZATION_CODE = "AUTHORIZATION_CODE",
92
- CLIENT_CREDENTIALS = "CLIENT_CREDENTIALS"
93
- }
94
-
95
- export interface OAuth2Defaults {
96
-
97
- oauthScopes?: string[];
98
-
99
- tokenUrls?: string[];
100
-
101
- authCodeUrls?: string[];
102
-
103
- oauth2GrantTypesSupported?: (OAuth2GrantType | string)[];
104
-
105
- oauth2CustomProperties?: OAuth2CustomParameter[];
106
- }
107
-
108
- export interface AuthenticationConfig {
109
-
110
- isBasicAuthSupported?: boolean;
111
-
112
- isApiKeyAuthSupported?: boolean;
113
-
114
- isOAuth2Supported?: boolean;
115
-
116
- isCustomAuthSupported?: boolean;
117
-
118
- oAuth2Defaults?: OAuth2Defaults;
119
-
120
- customAuthConfigs?: CustomAuthConfig[];
121
- }
122
- export declare enum AuthenticationType {
123
- APIKEY = "APIKEY",
124
- BASIC = "BASIC",
125
- CUSTOM = "CUSTOM",
126
- OAUTH2 = "OAUTH2"
127
- }
128
-
129
- export interface BasicAuthCredentials {
130
-
131
- username: string | undefined;
132
-
133
- password: string | undefined;
134
- }
135
-
136
- export declare class ConflictException extends __BaseException {
137
- readonly name: "ConflictException";
138
- readonly $fault: "client";
139
-
140
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
141
- }
142
- export declare enum ConnectionMode {
143
- PRIVATE = "Private",
144
- PUBLIC = "Public"
145
- }
146
-
147
- export declare class ConnectorAuthenticationException extends __BaseException {
148
- readonly name: "ConnectorAuthenticationException";
149
- readonly $fault: "client";
150
-
151
- constructor(opts: __ExceptionOptionType<ConnectorAuthenticationException, __BaseException>);
152
- }
153
-
154
- export interface CustomerProfilesMetadata {
155
- }
156
-
157
- export interface DatadogMetadata {
158
- }
159
-
160
- export interface DynatraceMetadata {
161
- }
162
-
163
- export interface EventBridgeMetadata {
164
- }
165
-
166
- export interface GoogleAnalyticsMetadata {
167
-
168
- oAuthScopes?: string[];
169
- }
170
-
171
- export interface HoneycodeMetadata {
172
-
173
- oAuthScopes?: string[];
174
- }
175
-
176
- export interface InforNexusMetadata {
177
- }
178
-
179
- export interface MarketoMetadata {
180
- }
181
-
182
- export interface RedshiftMetadata {
183
- }
184
-
185
- export interface S3Metadata {
186
- }
187
-
188
- export interface SalesforceMetadata {
189
-
190
- oAuthScopes?: string[];
191
- }
192
-
193
- export interface SAPODataMetadata {
194
- }
195
-
196
- export interface ServiceNowMetadata {
197
- }
198
-
199
- export interface SingularMetadata {
200
- }
201
-
202
- export interface SlackMetadata {
203
-
204
- oAuthScopes?: string[];
205
- }
206
-
207
- export interface SnowflakeMetadata {
208
-
209
- supportedRegions?: string[];
210
- }
211
-
212
- export interface TrendmicroMetadata {
213
- }
214
-
215
- export interface UpsolverMetadata {
216
- }
217
-
218
- export interface VeevaMetadata {
219
- }
220
-
221
- export interface ZendeskMetadata {
222
-
223
- oAuthScopes?: string[];
224
- }
225
-
226
- export interface ConnectorMetadata {
227
-
228
- Amplitude?: AmplitudeMetadata;
229
-
230
- Datadog?: DatadogMetadata;
231
-
232
- Dynatrace?: DynatraceMetadata;
233
-
234
- GoogleAnalytics?: GoogleAnalyticsMetadata;
235
-
236
- InforNexus?: InforNexusMetadata;
237
-
238
- Marketo?: MarketoMetadata;
239
-
240
- Redshift?: RedshiftMetadata;
241
-
242
- S3?: S3Metadata;
243
-
244
- Salesforce?: SalesforceMetadata;
245
-
246
- ServiceNow?: ServiceNowMetadata;
247
-
248
- Singular?: SingularMetadata;
249
-
250
- Slack?: SlackMetadata;
251
-
252
- Snowflake?: SnowflakeMetadata;
253
-
254
- Trendmicro?: TrendmicroMetadata;
255
-
256
- Veeva?: VeevaMetadata;
257
-
258
- Zendesk?: ZendeskMetadata;
259
-
260
- EventBridge?: EventBridgeMetadata;
261
-
262
- Upsolver?: UpsolverMetadata;
263
-
264
- CustomerProfiles?: CustomerProfilesMetadata;
265
-
266
- Honeycode?: HoneycodeMetadata;
267
-
268
- SAPOData?: SAPODataMetadata;
269
- }
270
-
271
- export interface LambdaConnectorProvisioningConfig {
272
-
273
- lambdaArn: string | undefined;
274
- }
275
-
276
- export interface ConnectorProvisioningConfig {
277
-
278
- lambda?: LambdaConnectorProvisioningConfig;
279
- }
280
- export declare enum ConnectorProvisioningType {
281
- LAMBDA = "LAMBDA"
282
- }
283
-
284
- export interface ConnectorRuntimeSetting {
285
-
286
- key?: string;
287
-
288
- dataType?: string;
289
-
290
- isRequired?: boolean;
291
-
292
- label?: string;
293
-
294
- description?: string;
295
-
296
- scope?: string;
297
-
298
- connectorSuppliedValueOptions?: string[];
299
- }
300
- export declare enum ConnectorType {
301
- AMPLITUDE = "Amplitude",
302
- CUSTOMCONNECTOR = "CustomConnector",
303
- CUSTOMERPROFILES = "CustomerProfiles",
304
- DATADOG = "Datadog",
305
- DYNATRACE = "Dynatrace",
306
- EVENTBRIDGE = "EventBridge",
307
- GOOGLEANALYTICS = "Googleanalytics",
308
- HONEYCODE = "Honeycode",
309
- INFORNEXUS = "Infornexus",
310
- LOOKOUTMETRICS = "LookoutMetrics",
311
- MARKETO = "Marketo",
312
- REDSHIFT = "Redshift",
313
- S3 = "S3",
314
- SALESFORCE = "Salesforce",
315
- SAPODATA = "SAPOData",
316
- SERVICENOW = "Servicenow",
317
- SINGULAR = "Singular",
318
- SLACK = "Slack",
319
- SNOWFLAKE = "Snowflake",
320
- TRENDMICRO = "Trendmicro",
321
- UPSOLVER = "Upsolver",
322
- VEEVA = "Veeva",
323
- ZENDESK = "Zendesk"
324
- }
325
- export declare enum Operators {
326
- ADDITION = "ADDITION",
327
- BETWEEN = "BETWEEN",
328
- CONTAINS = "CONTAINS",
329
- DIVISION = "DIVISION",
330
- EQUAL_TO = "EQUAL_TO",
331
- GREATER_THAN = "GREATER_THAN",
332
- GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
333
- LESS_THAN = "LESS_THAN",
334
- LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
335
- MASK_ALL = "MASK_ALL",
336
- MASK_FIRST_N = "MASK_FIRST_N",
337
- MASK_LAST_N = "MASK_LAST_N",
338
- MULTIPLICATION = "MULTIPLICATION",
339
- NOT_EQUAL_TO = "NOT_EQUAL_TO",
340
- NO_OP = "NO_OP",
341
- PROJECTION = "PROJECTION",
342
- SUBTRACTION = "SUBTRACTION",
343
- VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
344
- VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
345
- VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
346
- VALIDATE_NUMERIC = "VALIDATE_NUMERIC"
347
- }
348
- export declare enum ScheduleFrequencyType {
349
- BYMINUTE = "BYMINUTE",
350
- DAILY = "DAILY",
351
- HOURLY = "HOURLY",
352
- MONTHLY = "MONTHLY",
353
- ONCE = "ONCE",
354
- WEEKLY = "WEEKLY"
355
- }
356
- export declare enum TriggerType {
357
- EVENT = "Event",
358
- ONDEMAND = "OnDemand",
359
- SCHEDULED = "Scheduled"
360
- }
361
- export declare enum WriteOperationType {
362
- DELETE = "DELETE",
363
- INSERT = "INSERT",
364
- UPDATE = "UPDATE",
365
- UPSERT = "UPSERT"
366
- }
367
-
368
- export interface ConnectorConfiguration {
369
-
370
- canUseAsSource?: boolean;
371
-
372
- canUseAsDestination?: boolean;
373
-
374
- supportedDestinationConnectors?: (ConnectorType | string)[];
375
-
376
- supportedSchedulingFrequencies?: (ScheduleFrequencyType | string)[];
377
-
378
- isPrivateLinkEnabled?: boolean;
379
-
380
- isPrivateLinkEndpointUrlRequired?: boolean;
381
-
382
- supportedTriggerTypes?: (TriggerType | string)[];
383
-
384
- connectorMetadata?: ConnectorMetadata;
385
-
386
- connectorType?: ConnectorType | string;
387
-
388
- connectorLabel?: string;
389
-
390
- connectorDescription?: string;
391
-
392
- connectorOwner?: string;
393
-
394
- connectorName?: string;
395
-
396
- connectorVersion?: string;
397
-
398
- connectorArn?: string;
399
-
400
- connectorModes?: string[];
401
-
402
- authenticationConfig?: AuthenticationConfig;
403
-
404
- connectorRuntimeSettings?: ConnectorRuntimeSetting[];
405
-
406
- supportedApiVersions?: string[];
407
-
408
- supportedOperators?: (Operators | string)[];
409
-
410
- supportedWriteOperations?: (WriteOperationType | string)[];
411
-
412
- connectorProvisioningType?: ConnectorProvisioningType | string;
413
-
414
- connectorProvisioningConfig?: ConnectorProvisioningConfig;
415
-
416
- logoURL?: string;
417
-
418
- registeredAt?: Date;
419
-
420
- registeredBy?: string;
421
- }
422
-
423
- export interface ConnectorDetail {
424
-
425
- connectorDescription?: string;
426
-
427
- connectorName?: string;
428
-
429
- connectorOwner?: string;
430
-
431
- connectorVersion?: string;
432
-
433
- applicationType?: string;
434
-
435
- connectorType?: ConnectorType | string;
436
-
437
- connectorLabel?: string;
438
-
439
- registeredAt?: Date;
440
-
441
- registeredBy?: string;
442
-
443
- connectorProvisioningType?: ConnectorProvisioningType | string;
444
-
445
- connectorModes?: string[];
446
- }
447
-
448
- export interface ConnectorEntity {
449
-
450
- name: string | undefined;
451
-
452
- label?: string;
453
-
454
- hasNestedEntities?: boolean;
455
- }
456
-
457
- export interface DestinationFieldProperties {
458
-
459
- isCreatable?: boolean;
460
-
461
- isNullable?: boolean;
462
-
463
- isUpsertable?: boolean;
464
-
465
- isUpdatable?: boolean;
466
-
467
- isDefaultedOnCreate?: boolean;
468
-
469
- supportedWriteOperations?: (WriteOperationType | string)[];
470
- }
471
-
472
- export interface SourceFieldProperties {
473
-
474
- isRetrievable?: boolean;
475
-
476
- isQueryable?: boolean;
477
-
478
- isTimestampFieldForIncrementalQueries?: boolean;
479
- }
480
-
481
- export interface Range {
482
-
483
- maximum?: number;
484
-
485
- minimum?: number;
486
- }
487
- export declare enum Operator {
488
- ADDITION = "ADDITION",
489
- BETWEEN = "BETWEEN",
490
- CONTAINS = "CONTAINS",
491
- DIVISION = "DIVISION",
492
- EQUAL_TO = "EQUAL_TO",
493
- GREATER_THAN = "GREATER_THAN",
494
- GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
495
- LESS_THAN = "LESS_THAN",
496
- LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
497
- MASK_ALL = "MASK_ALL",
498
- MASK_FIRST_N = "MASK_FIRST_N",
499
- MASK_LAST_N = "MASK_LAST_N",
500
- MULTIPLICATION = "MULTIPLICATION",
501
- NOT_EQUAL_TO = "NOT_EQUAL_TO",
502
- NO_OP = "NO_OP",
503
- PROJECTION = "PROJECTION",
504
- SUBTRACTION = "SUBTRACTION",
505
- VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
506
- VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
507
- VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
508
- VALIDATE_NUMERIC = "VALIDATE_NUMERIC"
509
- }
510
-
511
- export interface FieldTypeDetails {
512
-
513
- fieldType: string | undefined;
514
-
515
- filterOperators: (Operator | string)[] | undefined;
516
-
517
- supportedValues?: string[];
518
-
519
- valueRegexPattern?: string;
520
-
521
- supportedDateFormat?: string;
522
-
523
- fieldValueRange?: Range;
524
-
525
- fieldLengthRange?: Range;
526
- }
527
-
528
- export interface SupportedFieldTypeDetails {
529
-
530
- v1: FieldTypeDetails | undefined;
531
- }
532
-
533
- export interface ConnectorEntityField {
534
-
535
- identifier: string | undefined;
536
-
537
- parentIdentifier?: string;
538
-
539
- label?: string;
540
-
541
- isPrimaryKey?: boolean;
542
-
543
- defaultValue?: string;
544
-
545
- isDeprecated?: boolean;
546
-
547
- supportedFieldTypeDetails?: SupportedFieldTypeDetails;
548
-
549
- description?: string;
550
-
551
- sourceProperties?: SourceFieldProperties;
552
-
553
- destinationProperties?: DestinationFieldProperties;
554
-
555
- customProperties?: Record<string, string>;
556
- }
557
-
558
- export interface ConnectorOAuthRequest {
559
-
560
- authCode?: string;
561
-
562
- redirectUri?: string;
563
- }
564
- export declare enum DatadogConnectorOperator {
565
- ADDITION = "ADDITION",
566
- BETWEEN = "BETWEEN",
567
- DIVISION = "DIVISION",
568
- EQUAL_TO = "EQUAL_TO",
569
- MASK_ALL = "MASK_ALL",
570
- MASK_FIRST_N = "MASK_FIRST_N",
571
- MASK_LAST_N = "MASK_LAST_N",
572
- MULTIPLICATION = "MULTIPLICATION",
573
- NO_OP = "NO_OP",
574
- PROJECTION = "PROJECTION",
575
- SUBTRACTION = "SUBTRACTION",
576
- VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
577
- VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
578
- VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
579
- VALIDATE_NUMERIC = "VALIDATE_NUMERIC"
580
- }
581
- export declare enum DynatraceConnectorOperator {
582
- ADDITION = "ADDITION",
583
- BETWEEN = "BETWEEN",
584
- DIVISION = "DIVISION",
585
- EQUAL_TO = "EQUAL_TO",
586
- MASK_ALL = "MASK_ALL",
587
- MASK_FIRST_N = "MASK_FIRST_N",
588
- MASK_LAST_N = "MASK_LAST_N",
589
- MULTIPLICATION = "MULTIPLICATION",
590
- NO_OP = "NO_OP",
591
- PROJECTION = "PROJECTION",
592
- SUBTRACTION = "SUBTRACTION",
593
- VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
594
- VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
595
- VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
596
- VALIDATE_NUMERIC = "VALIDATE_NUMERIC"
597
- }
598
- export declare enum GoogleAnalyticsConnectorOperator {
599
- BETWEEN = "BETWEEN",
600
- PROJECTION = "PROJECTION"
601
- }
602
- export declare enum InforNexusConnectorOperator {
603
- ADDITION = "ADDITION",
604
- BETWEEN = "BETWEEN",
605
- DIVISION = "DIVISION",
606
- EQUAL_TO = "EQUAL_TO",
607
- MASK_ALL = "MASK_ALL",
608
- MASK_FIRST_N = "MASK_FIRST_N",
609
- MASK_LAST_N = "MASK_LAST_N",
610
- MULTIPLICATION = "MULTIPLICATION",
611
- NO_OP = "NO_OP",
612
- PROJECTION = "PROJECTION",
613
- SUBTRACTION = "SUBTRACTION",
614
- VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
615
- VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
616
- VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
617
- VALIDATE_NUMERIC = "VALIDATE_NUMERIC"
618
- }
619
- export declare enum MarketoConnectorOperator {
620
- ADDITION = "ADDITION",
621
- BETWEEN = "BETWEEN",
622
- DIVISION = "DIVISION",
623
- GREATER_THAN = "GREATER_THAN",
624
- LESS_THAN = "LESS_THAN",
625
- MASK_ALL = "MASK_ALL",
626
- MASK_FIRST_N = "MASK_FIRST_N",
627
- MASK_LAST_N = "MASK_LAST_N",
628
- MULTIPLICATION = "MULTIPLICATION",
629
- NO_OP = "NO_OP",
630
- PROJECTION = "PROJECTION",
631
- SUBTRACTION = "SUBTRACTION",
632
- VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
633
- VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
634
- VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
635
- VALIDATE_NUMERIC = "VALIDATE_NUMERIC"
636
- }
637
- export declare enum S3ConnectorOperator {
638
- ADDITION = "ADDITION",
639
- BETWEEN = "BETWEEN",
640
- DIVISION = "DIVISION",
641
- EQUAL_TO = "EQUAL_TO",
642
- GREATER_THAN = "GREATER_THAN",
643
- GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
644
- LESS_THAN = "LESS_THAN",
645
- LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
646
- MASK_ALL = "MASK_ALL",
647
- MASK_FIRST_N = "MASK_FIRST_N",
648
- MASK_LAST_N = "MASK_LAST_N",
649
- MULTIPLICATION = "MULTIPLICATION",
650
- NOT_EQUAL_TO = "NOT_EQUAL_TO",
651
- NO_OP = "NO_OP",
652
- PROJECTION = "PROJECTION",
653
- SUBTRACTION = "SUBTRACTION",
654
- VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
655
- VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
656
- VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
657
- VALIDATE_NUMERIC = "VALIDATE_NUMERIC"
658
- }
659
- export declare enum SalesforceConnectorOperator {
660
- ADDITION = "ADDITION",
661
- BETWEEN = "BETWEEN",
662
- CONTAINS = "CONTAINS",
663
- DIVISION = "DIVISION",
664
- EQUAL_TO = "EQUAL_TO",
665
- GREATER_THAN = "GREATER_THAN",
666
- GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
667
- LESS_THAN = "LESS_THAN",
668
- LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
669
- MASK_ALL = "MASK_ALL",
670
- MASK_FIRST_N = "MASK_FIRST_N",
671
- MASK_LAST_N = "MASK_LAST_N",
672
- MULTIPLICATION = "MULTIPLICATION",
673
- NOT_EQUAL_TO = "NOT_EQUAL_TO",
674
- NO_OP = "NO_OP",
675
- PROJECTION = "PROJECTION",
676
- SUBTRACTION = "SUBTRACTION",
677
- VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
678
- VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
679
- VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
680
- VALIDATE_NUMERIC = "VALIDATE_NUMERIC"
681
- }
682
- export declare enum SAPODataConnectorOperator {
683
- ADDITION = "ADDITION",
684
- BETWEEN = "BETWEEN",
685
- CONTAINS = "CONTAINS",
686
- DIVISION = "DIVISION",
687
- EQUAL_TO = "EQUAL_TO",
688
- GREATER_THAN = "GREATER_THAN",
689
- GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
690
- LESS_THAN = "LESS_THAN",
691
- LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
692
- MASK_ALL = "MASK_ALL",
693
- MASK_FIRST_N = "MASK_FIRST_N",
694
- MASK_LAST_N = "MASK_LAST_N",
695
- MULTIPLICATION = "MULTIPLICATION",
696
- NOT_EQUAL_TO = "NOT_EQUAL_TO",
697
- NO_OP = "NO_OP",
698
- PROJECTION = "PROJECTION",
699
- SUBTRACTION = "SUBTRACTION",
700
- VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
701
- VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
702
- VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
703
- VALIDATE_NUMERIC = "VALIDATE_NUMERIC"
704
- }
705
- export declare enum ServiceNowConnectorOperator {
706
- ADDITION = "ADDITION",
707
- BETWEEN = "BETWEEN",
708
- CONTAINS = "CONTAINS",
709
- DIVISION = "DIVISION",
710
- EQUAL_TO = "EQUAL_TO",
711
- GREATER_THAN = "GREATER_THAN",
712
- GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
713
- LESS_THAN = "LESS_THAN",
714
- LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
715
- MASK_ALL = "MASK_ALL",
716
- MASK_FIRST_N = "MASK_FIRST_N",
717
- MASK_LAST_N = "MASK_LAST_N",
718
- MULTIPLICATION = "MULTIPLICATION",
719
- NOT_EQUAL_TO = "NOT_EQUAL_TO",
720
- NO_OP = "NO_OP",
721
- PROJECTION = "PROJECTION",
722
- SUBTRACTION = "SUBTRACTION",
723
- VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
724
- VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
725
- VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
726
- VALIDATE_NUMERIC = "VALIDATE_NUMERIC"
727
- }
728
- export declare enum SingularConnectorOperator {
729
- ADDITION = "ADDITION",
730
- DIVISION = "DIVISION",
731
- EQUAL_TO = "EQUAL_TO",
732
- MASK_ALL = "MASK_ALL",
733
- MASK_FIRST_N = "MASK_FIRST_N",
734
- MASK_LAST_N = "MASK_LAST_N",
735
- MULTIPLICATION = "MULTIPLICATION",
736
- NO_OP = "NO_OP",
737
- PROJECTION = "PROJECTION",
738
- SUBTRACTION = "SUBTRACTION",
739
- VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
740
- VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
741
- VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
742
- VALIDATE_NUMERIC = "VALIDATE_NUMERIC"
743
- }
744
- export declare enum SlackConnectorOperator {
745
- ADDITION = "ADDITION",
746
- BETWEEN = "BETWEEN",
747
- DIVISION = "DIVISION",
748
- EQUAL_TO = "EQUAL_TO",
749
- GREATER_THAN = "GREATER_THAN",
750
- GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
751
- LESS_THAN = "LESS_THAN",
752
- LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
753
- MASK_ALL = "MASK_ALL",
754
- MASK_FIRST_N = "MASK_FIRST_N",
755
- MASK_LAST_N = "MASK_LAST_N",
756
- MULTIPLICATION = "MULTIPLICATION",
757
- NO_OP = "NO_OP",
758
- PROJECTION = "PROJECTION",
759
- SUBTRACTION = "SUBTRACTION",
760
- VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
761
- VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
762
- VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
763
- VALIDATE_NUMERIC = "VALIDATE_NUMERIC"
764
- }
765
- export declare enum TrendmicroConnectorOperator {
766
- ADDITION = "ADDITION",
767
- DIVISION = "DIVISION",
768
- EQUAL_TO = "EQUAL_TO",
769
- MASK_ALL = "MASK_ALL",
770
- MASK_FIRST_N = "MASK_FIRST_N",
771
- MASK_LAST_N = "MASK_LAST_N",
772
- MULTIPLICATION = "MULTIPLICATION",
773
- NO_OP = "NO_OP",
774
- PROJECTION = "PROJECTION",
775
- SUBTRACTION = "SUBTRACTION",
776
- VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
777
- VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
778
- VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
779
- VALIDATE_NUMERIC = "VALIDATE_NUMERIC"
780
- }
781
- export declare enum VeevaConnectorOperator {
782
- ADDITION = "ADDITION",
783
- BETWEEN = "BETWEEN",
784
- CONTAINS = "CONTAINS",
785
- DIVISION = "DIVISION",
786
- EQUAL_TO = "EQUAL_TO",
787
- GREATER_THAN = "GREATER_THAN",
788
- GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
789
- LESS_THAN = "LESS_THAN",
790
- LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
791
- MASK_ALL = "MASK_ALL",
792
- MASK_FIRST_N = "MASK_FIRST_N",
793
- MASK_LAST_N = "MASK_LAST_N",
794
- MULTIPLICATION = "MULTIPLICATION",
795
- NOT_EQUAL_TO = "NOT_EQUAL_TO",
796
- NO_OP = "NO_OP",
797
- PROJECTION = "PROJECTION",
798
- SUBTRACTION = "SUBTRACTION",
799
- VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
800
- VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
801
- VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
802
- VALIDATE_NUMERIC = "VALIDATE_NUMERIC"
803
- }
804
- export declare enum ZendeskConnectorOperator {
805
- ADDITION = "ADDITION",
806
- DIVISION = "DIVISION",
807
- GREATER_THAN = "GREATER_THAN",
808
- MASK_ALL = "MASK_ALL",
809
- MASK_FIRST_N = "MASK_FIRST_N",
810
- MASK_LAST_N = "MASK_LAST_N",
811
- MULTIPLICATION = "MULTIPLICATION",
812
- NO_OP = "NO_OP",
813
- PROJECTION = "PROJECTION",
814
- SUBTRACTION = "SUBTRACTION",
815
- VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
816
- VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
817
- VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
818
- VALIDATE_NUMERIC = "VALIDATE_NUMERIC"
819
- }
820
-
821
- export interface ConnectorOperator {
822
-
823
- Amplitude?: AmplitudeConnectorOperator | string;
824
-
825
- Datadog?: DatadogConnectorOperator | string;
826
-
827
- Dynatrace?: DynatraceConnectorOperator | string;
828
-
829
- GoogleAnalytics?: GoogleAnalyticsConnectorOperator | string;
830
-
831
- InforNexus?: InforNexusConnectorOperator | string;
832
-
833
- Marketo?: MarketoConnectorOperator | string;
834
-
835
- S3?: S3ConnectorOperator | string;
836
-
837
- Salesforce?: SalesforceConnectorOperator | string;
838
-
839
- ServiceNow?: ServiceNowConnectorOperator | string;
840
-
841
- Singular?: SingularConnectorOperator | string;
842
-
843
- Slack?: SlackConnectorOperator | string;
844
-
845
- Trendmicro?: TrendmicroConnectorOperator | string;
846
-
847
- Veeva?: VeevaConnectorOperator | string;
848
-
849
- Zendesk?: ZendeskConnectorOperator | string;
850
-
851
- SAPOData?: SAPODataConnectorOperator | string;
852
-
853
- CustomConnector?: Operator | string;
854
- }
855
-
856
- export interface OAuth2Properties {
857
-
858
- tokenUrl: string | undefined;
859
-
860
- oAuth2GrantType: OAuth2GrantType | string | undefined;
861
-
862
- tokenUrlCustomProperties?: Record<string, string>;
863
- }
864
-
865
- export interface CustomConnectorProfileProperties {
866
-
867
- profileProperties?: Record<string, string>;
868
-
869
- oAuth2Properties?: OAuth2Properties;
870
- }
871
-
872
- export interface DatadogConnectorProfileProperties {
873
-
874
- instanceUrl: string | undefined;
875
- }
876
-
877
- export interface DynatraceConnectorProfileProperties {
878
-
879
- instanceUrl: string | undefined;
880
- }
881
-
882
- export interface GoogleAnalyticsConnectorProfileProperties {
883
- }
884
-
885
- export interface HoneycodeConnectorProfileProperties {
886
- }
887
-
888
- export interface InforNexusConnectorProfileProperties {
889
-
890
- instanceUrl: string | undefined;
891
- }
892
-
893
- export interface MarketoConnectorProfileProperties {
894
-
895
- instanceUrl: string | undefined;
896
- }
897
-
898
- export interface RedshiftConnectorProfileProperties {
899
-
900
- databaseUrl: string | undefined;
901
-
902
- bucketName: string | undefined;
903
-
904
- bucketPrefix?: string;
905
-
906
- roleArn: string | undefined;
907
- }
908
-
909
- export interface SalesforceConnectorProfileProperties {
910
-
911
- instanceUrl?: string;
912
-
913
- isSandboxEnvironment?: boolean;
914
- }
915
-
916
- export interface OAuthProperties {
917
-
918
- tokenUrl: string | undefined;
919
-
920
- authCodeUrl: string | undefined;
921
-
922
- oAuthScopes: string[] | undefined;
923
- }
924
-
925
- export interface SAPODataConnectorProfileProperties {
926
-
927
- applicationHostUrl: string | undefined;
928
-
929
- applicationServicePath: string | undefined;
930
-
931
- portNumber: number | undefined;
932
-
933
- clientNumber: string | undefined;
934
-
935
- logonLanguage?: string;
936
-
937
- privateLinkServiceName?: string;
938
-
939
- oAuthProperties?: OAuthProperties;
940
- }
941
-
942
- export interface ServiceNowConnectorProfileProperties {
943
-
944
- instanceUrl: string | undefined;
945
- }
946
-
947
- export interface SingularConnectorProfileProperties {
948
- }
949
-
950
- export interface SlackConnectorProfileProperties {
951
-
952
- instanceUrl: string | undefined;
953
- }
954
-
955
- export interface SnowflakeConnectorProfileProperties {
956
-
957
- warehouse: string | undefined;
958
-
959
- stage: string | undefined;
960
-
961
- bucketName: string | undefined;
962
-
963
- bucketPrefix?: string;
964
-
965
- privateLinkServiceName?: string;
966
-
967
- accountName?: string;
968
-
969
- region?: string;
970
- }
971
-
972
- export interface TrendmicroConnectorProfileProperties {
973
- }
974
-
975
- export interface VeevaConnectorProfileProperties {
976
-
977
- instanceUrl: string | undefined;
978
- }
979
-
980
- export interface ZendeskConnectorProfileProperties {
981
-
982
- instanceUrl: string | undefined;
983
- }
984
-
985
- export interface ConnectorProfileProperties {
986
-
987
- Amplitude?: AmplitudeConnectorProfileProperties;
988
-
989
- Datadog?: DatadogConnectorProfileProperties;
990
-
991
- Dynatrace?: DynatraceConnectorProfileProperties;
992
-
993
- GoogleAnalytics?: GoogleAnalyticsConnectorProfileProperties;
994
-
995
- Honeycode?: HoneycodeConnectorProfileProperties;
996
-
997
- InforNexus?: InforNexusConnectorProfileProperties;
998
-
999
- Marketo?: MarketoConnectorProfileProperties;
1000
-
1001
- Redshift?: RedshiftConnectorProfileProperties;
1002
-
1003
- Salesforce?: SalesforceConnectorProfileProperties;
1004
-
1005
- ServiceNow?: ServiceNowConnectorProfileProperties;
1006
-
1007
- Singular?: SingularConnectorProfileProperties;
1008
-
1009
- Slack?: SlackConnectorProfileProperties;
1010
-
1011
- Snowflake?: SnowflakeConnectorProfileProperties;
1012
-
1013
- Trendmicro?: TrendmicroConnectorProfileProperties;
1014
-
1015
- Veeva?: VeevaConnectorProfileProperties;
1016
-
1017
- Zendesk?: ZendeskConnectorProfileProperties;
1018
-
1019
- SAPOData?: SAPODataConnectorProfileProperties;
1020
-
1021
- CustomConnector?: CustomConnectorProfileProperties;
1022
- }
1023
- export declare enum PrivateConnectionProvisioningFailureCause {
1024
- ACCESS_DENIED = "ACCESS_DENIED",
1025
- CONNECTOR_AUTHENTICATION = "CONNECTOR_AUTHENTICATION",
1026
- CONNECTOR_SERVER = "CONNECTOR_SERVER",
1027
- INTERNAL_SERVER = "INTERNAL_SERVER",
1028
- VALIDATION = "VALIDATION"
1029
- }
1030
- export declare enum PrivateConnectionProvisioningStatus {
1031
- CREATED = "CREATED",
1032
- FAILED = "FAILED",
1033
- PENDING = "PENDING"
1034
- }
1035
-
1036
- export interface PrivateConnectionProvisioningState {
1037
-
1038
- status?: PrivateConnectionProvisioningStatus | string;
1039
-
1040
- failureMessage?: string;
1041
-
1042
- failureCause?: PrivateConnectionProvisioningFailureCause | string;
1043
- }
1044
-
1045
- export interface ConnectorProfile {
1046
-
1047
- connectorProfileArn?: string;
1048
-
1049
- connectorProfileName?: string;
1050
-
1051
- connectorType?: ConnectorType | string;
1052
-
1053
- connectorLabel?: string;
1054
-
1055
- connectionMode?: ConnectionMode | string;
1056
-
1057
- credentialsArn?: string;
1058
-
1059
- connectorProfileProperties?: ConnectorProfileProperties;
1060
-
1061
- createdAt?: Date;
1062
-
1063
- lastUpdatedAt?: Date;
1064
-
1065
- privateConnectionProvisioningState?: PrivateConnectionProvisioningState;
1066
- }
1067
-
1068
- export interface CustomAuthCredentials {
1069
-
1070
- customAuthenticationType: string | undefined;
1071
-
1072
- credentialsMap?: Record<string, string>;
1073
- }
1074
-
1075
- export interface OAuth2Credentials {
1076
-
1077
- clientId?: string;
1078
-
1079
- clientSecret?: string;
1080
-
1081
- accessToken?: string;
1082
-
1083
- refreshToken?: string;
1084
-
1085
- oAuthRequest?: ConnectorOAuthRequest;
1086
- }
1087
-
1088
- export interface CustomConnectorProfileCredentials {
1089
-
1090
- authenticationType: AuthenticationType | string | undefined;
1091
-
1092
- basic?: BasicAuthCredentials;
1093
-
1094
- oauth2?: OAuth2Credentials;
1095
-
1096
- apiKey?: ApiKeyCredentials;
1097
-
1098
- custom?: CustomAuthCredentials;
1099
- }
1100
-
1101
- export interface DatadogConnectorProfileCredentials {
1102
-
1103
- apiKey: string | undefined;
1104
-
1105
- applicationKey: string | undefined;
1106
- }
1107
-
1108
- export interface DynatraceConnectorProfileCredentials {
1109
-
1110
- apiToken: string | undefined;
1111
- }
1112
-
1113
- export interface GoogleAnalyticsConnectorProfileCredentials {
1114
-
1115
- clientId: string | undefined;
1116
-
1117
- clientSecret: string | undefined;
1118
-
1119
- accessToken?: string;
1120
-
1121
- refreshToken?: string;
1122
-
1123
- oAuthRequest?: ConnectorOAuthRequest;
1124
- }
1125
-
1126
- export interface HoneycodeConnectorProfileCredentials {
1127
-
1128
- accessToken?: string;
1129
-
1130
- refreshToken?: string;
1131
-
1132
- oAuthRequest?: ConnectorOAuthRequest;
1133
- }
1134
-
1135
- export interface InforNexusConnectorProfileCredentials {
1136
-
1137
- accessKeyId: string | undefined;
1138
-
1139
- userId: string | undefined;
1140
-
1141
- secretAccessKey: string | undefined;
1142
-
1143
- datakey: string | undefined;
1144
- }
1145
-
1146
- export interface MarketoConnectorProfileCredentials {
1147
-
1148
- clientId: string | undefined;
1149
-
1150
- clientSecret: string | undefined;
1151
-
1152
- accessToken?: string;
1153
-
1154
- oAuthRequest?: ConnectorOAuthRequest;
1155
- }
1156
-
1157
- export interface RedshiftConnectorProfileCredentials {
1158
-
1159
- username: string | undefined;
1160
-
1161
- password: string | undefined;
1162
- }
1163
-
1164
- export interface SalesforceConnectorProfileCredentials {
1165
-
1166
- accessToken?: string;
1167
-
1168
- refreshToken?: string;
1169
-
1170
- oAuthRequest?: ConnectorOAuthRequest;
1171
-
1172
- clientCredentialsArn?: string;
1173
- }
1174
-
1175
- export interface OAuthCredentials {
1176
-
1177
- clientId: string | undefined;
1178
-
1179
- clientSecret: string | undefined;
1180
-
1181
- accessToken?: string;
1182
-
1183
- refreshToken?: string;
1184
-
1185
- oAuthRequest?: ConnectorOAuthRequest;
1186
- }
1187
-
1188
- export interface SAPODataConnectorProfileCredentials {
1189
-
1190
- basicAuthCredentials?: BasicAuthCredentials;
1191
-
1192
- oAuthCredentials?: OAuthCredentials;
1193
- }
1194
-
1195
- export interface ServiceNowConnectorProfileCredentials {
1196
-
1197
- username: string | undefined;
1198
-
1199
- password: string | undefined;
1200
- }
1201
-
1202
- export interface SingularConnectorProfileCredentials {
1203
-
1204
- apiKey: string | undefined;
1205
- }
1206
-
1207
- export interface SlackConnectorProfileCredentials {
1208
-
1209
- clientId: string | undefined;
1210
-
1211
- clientSecret: string | undefined;
1212
-
1213
- accessToken?: string;
1214
-
1215
- oAuthRequest?: ConnectorOAuthRequest;
1216
- }
1217
-
1218
- export interface SnowflakeConnectorProfileCredentials {
1219
-
1220
- username: string | undefined;
1221
-
1222
- password: string | undefined;
1223
- }
1224
-
1225
- export interface TrendmicroConnectorProfileCredentials {
1226
-
1227
- apiSecretKey: string | undefined;
1228
- }
1229
-
1230
- export interface VeevaConnectorProfileCredentials {
1231
-
1232
- username: string | undefined;
1233
-
1234
- password: string | undefined;
1235
- }
1236
-
1237
- export interface ZendeskConnectorProfileCredentials {
1238
-
1239
- clientId: string | undefined;
1240
-
1241
- clientSecret: string | undefined;
1242
-
1243
- accessToken?: string;
1244
-
1245
- oAuthRequest?: ConnectorOAuthRequest;
1246
- }
1247
-
1248
- export interface ConnectorProfileCredentials {
1249
-
1250
- Amplitude?: AmplitudeConnectorProfileCredentials;
1251
-
1252
- Datadog?: DatadogConnectorProfileCredentials;
1253
-
1254
- Dynatrace?: DynatraceConnectorProfileCredentials;
1255
-
1256
- GoogleAnalytics?: GoogleAnalyticsConnectorProfileCredentials;
1257
-
1258
- Honeycode?: HoneycodeConnectorProfileCredentials;
1259
-
1260
- InforNexus?: InforNexusConnectorProfileCredentials;
1261
-
1262
- Marketo?: MarketoConnectorProfileCredentials;
1263
-
1264
- Redshift?: RedshiftConnectorProfileCredentials;
1265
-
1266
- Salesforce?: SalesforceConnectorProfileCredentials;
1267
-
1268
- ServiceNow?: ServiceNowConnectorProfileCredentials;
1269
-
1270
- Singular?: SingularConnectorProfileCredentials;
1271
-
1272
- Slack?: SlackConnectorProfileCredentials;
1273
-
1274
- Snowflake?: SnowflakeConnectorProfileCredentials;
1275
-
1276
- Trendmicro?: TrendmicroConnectorProfileCredentials;
1277
-
1278
- Veeva?: VeevaConnectorProfileCredentials;
1279
-
1280
- Zendesk?: ZendeskConnectorProfileCredentials;
1281
-
1282
- SAPOData?: SAPODataConnectorProfileCredentials;
1283
-
1284
- CustomConnector?: CustomConnectorProfileCredentials;
1285
- }
1286
-
1287
- export interface ConnectorProfileConfig {
1288
-
1289
- connectorProfileProperties: ConnectorProfileProperties | undefined;
1290
-
1291
- connectorProfileCredentials: ConnectorProfileCredentials | undefined;
1292
- }
1293
-
1294
- export declare class ConnectorServerException extends __BaseException {
1295
- readonly name: "ConnectorServerException";
1296
- readonly $fault: "client";
1297
-
1298
- constructor(opts: __ExceptionOptionType<ConnectorServerException, __BaseException>);
1299
- }
1300
- export interface CreateConnectorProfileRequest {
1301
-
1302
- connectorProfileName: string | undefined;
1303
-
1304
- kmsArn?: string;
1305
-
1306
- connectorType: ConnectorType | string | undefined;
1307
-
1308
- connectorLabel?: string;
1309
-
1310
- connectionMode: ConnectionMode | string | undefined;
1311
-
1312
- connectorProfileConfig: ConnectorProfileConfig | undefined;
1313
- }
1314
- export interface CreateConnectorProfileResponse {
1315
-
1316
- connectorProfileArn?: string;
1317
- }
1318
-
1319
- export declare class InternalServerException extends __BaseException {
1320
- readonly name: "InternalServerException";
1321
- readonly $fault: "server";
1322
-
1323
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
1324
- }
1325
-
1326
- export declare class ServiceQuotaExceededException extends __BaseException {
1327
- readonly name: "ServiceQuotaExceededException";
1328
- readonly $fault: "client";
1329
-
1330
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
1331
- }
1332
-
1333
- export declare class ValidationException extends __BaseException {
1334
- readonly name: "ValidationException";
1335
- readonly $fault: "client";
1336
-
1337
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
1338
- }
1339
-
1340
- export interface ErrorHandlingConfig {
1341
-
1342
- failOnFirstDestinationError?: boolean;
1343
-
1344
- bucketPrefix?: string;
1345
-
1346
- bucketName?: string;
1347
- }
1348
-
1349
- export interface CustomConnectorDestinationProperties {
1350
-
1351
- entityName: string | undefined;
1352
-
1353
- errorHandlingConfig?: ErrorHandlingConfig;
1354
-
1355
- writeOperationType?: WriteOperationType | string;
1356
-
1357
- idFieldNames?: string[];
1358
-
1359
- customProperties?: Record<string, string>;
1360
- }
1361
-
1362
- export interface CustomerProfilesDestinationProperties {
1363
-
1364
- domainName: string | undefined;
1365
-
1366
- objectTypeName?: string;
1367
- }
1368
-
1369
- export interface EventBridgeDestinationProperties {
1370
-
1371
- object: string | undefined;
1372
-
1373
- errorHandlingConfig?: ErrorHandlingConfig;
1374
- }
1375
-
1376
- export interface HoneycodeDestinationProperties {
1377
-
1378
- object: string | undefined;
1379
-
1380
- errorHandlingConfig?: ErrorHandlingConfig;
1381
- }
1382
-
1383
- export interface LookoutMetricsDestinationProperties {
1384
- }
1385
-
1386
- export interface MarketoDestinationProperties {
1387
-
1388
- object: string | undefined;
1389
-
1390
- errorHandlingConfig?: ErrorHandlingConfig;
1391
- }
1392
-
1393
- export interface RedshiftDestinationProperties {
1394
-
1395
- object: string | undefined;
1396
-
1397
- intermediateBucketName: string | undefined;
1398
-
1399
- bucketPrefix?: string;
1400
-
1401
- errorHandlingConfig?: ErrorHandlingConfig;
1402
- }
1403
- export declare enum FileType {
1404
- CSV = "CSV",
1405
- JSON = "JSON",
1406
- PARQUET = "PARQUET"
1407
- }
1408
- export declare enum PrefixFormat {
1409
- DAY = "DAY",
1410
- HOUR = "HOUR",
1411
- MINUTE = "MINUTE",
1412
- MONTH = "MONTH",
1413
- YEAR = "YEAR"
1414
- }
1415
- export declare enum PrefixType {
1416
- FILENAME = "FILENAME",
1417
- PATH = "PATH",
1418
- PATH_AND_FILENAME = "PATH_AND_FILENAME"
1419
- }
1420
-
1421
- export interface PrefixConfig {
1422
-
1423
- prefixType?: PrefixType | string;
1424
-
1425
- prefixFormat?: PrefixFormat | string;
1426
- }
1427
-
1428
- export interface S3OutputFormatConfig {
1429
-
1430
- fileType?: FileType | string;
1431
-
1432
- prefixConfig?: PrefixConfig;
1433
-
1434
- aggregationConfig?: AggregationConfig;
1435
-
1436
- preserveSourceDataTyping?: boolean;
1437
- }
1438
-
1439
- export interface S3DestinationProperties {
1440
-
1441
- bucketName: string | undefined;
1442
-
1443
- bucketPrefix?: string;
1444
-
1445
- s3OutputFormatConfig?: S3OutputFormatConfig;
1446
- }
1447
-
1448
- export interface SalesforceDestinationProperties {
1449
-
1450
- object: string | undefined;
1451
-
1452
- idFieldNames?: string[];
1453
-
1454
- errorHandlingConfig?: ErrorHandlingConfig;
1455
-
1456
- writeOperationType?: WriteOperationType | string;
1457
- }
1458
-
1459
- export interface SuccessResponseHandlingConfig {
1460
-
1461
- bucketPrefix?: string;
1462
-
1463
- bucketName?: string;
1464
- }
1465
-
1466
- export interface SAPODataDestinationProperties {
1467
-
1468
- objectPath: string | undefined;
1469
-
1470
- successResponseHandlingConfig?: SuccessResponseHandlingConfig;
1471
-
1472
- idFieldNames?: string[];
1473
-
1474
- errorHandlingConfig?: ErrorHandlingConfig;
1475
-
1476
- writeOperationType?: WriteOperationType | string;
1477
- }
1478
-
1479
- export interface SnowflakeDestinationProperties {
1480
-
1481
- object: string | undefined;
1482
-
1483
- intermediateBucketName: string | undefined;
1484
-
1485
- bucketPrefix?: string;
1486
-
1487
- errorHandlingConfig?: ErrorHandlingConfig;
1488
- }
1489
-
1490
- export interface UpsolverS3OutputFormatConfig {
1491
-
1492
- fileType?: FileType | string;
1493
-
1494
- prefixConfig: PrefixConfig | undefined;
1495
-
1496
- aggregationConfig?: AggregationConfig;
1497
- }
1498
-
1499
- export interface UpsolverDestinationProperties {
1500
-
1501
- bucketName: string | undefined;
1502
-
1503
- bucketPrefix?: string;
1504
-
1505
- s3OutputFormatConfig: UpsolverS3OutputFormatConfig | undefined;
1506
- }
1507
-
1508
- export interface ZendeskDestinationProperties {
1509
-
1510
- object: string | undefined;
1511
-
1512
- idFieldNames?: string[];
1513
-
1514
- errorHandlingConfig?: ErrorHandlingConfig;
1515
-
1516
- writeOperationType?: WriteOperationType | string;
1517
- }
1518
-
1519
- export interface DestinationConnectorProperties {
1520
-
1521
- Redshift?: RedshiftDestinationProperties;
1522
-
1523
- S3?: S3DestinationProperties;
1524
-
1525
- Salesforce?: SalesforceDestinationProperties;
1526
-
1527
- Snowflake?: SnowflakeDestinationProperties;
1528
-
1529
- EventBridge?: EventBridgeDestinationProperties;
1530
-
1531
- LookoutMetrics?: LookoutMetricsDestinationProperties;
1532
-
1533
- Upsolver?: UpsolverDestinationProperties;
1534
-
1535
- Honeycode?: HoneycodeDestinationProperties;
1536
-
1537
- CustomerProfiles?: CustomerProfilesDestinationProperties;
1538
-
1539
- Zendesk?: ZendeskDestinationProperties;
1540
-
1541
- Marketo?: MarketoDestinationProperties;
1542
-
1543
- CustomConnector?: CustomConnectorDestinationProperties;
1544
-
1545
- SAPOData?: SAPODataDestinationProperties;
1546
- }
1547
-
1548
- export interface DestinationFlowConfig {
1549
-
1550
- connectorType: ConnectorType | string | undefined;
1551
-
1552
- apiVersion?: string;
1553
-
1554
- connectorProfileName?: string;
1555
-
1556
- destinationConnectorProperties: DestinationConnectorProperties | undefined;
1557
- }
1558
-
1559
- export interface IncrementalPullConfig {
1560
-
1561
- datetimeTypeFieldName?: string;
1562
- }
1563
-
1564
- export interface CustomConnectorSourceProperties {
1565
-
1566
- entityName: string | undefined;
1567
-
1568
- customProperties?: Record<string, string>;
1569
- }
1570
-
1571
- export interface DatadogSourceProperties {
1572
-
1573
- object: string | undefined;
1574
- }
1575
-
1576
- export interface DynatraceSourceProperties {
1577
-
1578
- object: string | undefined;
1579
- }
1580
-
1581
- export interface GoogleAnalyticsSourceProperties {
1582
-
1583
- object: string | undefined;
1584
- }
1585
-
1586
- export interface InforNexusSourceProperties {
1587
-
1588
- object: string | undefined;
1589
- }
1590
-
1591
- export interface MarketoSourceProperties {
1592
-
1593
- object: string | undefined;
1594
- }
1595
- export declare enum S3InputFileType {
1596
- CSV = "CSV",
1597
- JSON = "JSON"
1598
- }
1599
-
1600
- export interface S3InputFormatConfig {
1601
-
1602
- s3InputFileType?: S3InputFileType | string;
1603
- }
1604
-
1605
- export interface S3SourceProperties {
1606
-
1607
- bucketName: string | undefined;
1608
-
1609
- bucketPrefix?: string;
1610
-
1611
- s3InputFormatConfig?: S3InputFormatConfig;
1612
- }
1613
-
1614
- export interface SalesforceSourceProperties {
1615
-
1616
- object: string | undefined;
1617
-
1618
- enableDynamicFieldUpdate?: boolean;
1619
-
1620
- includeDeletedRecords?: boolean;
1621
- }
1622
-
1623
- export interface SAPODataSourceProperties {
1624
-
1625
- objectPath?: string;
1626
- }
1627
-
1628
- export interface ServiceNowSourceProperties {
1629
-
1630
- object: string | undefined;
1631
- }
1632
-
1633
- export interface SingularSourceProperties {
1634
-
1635
- object: string | undefined;
1636
- }
1637
-
1638
- export interface SlackSourceProperties {
1639
-
1640
- object: string | undefined;
1641
- }
1642
-
1643
- export interface TrendmicroSourceProperties {
1644
-
1645
- object: string | undefined;
1646
- }
1647
-
1648
- export interface VeevaSourceProperties {
1649
-
1650
- object: string | undefined;
1651
-
1652
- documentType?: string;
1653
-
1654
- includeSourceFiles?: boolean;
1655
-
1656
- includeRenditions?: boolean;
1657
-
1658
- includeAllVersions?: boolean;
1659
- }
1660
-
1661
- export interface ZendeskSourceProperties {
1662
-
1663
- object: string | undefined;
1664
- }
1665
-
1666
- export interface SourceConnectorProperties {
1667
-
1668
- Amplitude?: AmplitudeSourceProperties;
1669
-
1670
- Datadog?: DatadogSourceProperties;
1671
-
1672
- Dynatrace?: DynatraceSourceProperties;
1673
-
1674
- GoogleAnalytics?: GoogleAnalyticsSourceProperties;
1675
-
1676
- InforNexus?: InforNexusSourceProperties;
1677
-
1678
- Marketo?: MarketoSourceProperties;
1679
-
1680
- S3?: S3SourceProperties;
1681
-
1682
- Salesforce?: SalesforceSourceProperties;
1683
-
1684
- ServiceNow?: ServiceNowSourceProperties;
1685
-
1686
- Singular?: SingularSourceProperties;
1687
-
1688
- Slack?: SlackSourceProperties;
1689
-
1690
- Trendmicro?: TrendmicroSourceProperties;
1691
-
1692
- Veeva?: VeevaSourceProperties;
1693
-
1694
- Zendesk?: ZendeskSourceProperties;
1695
-
1696
- SAPOData?: SAPODataSourceProperties;
1697
-
1698
- CustomConnector?: CustomConnectorSourceProperties;
1699
- }
1700
-
1701
- export interface SourceFlowConfig {
1702
-
1703
- connectorType: ConnectorType | string | undefined;
1704
-
1705
- apiVersion?: string;
1706
-
1707
- connectorProfileName?: string;
1708
-
1709
- sourceConnectorProperties: SourceConnectorProperties | undefined;
1710
-
1711
- incrementalPullConfig?: IncrementalPullConfig;
1712
- }
1713
- export declare enum OperatorPropertiesKeys {
1714
- CONCAT_FORMAT = "CONCAT_FORMAT",
1715
- DATA_TYPE = "DATA_TYPE",
1716
- DESTINATION_DATA_TYPE = "DESTINATION_DATA_TYPE",
1717
- EXCLUDE_SOURCE_FIELDS_LIST = "EXCLUDE_SOURCE_FIELDS_LIST",
1718
- LOWER_BOUND = "LOWER_BOUND",
1719
- MASK_LENGTH = "MASK_LENGTH",
1720
- MASK_VALUE = "MASK_VALUE",
1721
- MATH_OPERATION_FIELDS_ORDER = "MATH_OPERATION_FIELDS_ORDER",
1722
- SOURCE_DATA_TYPE = "SOURCE_DATA_TYPE",
1723
- SUBFIELD_CATEGORY_MAP = "SUBFIELD_CATEGORY_MAP",
1724
- TRUNCATE_LENGTH = "TRUNCATE_LENGTH",
1725
- UPPER_BOUND = "UPPER_BOUND",
1726
- VALIDATION_ACTION = "VALIDATION_ACTION",
1727
- VALUE = "VALUE",
1728
- VALUES = "VALUES"
1729
- }
1730
- export declare enum TaskType {
1731
- ARITHMETIC = "Arithmetic",
1732
- FILTER = "Filter",
1733
- MAP = "Map",
1734
- MAP_ALL = "Map_all",
1735
- MASK = "Mask",
1736
- MERGE = "Merge",
1737
- PASSTHROUGH = "Passthrough",
1738
- TRUNCATE = "Truncate",
1739
- VALIDATE = "Validate"
1740
- }
1741
-
1742
- export interface Task {
1743
-
1744
- sourceFields: string[] | undefined;
1745
-
1746
- connectorOperator?: ConnectorOperator;
1747
-
1748
- destinationField?: string;
1749
-
1750
- taskType: TaskType | string | undefined;
1751
-
1752
- taskProperties?: Record<string, string>;
1753
- }
1754
- export declare enum DataPullMode {
1755
- COMPLETE = "Complete",
1756
- INCREMENTAL = "Incremental"
1757
- }
1758
-
1759
- export interface ScheduledTriggerProperties {
1760
-
1761
- scheduleExpression: string | undefined;
1762
-
1763
- dataPullMode?: DataPullMode | string;
1764
-
1765
- scheduleStartTime?: Date;
1766
-
1767
- scheduleEndTime?: Date;
1768
-
1769
- timezone?: string;
1770
-
1771
- scheduleOffset?: number;
1772
-
1773
- firstExecutionFrom?: Date;
1774
-
1775
- flowErrorDeactivationThreshold?: number;
1776
- }
1777
-
1778
- export interface TriggerProperties {
1779
-
1780
- Scheduled?: ScheduledTriggerProperties;
1781
- }
1782
-
1783
- export interface TriggerConfig {
1784
-
1785
- triggerType: TriggerType | string | undefined;
1786
-
1787
- triggerProperties?: TriggerProperties;
1788
- }
1789
- export interface CreateFlowRequest {
1790
-
1791
- flowName: string | undefined;
1792
-
1793
- description?: string;
1794
-
1795
- kmsArn?: string;
1796
-
1797
- triggerConfig: TriggerConfig | undefined;
1798
-
1799
- sourceFlowConfig: SourceFlowConfig | undefined;
1800
-
1801
- destinationFlowConfigList: DestinationFlowConfig[] | undefined;
1802
-
1803
- tasks: Task[] | undefined;
1804
-
1805
- tags?: Record<string, string>;
1806
- }
1807
- export declare enum FlowStatus {
1808
- ACTIVE = "Active",
1809
- DELETED = "Deleted",
1810
- DEPRECATED = "Deprecated",
1811
- DRAFT = "Draft",
1812
- ERRORED = "Errored",
1813
- SUSPENDED = "Suspended"
1814
- }
1815
- export interface CreateFlowResponse {
1816
-
1817
- flowArn?: string;
1818
-
1819
- flowStatus?: FlowStatus | string;
1820
- }
1821
-
1822
- export declare class ResourceNotFoundException extends __BaseException {
1823
- readonly name: "ResourceNotFoundException";
1824
- readonly $fault: "client";
1825
-
1826
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
1827
- }
1828
- export interface DeleteConnectorProfileRequest {
1829
-
1830
- connectorProfileName: string | undefined;
1831
-
1832
- forceDelete?: boolean;
1833
- }
1834
- export interface DeleteConnectorProfileResponse {
1835
- }
1836
- export interface DeleteFlowRequest {
1837
-
1838
- flowName: string | undefined;
1839
-
1840
- forceDelete?: boolean;
1841
- }
1842
- export interface DeleteFlowResponse {
1843
- }
1844
- export interface DescribeConnectorRequest {
1845
-
1846
- connectorType: ConnectorType | string | undefined;
1847
-
1848
- connectorLabel?: string;
1849
- }
1850
- export interface DescribeConnectorResponse {
1851
-
1852
- connectorConfiguration?: ConnectorConfiguration;
1853
- }
1854
- export interface DescribeConnectorEntityRequest {
1855
-
1856
- connectorEntityName: string | undefined;
1857
-
1858
- connectorType?: ConnectorType | string;
1859
-
1860
- connectorProfileName?: string;
1861
-
1862
- apiVersion?: string;
1863
- }
1864
- export interface DescribeConnectorEntityResponse {
1865
-
1866
- connectorEntityFields: ConnectorEntityField[] | undefined;
1867
- }
1868
- export interface DescribeConnectorProfilesRequest {
1869
-
1870
- connectorProfileNames?: string[];
1871
-
1872
- connectorType?: ConnectorType | string;
1873
-
1874
- connectorLabel?: string;
1875
-
1876
- maxResults?: number;
1877
-
1878
- nextToken?: string;
1879
- }
1880
- export interface DescribeConnectorProfilesResponse {
1881
-
1882
- connectorProfileDetails?: ConnectorProfile[];
1883
-
1884
- nextToken?: string;
1885
- }
1886
- export interface DescribeConnectorsRequest {
1887
-
1888
- connectorTypes?: (ConnectorType | string)[];
1889
-
1890
- maxResults?: number;
1891
-
1892
- nextToken?: string;
1893
- }
1894
- export interface DescribeConnectorsResponse {
1895
-
1896
- connectorConfigurations?: Record<string, ConnectorConfiguration>;
1897
-
1898
- connectors?: ConnectorDetail[];
1899
-
1900
- nextToken?: string;
1901
- }
1902
- export interface DescribeFlowRequest {
1903
-
1904
- flowName: string | undefined;
1905
- }
1906
- export declare enum ExecutionStatus {
1907
- ERROR = "Error",
1908
- INPROGRESS = "InProgress",
1909
- SUCCESSFUL = "Successful"
1910
- }
1911
-
1912
- export interface ExecutionDetails {
1913
-
1914
- mostRecentExecutionMessage?: string;
1915
-
1916
- mostRecentExecutionTime?: Date;
1917
-
1918
- mostRecentExecutionStatus?: ExecutionStatus | string;
1919
- }
1920
- export interface DescribeFlowResponse {
1921
-
1922
- flowArn?: string;
1923
-
1924
- description?: string;
1925
-
1926
- flowName?: string;
1927
-
1928
- kmsArn?: string;
1929
-
1930
- flowStatus?: FlowStatus | string;
1931
-
1932
- flowStatusMessage?: string;
1933
-
1934
- sourceFlowConfig?: SourceFlowConfig;
1935
-
1936
- destinationFlowConfigList?: DestinationFlowConfig[];
1937
-
1938
- lastRunExecutionDetails?: ExecutionDetails;
1939
-
1940
- triggerConfig?: TriggerConfig;
1941
-
1942
- tasks?: Task[];
1943
-
1944
- createdAt?: Date;
1945
-
1946
- lastUpdatedAt?: Date;
1947
-
1948
- createdBy?: string;
1949
-
1950
- lastUpdatedBy?: string;
1951
-
1952
- tags?: Record<string, string>;
1953
- }
1954
- export interface DescribeFlowExecutionRecordsRequest {
1955
-
1956
- flowName: string | undefined;
1957
-
1958
- maxResults?: number;
1959
-
1960
- nextToken?: string;
1961
- }
1962
-
1963
- export interface ErrorInfo {
1964
-
1965
- putFailuresCount?: number;
1966
-
1967
- executionMessage?: string;
1968
- }
1969
-
1970
- export interface ExecutionResult {
1971
-
1972
- errorInfo?: ErrorInfo;
1973
-
1974
- bytesProcessed?: number;
1975
-
1976
- bytesWritten?: number;
1977
-
1978
- recordsProcessed?: number;
1979
- }
1980
-
1981
- export interface ExecutionRecord {
1982
-
1983
- executionId?: string;
1984
-
1985
- executionStatus?: ExecutionStatus | string;
1986
-
1987
- executionResult?: ExecutionResult;
1988
-
1989
- startedAt?: Date;
1990
-
1991
- lastUpdatedAt?: Date;
1992
-
1993
- dataPullStartTime?: Date;
1994
-
1995
- dataPullEndTime?: Date;
1996
- }
1997
- export interface DescribeFlowExecutionRecordsResponse {
1998
-
1999
- flowExecutions?: ExecutionRecord[];
2000
-
2001
- nextToken?: string;
2002
- }
2003
-
2004
- export interface FlowDefinition {
2005
-
2006
- flowArn?: string;
2007
-
2008
- description?: string;
2009
-
2010
- flowName?: string;
2011
-
2012
- flowStatus?: FlowStatus | string;
2013
-
2014
- sourceConnectorType?: ConnectorType | string;
2015
-
2016
- sourceConnectorLabel?: string;
2017
-
2018
- destinationConnectorType?: ConnectorType | string;
2019
-
2020
- destinationConnectorLabel?: string;
2021
-
2022
- triggerType?: TriggerType | string;
2023
-
2024
- createdAt?: Date;
2025
-
2026
- lastUpdatedAt?: Date;
2027
-
2028
- createdBy?: string;
2029
-
2030
- lastUpdatedBy?: string;
2031
-
2032
- tags?: Record<string, string>;
2033
-
2034
- lastRunExecutionDetails?: ExecutionDetails;
2035
- }
2036
- export interface ListConnectorEntitiesRequest {
2037
-
2038
- connectorProfileName?: string;
2039
-
2040
- connectorType?: ConnectorType | string;
2041
-
2042
- entitiesPath?: string;
2043
-
2044
- apiVersion?: string;
2045
- }
2046
- export interface ListConnectorEntitiesResponse {
2047
-
2048
- connectorEntityMap: Record<string, ConnectorEntity[]> | undefined;
2049
- }
2050
- export interface ListConnectorsRequest {
2051
-
2052
- maxResults?: number;
2053
-
2054
- nextToken?: string;
2055
- }
2056
- export interface ListConnectorsResponse {
2057
-
2058
- connectors?: ConnectorDetail[];
2059
-
2060
- nextToken?: string;
2061
- }
2062
- export interface ListFlowsRequest {
2063
-
2064
- maxResults?: number;
2065
-
2066
- nextToken?: string;
2067
- }
2068
- export interface ListFlowsResponse {
2069
-
2070
- flows?: FlowDefinition[];
2071
-
2072
- nextToken?: string;
2073
- }
2074
- export interface ListTagsForResourceRequest {
2075
-
2076
- resourceArn: string | undefined;
2077
- }
2078
- export interface ListTagsForResourceResponse {
2079
-
2080
- tags?: Record<string, string>;
2081
- }
2082
- export interface RegisterConnectorRequest {
2083
-
2084
- connectorLabel?: string;
2085
-
2086
- description?: string;
2087
-
2088
- connectorProvisioningType?: ConnectorProvisioningType | string;
2089
-
2090
- connectorProvisioningConfig?: ConnectorProvisioningConfig;
2091
- }
2092
- export interface RegisterConnectorResponse {
2093
-
2094
- connectorArn?: string;
2095
- }
2096
-
2097
- export declare class ThrottlingException extends __BaseException {
2098
- readonly name: "ThrottlingException";
2099
- readonly $fault: "client";
2100
-
2101
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
2102
- }
2103
- export interface StartFlowRequest {
2104
-
2105
- flowName: string | undefined;
2106
- }
2107
- export interface StartFlowResponse {
2108
-
2109
- flowArn?: string;
2110
-
2111
- flowStatus?: FlowStatus | string;
2112
-
2113
- executionId?: string;
2114
- }
2115
- export interface StopFlowRequest {
2116
-
2117
- flowName: string | undefined;
2118
- }
2119
- export interface StopFlowResponse {
2120
-
2121
- flowArn?: string;
2122
-
2123
- flowStatus?: FlowStatus | string;
2124
- }
2125
-
2126
- export declare class UnsupportedOperationException extends __BaseException {
2127
- readonly name: "UnsupportedOperationException";
2128
- readonly $fault: "client";
2129
-
2130
- constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
2131
- }
2132
- export interface TagResourceRequest {
2133
-
2134
- resourceArn: string | undefined;
2135
-
2136
- tags: Record<string, string> | undefined;
2137
- }
2138
- export interface TagResourceResponse {
2139
- }
2140
- export interface UnregisterConnectorRequest {
2141
-
2142
- connectorLabel: string | undefined;
2143
-
2144
- forceDelete?: boolean;
2145
- }
2146
- export interface UnregisterConnectorResponse {
2147
- }
2148
- export interface UntagResourceRequest {
2149
-
2150
- resourceArn: string | undefined;
2151
-
2152
- tagKeys: string[] | undefined;
2153
- }
2154
- export interface UntagResourceResponse {
2155
- }
2156
- export interface UpdateConnectorProfileRequest {
2157
-
2158
- connectorProfileName: string | undefined;
2159
-
2160
- connectionMode: ConnectionMode | string | undefined;
2161
-
2162
- connectorProfileConfig: ConnectorProfileConfig | undefined;
2163
- }
2164
- export interface UpdateConnectorProfileResponse {
2165
-
2166
- connectorProfileArn?: string;
2167
- }
2168
- export interface UpdateFlowRequest {
2169
-
2170
- flowName: string | undefined;
2171
-
2172
- description?: string;
2173
-
2174
- triggerConfig: TriggerConfig | undefined;
2175
-
2176
- sourceFlowConfig: SourceFlowConfig | undefined;
2177
-
2178
- destinationFlowConfigList: DestinationFlowConfig[] | undefined;
2179
-
2180
- tasks: Task[] | undefined;
2181
- }
2182
- export interface UpdateFlowResponse {
2183
-
2184
- flowStatus?: FlowStatus | string;
2185
- }
2186
-
2187
- export declare const AggregationConfigFilterSensitiveLog: (obj: AggregationConfig) => any;
2188
-
2189
- export declare const AmplitudeConnectorProfileCredentialsFilterSensitiveLog: (obj: AmplitudeConnectorProfileCredentials) => any;
2190
-
2191
- export declare const AmplitudeConnectorProfilePropertiesFilterSensitiveLog: (obj: AmplitudeConnectorProfileProperties) => any;
2192
-
2193
- export declare const AmplitudeMetadataFilterSensitiveLog: (obj: AmplitudeMetadata) => any;
2194
-
2195
- export declare const AmplitudeSourcePropertiesFilterSensitiveLog: (obj: AmplitudeSourceProperties) => any;
2196
-
2197
- export declare const ApiKeyCredentialsFilterSensitiveLog: (obj: ApiKeyCredentials) => any;
2198
-
2199
- export declare const AuthParameterFilterSensitiveLog: (obj: AuthParameter) => any;
2200
-
2201
- export declare const CustomAuthConfigFilterSensitiveLog: (obj: CustomAuthConfig) => any;
2202
-
2203
- export declare const OAuth2CustomParameterFilterSensitiveLog: (obj: OAuth2CustomParameter) => any;
2204
-
2205
- export declare const OAuth2DefaultsFilterSensitiveLog: (obj: OAuth2Defaults) => any;
2206
-
2207
- export declare const AuthenticationConfigFilterSensitiveLog: (obj: AuthenticationConfig) => any;
2208
-
2209
- export declare const BasicAuthCredentialsFilterSensitiveLog: (obj: BasicAuthCredentials) => any;
2210
-
2211
- export declare const CustomerProfilesMetadataFilterSensitiveLog: (obj: CustomerProfilesMetadata) => any;
2212
-
2213
- export declare const DatadogMetadataFilterSensitiveLog: (obj: DatadogMetadata) => any;
2214
-
2215
- export declare const DynatraceMetadataFilterSensitiveLog: (obj: DynatraceMetadata) => any;
2216
-
2217
- export declare const EventBridgeMetadataFilterSensitiveLog: (obj: EventBridgeMetadata) => any;
2218
-
2219
- export declare const GoogleAnalyticsMetadataFilterSensitiveLog: (obj: GoogleAnalyticsMetadata) => any;
2220
-
2221
- export declare const HoneycodeMetadataFilterSensitiveLog: (obj: HoneycodeMetadata) => any;
2222
-
2223
- export declare const InforNexusMetadataFilterSensitiveLog: (obj: InforNexusMetadata) => any;
2224
-
2225
- export declare const MarketoMetadataFilterSensitiveLog: (obj: MarketoMetadata) => any;
2226
-
2227
- export declare const RedshiftMetadataFilterSensitiveLog: (obj: RedshiftMetadata) => any;
2228
-
2229
- export declare const S3MetadataFilterSensitiveLog: (obj: S3Metadata) => any;
2230
-
2231
- export declare const SalesforceMetadataFilterSensitiveLog: (obj: SalesforceMetadata) => any;
2232
-
2233
- export declare const SAPODataMetadataFilterSensitiveLog: (obj: SAPODataMetadata) => any;
2234
-
2235
- export declare const ServiceNowMetadataFilterSensitiveLog: (obj: ServiceNowMetadata) => any;
2236
-
2237
- export declare const SingularMetadataFilterSensitiveLog: (obj: SingularMetadata) => any;
2238
-
2239
- export declare const SlackMetadataFilterSensitiveLog: (obj: SlackMetadata) => any;
2240
-
2241
- export declare const SnowflakeMetadataFilterSensitiveLog: (obj: SnowflakeMetadata) => any;
2242
-
2243
- export declare const TrendmicroMetadataFilterSensitiveLog: (obj: TrendmicroMetadata) => any;
2244
-
2245
- export declare const UpsolverMetadataFilterSensitiveLog: (obj: UpsolverMetadata) => any;
2246
-
2247
- export declare const VeevaMetadataFilterSensitiveLog: (obj: VeevaMetadata) => any;
2248
-
2249
- export declare const ZendeskMetadataFilterSensitiveLog: (obj: ZendeskMetadata) => any;
2250
-
2251
- export declare const ConnectorMetadataFilterSensitiveLog: (obj: ConnectorMetadata) => any;
2252
-
2253
- export declare const LambdaConnectorProvisioningConfigFilterSensitiveLog: (obj: LambdaConnectorProvisioningConfig) => any;
2254
-
2255
- export declare const ConnectorProvisioningConfigFilterSensitiveLog: (obj: ConnectorProvisioningConfig) => any;
2256
-
2257
- export declare const ConnectorRuntimeSettingFilterSensitiveLog: (obj: ConnectorRuntimeSetting) => any;
2258
-
2259
- export declare const ConnectorConfigurationFilterSensitiveLog: (obj: ConnectorConfiguration) => any;
2260
-
2261
- export declare const ConnectorDetailFilterSensitiveLog: (obj: ConnectorDetail) => any;
2262
-
2263
- export declare const ConnectorEntityFilterSensitiveLog: (obj: ConnectorEntity) => any;
2264
-
2265
- export declare const DestinationFieldPropertiesFilterSensitiveLog: (obj: DestinationFieldProperties) => any;
2266
-
2267
- export declare const SourceFieldPropertiesFilterSensitiveLog: (obj: SourceFieldProperties) => any;
2268
-
2269
- export declare const RangeFilterSensitiveLog: (obj: Range) => any;
2270
-
2271
- export declare const FieldTypeDetailsFilterSensitiveLog: (obj: FieldTypeDetails) => any;
2272
-
2273
- export declare const SupportedFieldTypeDetailsFilterSensitiveLog: (obj: SupportedFieldTypeDetails) => any;
2274
-
2275
- export declare const ConnectorEntityFieldFilterSensitiveLog: (obj: ConnectorEntityField) => any;
2276
-
2277
- export declare const ConnectorOAuthRequestFilterSensitiveLog: (obj: ConnectorOAuthRequest) => any;
2278
-
2279
- export declare const ConnectorOperatorFilterSensitiveLog: (obj: ConnectorOperator) => any;
2280
-
2281
- export declare const OAuth2PropertiesFilterSensitiveLog: (obj: OAuth2Properties) => any;
2282
-
2283
- export declare const CustomConnectorProfilePropertiesFilterSensitiveLog: (obj: CustomConnectorProfileProperties) => any;
2284
-
2285
- export declare const DatadogConnectorProfilePropertiesFilterSensitiveLog: (obj: DatadogConnectorProfileProperties) => any;
2286
-
2287
- export declare const DynatraceConnectorProfilePropertiesFilterSensitiveLog: (obj: DynatraceConnectorProfileProperties) => any;
2288
-
2289
- export declare const GoogleAnalyticsConnectorProfilePropertiesFilterSensitiveLog: (obj: GoogleAnalyticsConnectorProfileProperties) => any;
2290
-
2291
- export declare const HoneycodeConnectorProfilePropertiesFilterSensitiveLog: (obj: HoneycodeConnectorProfileProperties) => any;
2292
-
2293
- export declare const InforNexusConnectorProfilePropertiesFilterSensitiveLog: (obj: InforNexusConnectorProfileProperties) => any;
2294
-
2295
- export declare const MarketoConnectorProfilePropertiesFilterSensitiveLog: (obj: MarketoConnectorProfileProperties) => any;
2296
-
2297
- export declare const RedshiftConnectorProfilePropertiesFilterSensitiveLog: (obj: RedshiftConnectorProfileProperties) => any;
2298
-
2299
- export declare const SalesforceConnectorProfilePropertiesFilterSensitiveLog: (obj: SalesforceConnectorProfileProperties) => any;
2300
-
2301
- export declare const OAuthPropertiesFilterSensitiveLog: (obj: OAuthProperties) => any;
2302
-
2303
- export declare const SAPODataConnectorProfilePropertiesFilterSensitiveLog: (obj: SAPODataConnectorProfileProperties) => any;
2304
-
2305
- export declare const ServiceNowConnectorProfilePropertiesFilterSensitiveLog: (obj: ServiceNowConnectorProfileProperties) => any;
2306
-
2307
- export declare const SingularConnectorProfilePropertiesFilterSensitiveLog: (obj: SingularConnectorProfileProperties) => any;
2308
-
2309
- export declare const SlackConnectorProfilePropertiesFilterSensitiveLog: (obj: SlackConnectorProfileProperties) => any;
2310
-
2311
- export declare const SnowflakeConnectorProfilePropertiesFilterSensitiveLog: (obj: SnowflakeConnectorProfileProperties) => any;
2312
-
2313
- export declare const TrendmicroConnectorProfilePropertiesFilterSensitiveLog: (obj: TrendmicroConnectorProfileProperties) => any;
2314
-
2315
- export declare const VeevaConnectorProfilePropertiesFilterSensitiveLog: (obj: VeevaConnectorProfileProperties) => any;
2316
-
2317
- export declare const ZendeskConnectorProfilePropertiesFilterSensitiveLog: (obj: ZendeskConnectorProfileProperties) => any;
2318
-
2319
- export declare const ConnectorProfilePropertiesFilterSensitiveLog: (obj: ConnectorProfileProperties) => any;
2320
-
2321
- export declare const PrivateConnectionProvisioningStateFilterSensitiveLog: (obj: PrivateConnectionProvisioningState) => any;
2322
-
2323
- export declare const ConnectorProfileFilterSensitiveLog: (obj: ConnectorProfile) => any;
2324
-
2325
- export declare const CustomAuthCredentialsFilterSensitiveLog: (obj: CustomAuthCredentials) => any;
2326
-
2327
- export declare const OAuth2CredentialsFilterSensitiveLog: (obj: OAuth2Credentials) => any;
2328
-
2329
- export declare const CustomConnectorProfileCredentialsFilterSensitiveLog: (obj: CustomConnectorProfileCredentials) => any;
2330
-
2331
- export declare const DatadogConnectorProfileCredentialsFilterSensitiveLog: (obj: DatadogConnectorProfileCredentials) => any;
2332
-
2333
- export declare const DynatraceConnectorProfileCredentialsFilterSensitiveLog: (obj: DynatraceConnectorProfileCredentials) => any;
2334
-
2335
- export declare const GoogleAnalyticsConnectorProfileCredentialsFilterSensitiveLog: (obj: GoogleAnalyticsConnectorProfileCredentials) => any;
2336
-
2337
- export declare const HoneycodeConnectorProfileCredentialsFilterSensitiveLog: (obj: HoneycodeConnectorProfileCredentials) => any;
2338
-
2339
- export declare const InforNexusConnectorProfileCredentialsFilterSensitiveLog: (obj: InforNexusConnectorProfileCredentials) => any;
2340
-
2341
- export declare const MarketoConnectorProfileCredentialsFilterSensitiveLog: (obj: MarketoConnectorProfileCredentials) => any;
2342
-
2343
- export declare const RedshiftConnectorProfileCredentialsFilterSensitiveLog: (obj: RedshiftConnectorProfileCredentials) => any;
2344
-
2345
- export declare const SalesforceConnectorProfileCredentialsFilterSensitiveLog: (obj: SalesforceConnectorProfileCredentials) => any;
2346
-
2347
- export declare const OAuthCredentialsFilterSensitiveLog: (obj: OAuthCredentials) => any;
2348
-
2349
- export declare const SAPODataConnectorProfileCredentialsFilterSensitiveLog: (obj: SAPODataConnectorProfileCredentials) => any;
2350
-
2351
- export declare const ServiceNowConnectorProfileCredentialsFilterSensitiveLog: (obj: ServiceNowConnectorProfileCredentials) => any;
2352
-
2353
- export declare const SingularConnectorProfileCredentialsFilterSensitiveLog: (obj: SingularConnectorProfileCredentials) => any;
2354
-
2355
- export declare const SlackConnectorProfileCredentialsFilterSensitiveLog: (obj: SlackConnectorProfileCredentials) => any;
2356
-
2357
- export declare const SnowflakeConnectorProfileCredentialsFilterSensitiveLog: (obj: SnowflakeConnectorProfileCredentials) => any;
2358
-
2359
- export declare const TrendmicroConnectorProfileCredentialsFilterSensitiveLog: (obj: TrendmicroConnectorProfileCredentials) => any;
2360
-
2361
- export declare const VeevaConnectorProfileCredentialsFilterSensitiveLog: (obj: VeevaConnectorProfileCredentials) => any;
2362
-
2363
- export declare const ZendeskConnectorProfileCredentialsFilterSensitiveLog: (obj: ZendeskConnectorProfileCredentials) => any;
2364
-
2365
- export declare const ConnectorProfileCredentialsFilterSensitiveLog: (obj: ConnectorProfileCredentials) => any;
2366
-
2367
- export declare const ConnectorProfileConfigFilterSensitiveLog: (obj: ConnectorProfileConfig) => any;
2368
-
2369
- export declare const CreateConnectorProfileRequestFilterSensitiveLog: (obj: CreateConnectorProfileRequest) => any;
2370
-
2371
- export declare const CreateConnectorProfileResponseFilterSensitiveLog: (obj: CreateConnectorProfileResponse) => any;
2372
-
2373
- export declare const ErrorHandlingConfigFilterSensitiveLog: (obj: ErrorHandlingConfig) => any;
2374
-
2375
- export declare const CustomConnectorDestinationPropertiesFilterSensitiveLog: (obj: CustomConnectorDestinationProperties) => any;
2376
-
2377
- export declare const CustomerProfilesDestinationPropertiesFilterSensitiveLog: (obj: CustomerProfilesDestinationProperties) => any;
2378
-
2379
- export declare const EventBridgeDestinationPropertiesFilterSensitiveLog: (obj: EventBridgeDestinationProperties) => any;
2380
-
2381
- export declare const HoneycodeDestinationPropertiesFilterSensitiveLog: (obj: HoneycodeDestinationProperties) => any;
2382
-
2383
- export declare const LookoutMetricsDestinationPropertiesFilterSensitiveLog: (obj: LookoutMetricsDestinationProperties) => any;
2384
-
2385
- export declare const MarketoDestinationPropertiesFilterSensitiveLog: (obj: MarketoDestinationProperties) => any;
2386
-
2387
- export declare const RedshiftDestinationPropertiesFilterSensitiveLog: (obj: RedshiftDestinationProperties) => any;
2388
-
2389
- export declare const PrefixConfigFilterSensitiveLog: (obj: PrefixConfig) => any;
2390
-
2391
- export declare const S3OutputFormatConfigFilterSensitiveLog: (obj: S3OutputFormatConfig) => any;
2392
-
2393
- export declare const S3DestinationPropertiesFilterSensitiveLog: (obj: S3DestinationProperties) => any;
2394
-
2395
- export declare const SalesforceDestinationPropertiesFilterSensitiveLog: (obj: SalesforceDestinationProperties) => any;
2396
-
2397
- export declare const SuccessResponseHandlingConfigFilterSensitiveLog: (obj: SuccessResponseHandlingConfig) => any;
2398
-
2399
- export declare const SAPODataDestinationPropertiesFilterSensitiveLog: (obj: SAPODataDestinationProperties) => any;
2400
-
2401
- export declare const SnowflakeDestinationPropertiesFilterSensitiveLog: (obj: SnowflakeDestinationProperties) => any;
2402
-
2403
- export declare const UpsolverS3OutputFormatConfigFilterSensitiveLog: (obj: UpsolverS3OutputFormatConfig) => any;
2404
-
2405
- export declare const UpsolverDestinationPropertiesFilterSensitiveLog: (obj: UpsolverDestinationProperties) => any;
2406
-
2407
- export declare const ZendeskDestinationPropertiesFilterSensitiveLog: (obj: ZendeskDestinationProperties) => any;
2408
-
2409
- export declare const DestinationConnectorPropertiesFilterSensitiveLog: (obj: DestinationConnectorProperties) => any;
2410
-
2411
- export declare const DestinationFlowConfigFilterSensitiveLog: (obj: DestinationFlowConfig) => any;
2412
-
2413
- export declare const IncrementalPullConfigFilterSensitiveLog: (obj: IncrementalPullConfig) => any;
2414
-
2415
- export declare const CustomConnectorSourcePropertiesFilterSensitiveLog: (obj: CustomConnectorSourceProperties) => any;
2416
-
2417
- export declare const DatadogSourcePropertiesFilterSensitiveLog: (obj: DatadogSourceProperties) => any;
2418
-
2419
- export declare const DynatraceSourcePropertiesFilterSensitiveLog: (obj: DynatraceSourceProperties) => any;
2420
-
2421
- export declare const GoogleAnalyticsSourcePropertiesFilterSensitiveLog: (obj: GoogleAnalyticsSourceProperties) => any;
2422
-
2423
- export declare const InforNexusSourcePropertiesFilterSensitiveLog: (obj: InforNexusSourceProperties) => any;
2424
-
2425
- export declare const MarketoSourcePropertiesFilterSensitiveLog: (obj: MarketoSourceProperties) => any;
2426
-
2427
- export declare const S3InputFormatConfigFilterSensitiveLog: (obj: S3InputFormatConfig) => any;
2428
-
2429
- export declare const S3SourcePropertiesFilterSensitiveLog: (obj: S3SourceProperties) => any;
2430
-
2431
- export declare const SalesforceSourcePropertiesFilterSensitiveLog: (obj: SalesforceSourceProperties) => any;
2432
-
2433
- export declare const SAPODataSourcePropertiesFilterSensitiveLog: (obj: SAPODataSourceProperties) => any;
2434
-
2435
- export declare const ServiceNowSourcePropertiesFilterSensitiveLog: (obj: ServiceNowSourceProperties) => any;
2436
-
2437
- export declare const SingularSourcePropertiesFilterSensitiveLog: (obj: SingularSourceProperties) => any;
2438
-
2439
- export declare const SlackSourcePropertiesFilterSensitiveLog: (obj: SlackSourceProperties) => any;
2440
-
2441
- export declare const TrendmicroSourcePropertiesFilterSensitiveLog: (obj: TrendmicroSourceProperties) => any;
2442
-
2443
- export declare const VeevaSourcePropertiesFilterSensitiveLog: (obj: VeevaSourceProperties) => any;
2444
-
2445
- export declare const ZendeskSourcePropertiesFilterSensitiveLog: (obj: ZendeskSourceProperties) => any;
2446
-
2447
- export declare const SourceConnectorPropertiesFilterSensitiveLog: (obj: SourceConnectorProperties) => any;
2448
-
2449
- export declare const SourceFlowConfigFilterSensitiveLog: (obj: SourceFlowConfig) => any;
2450
-
2451
- export declare const TaskFilterSensitiveLog: (obj: Task) => any;
2452
-
2453
- export declare const ScheduledTriggerPropertiesFilterSensitiveLog: (obj: ScheduledTriggerProperties) => any;
2454
-
2455
- export declare const TriggerPropertiesFilterSensitiveLog: (obj: TriggerProperties) => any;
2456
-
2457
- export declare const TriggerConfigFilterSensitiveLog: (obj: TriggerConfig) => any;
2458
-
2459
- export declare const CreateFlowRequestFilterSensitiveLog: (obj: CreateFlowRequest) => any;
2460
-
2461
- export declare const CreateFlowResponseFilterSensitiveLog: (obj: CreateFlowResponse) => any;
2462
-
2463
- export declare const DeleteConnectorProfileRequestFilterSensitiveLog: (obj: DeleteConnectorProfileRequest) => any;
2464
-
2465
- export declare const DeleteConnectorProfileResponseFilterSensitiveLog: (obj: DeleteConnectorProfileResponse) => any;
2466
-
2467
- export declare const DeleteFlowRequestFilterSensitiveLog: (obj: DeleteFlowRequest) => any;
2468
-
2469
- export declare const DeleteFlowResponseFilterSensitiveLog: (obj: DeleteFlowResponse) => any;
2470
-
2471
- export declare const DescribeConnectorRequestFilterSensitiveLog: (obj: DescribeConnectorRequest) => any;
2472
-
2473
- export declare const DescribeConnectorResponseFilterSensitiveLog: (obj: DescribeConnectorResponse) => any;
2474
-
2475
- export declare const DescribeConnectorEntityRequestFilterSensitiveLog: (obj: DescribeConnectorEntityRequest) => any;
2476
-
2477
- export declare const DescribeConnectorEntityResponseFilterSensitiveLog: (obj: DescribeConnectorEntityResponse) => any;
2478
-
2479
- export declare const DescribeConnectorProfilesRequestFilterSensitiveLog: (obj: DescribeConnectorProfilesRequest) => any;
2480
-
2481
- export declare const DescribeConnectorProfilesResponseFilterSensitiveLog: (obj: DescribeConnectorProfilesResponse) => any;
2482
-
2483
- export declare const DescribeConnectorsRequestFilterSensitiveLog: (obj: DescribeConnectorsRequest) => any;
2484
-
2485
- export declare const DescribeConnectorsResponseFilterSensitiveLog: (obj: DescribeConnectorsResponse) => any;
2486
-
2487
- export declare const DescribeFlowRequestFilterSensitiveLog: (obj: DescribeFlowRequest) => any;
2488
-
2489
- export declare const ExecutionDetailsFilterSensitiveLog: (obj: ExecutionDetails) => any;
2490
-
2491
- export declare const DescribeFlowResponseFilterSensitiveLog: (obj: DescribeFlowResponse) => any;
2492
-
2493
- export declare const DescribeFlowExecutionRecordsRequestFilterSensitiveLog: (obj: DescribeFlowExecutionRecordsRequest) => any;
2494
-
2495
- export declare const ErrorInfoFilterSensitiveLog: (obj: ErrorInfo) => any;
2496
-
2497
- export declare const ExecutionResultFilterSensitiveLog: (obj: ExecutionResult) => any;
2498
-
2499
- export declare const ExecutionRecordFilterSensitiveLog: (obj: ExecutionRecord) => any;
2500
-
2501
- export declare const DescribeFlowExecutionRecordsResponseFilterSensitiveLog: (obj: DescribeFlowExecutionRecordsResponse) => any;
2502
-
2503
- export declare const FlowDefinitionFilterSensitiveLog: (obj: FlowDefinition) => any;
2504
-
2505
- export declare const ListConnectorEntitiesRequestFilterSensitiveLog: (obj: ListConnectorEntitiesRequest) => any;
2506
-
2507
- export declare const ListConnectorEntitiesResponseFilterSensitiveLog: (obj: ListConnectorEntitiesResponse) => any;
2508
-
2509
- export declare const ListConnectorsRequestFilterSensitiveLog: (obj: ListConnectorsRequest) => any;
2510
-
2511
- export declare const ListConnectorsResponseFilterSensitiveLog: (obj: ListConnectorsResponse) => any;
2512
-
2513
- export declare const ListFlowsRequestFilterSensitiveLog: (obj: ListFlowsRequest) => any;
2514
-
2515
- export declare const ListFlowsResponseFilterSensitiveLog: (obj: ListFlowsResponse) => any;
2516
-
2517
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
2518
-
2519
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
2520
-
2521
- export declare const RegisterConnectorRequestFilterSensitiveLog: (obj: RegisterConnectorRequest) => any;
2522
-
2523
- export declare const RegisterConnectorResponseFilterSensitiveLog: (obj: RegisterConnectorResponse) => any;
2524
-
2525
- export declare const StartFlowRequestFilterSensitiveLog: (obj: StartFlowRequest) => any;
2526
-
2527
- export declare const StartFlowResponseFilterSensitiveLog: (obj: StartFlowResponse) => any;
2528
-
2529
- export declare const StopFlowRequestFilterSensitiveLog: (obj: StopFlowRequest) => any;
2530
-
2531
- export declare const StopFlowResponseFilterSensitiveLog: (obj: StopFlowResponse) => any;
2532
-
2533
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
2534
-
2535
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
2536
-
2537
- export declare const UnregisterConnectorRequestFilterSensitiveLog: (obj: UnregisterConnectorRequest) => any;
2538
-
2539
- export declare const UnregisterConnectorResponseFilterSensitiveLog: (obj: UnregisterConnectorResponse) => any;
2540
-
2541
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
2542
-
2543
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
2544
-
2545
- export declare const UpdateConnectorProfileRequestFilterSensitiveLog: (obj: UpdateConnectorProfileRequest) => any;
2546
-
2547
- export declare const UpdateConnectorProfileResponseFilterSensitiveLog: (obj: UpdateConnectorProfileResponse) => any;
2548
-
2549
- export declare const UpdateFlowRequestFilterSensitiveLog: (obj: UpdateFlowRequest) => any;
2550
-
2551
- export declare const UpdateFlowResponseFilterSensitiveLog: (obj: UpdateFlowResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { AppflowServiceException as __BaseException } from "./AppflowServiceException";
3
+
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+
8
+ constructor(
9
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
10
+ );
11
+ }
12
+ export declare enum AggregationType {
13
+ NONE = "None",
14
+ SINGLE_FILE = "SingleFile",
15
+ }
16
+
17
+ export interface AggregationConfig {
18
+ aggregationType?: AggregationType | string;
19
+ }
20
+ export declare enum AmplitudeConnectorOperator {
21
+ BETWEEN = "BETWEEN",
22
+ }
23
+
24
+ export interface AmplitudeConnectorProfileCredentials {
25
+ apiKey: string | undefined;
26
+
27
+ secretKey: string | undefined;
28
+ }
29
+
30
+ export interface AmplitudeConnectorProfileProperties {}
31
+
32
+ export interface AmplitudeMetadata {}
33
+
34
+ export interface AmplitudeSourceProperties {
35
+ object: string | undefined;
36
+ }
37
+
38
+ export interface ApiKeyCredentials {
39
+ apiKey: string | undefined;
40
+
41
+ apiSecretKey?: string;
42
+ }
43
+
44
+ export interface AuthParameter {
45
+ key?: string;
46
+
47
+ isRequired?: boolean;
48
+
49
+ label?: string;
50
+
51
+ description?: string;
52
+
53
+ isSensitiveField?: boolean;
54
+
55
+ connectorSuppliedValues?: string[];
56
+ }
57
+
58
+ export interface CustomAuthConfig {
59
+ customAuthenticationType?: string;
60
+
61
+ authParameters?: AuthParameter[];
62
+ }
63
+ export declare enum OAuth2CustomPropType {
64
+ AUTH_URL = "AUTH_URL",
65
+ TOKEN_URL = "TOKEN_URL",
66
+ }
67
+
68
+ export interface OAuth2CustomParameter {
69
+ key?: string;
70
+
71
+ isRequired?: boolean;
72
+
73
+ label?: string;
74
+
75
+ description?: string;
76
+
77
+ isSensitiveField?: boolean;
78
+
79
+ connectorSuppliedValues?: string[];
80
+
81
+ type?: OAuth2CustomPropType | string;
82
+ }
83
+ export declare enum OAuth2GrantType {
84
+ AUTHORIZATION_CODE = "AUTHORIZATION_CODE",
85
+ CLIENT_CREDENTIALS = "CLIENT_CREDENTIALS",
86
+ }
87
+
88
+ export interface OAuth2Defaults {
89
+ oauthScopes?: string[];
90
+
91
+ tokenUrls?: string[];
92
+
93
+ authCodeUrls?: string[];
94
+
95
+ oauth2GrantTypesSupported?: (OAuth2GrantType | string)[];
96
+
97
+ oauth2CustomProperties?: OAuth2CustomParameter[];
98
+ }
99
+
100
+ export interface AuthenticationConfig {
101
+ isBasicAuthSupported?: boolean;
102
+
103
+ isApiKeyAuthSupported?: boolean;
104
+
105
+ isOAuth2Supported?: boolean;
106
+
107
+ isCustomAuthSupported?: boolean;
108
+
109
+ oAuth2Defaults?: OAuth2Defaults;
110
+
111
+ customAuthConfigs?: CustomAuthConfig[];
112
+ }
113
+ export declare enum AuthenticationType {
114
+ APIKEY = "APIKEY",
115
+ BASIC = "BASIC",
116
+ CUSTOM = "CUSTOM",
117
+ OAUTH2 = "OAUTH2",
118
+ }
119
+
120
+ export interface BasicAuthCredentials {
121
+ username: string | undefined;
122
+
123
+ password: string | undefined;
124
+ }
125
+
126
+ export declare class ConflictException extends __BaseException {
127
+ readonly name: "ConflictException";
128
+ readonly $fault: "client";
129
+
130
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
131
+ }
132
+ export declare enum ConnectionMode {
133
+ PRIVATE = "Private",
134
+ PUBLIC = "Public",
135
+ }
136
+
137
+ export declare class ConnectorAuthenticationException extends __BaseException {
138
+ readonly name: "ConnectorAuthenticationException";
139
+ readonly $fault: "client";
140
+
141
+ constructor(
142
+ opts: __ExceptionOptionType<
143
+ ConnectorAuthenticationException,
144
+ __BaseException
145
+ >
146
+ );
147
+ }
148
+
149
+ export interface CustomerProfilesMetadata {}
150
+
151
+ export interface DatadogMetadata {}
152
+
153
+ export interface DynatraceMetadata {}
154
+
155
+ export interface EventBridgeMetadata {}
156
+
157
+ export interface GoogleAnalyticsMetadata {
158
+ oAuthScopes?: string[];
159
+ }
160
+
161
+ export interface HoneycodeMetadata {
162
+ oAuthScopes?: string[];
163
+ }
164
+
165
+ export interface InforNexusMetadata {}
166
+
167
+ export interface MarketoMetadata {}
168
+
169
+ export interface RedshiftMetadata {}
170
+
171
+ export interface S3Metadata {}
172
+
173
+ export interface SalesforceMetadata {
174
+ oAuthScopes?: string[];
175
+ }
176
+
177
+ export interface SAPODataMetadata {}
178
+
179
+ export interface ServiceNowMetadata {}
180
+
181
+ export interface SingularMetadata {}
182
+
183
+ export interface SlackMetadata {
184
+ oAuthScopes?: string[];
185
+ }
186
+
187
+ export interface SnowflakeMetadata {
188
+ supportedRegions?: string[];
189
+ }
190
+
191
+ export interface TrendmicroMetadata {}
192
+
193
+ export interface UpsolverMetadata {}
194
+
195
+ export interface VeevaMetadata {}
196
+
197
+ export interface ZendeskMetadata {
198
+ oAuthScopes?: string[];
199
+ }
200
+
201
+ export interface ConnectorMetadata {
202
+ Amplitude?: AmplitudeMetadata;
203
+
204
+ Datadog?: DatadogMetadata;
205
+
206
+ Dynatrace?: DynatraceMetadata;
207
+
208
+ GoogleAnalytics?: GoogleAnalyticsMetadata;
209
+
210
+ InforNexus?: InforNexusMetadata;
211
+
212
+ Marketo?: MarketoMetadata;
213
+
214
+ Redshift?: RedshiftMetadata;
215
+
216
+ S3?: S3Metadata;
217
+
218
+ Salesforce?: SalesforceMetadata;
219
+
220
+ ServiceNow?: ServiceNowMetadata;
221
+
222
+ Singular?: SingularMetadata;
223
+
224
+ Slack?: SlackMetadata;
225
+
226
+ Snowflake?: SnowflakeMetadata;
227
+
228
+ Trendmicro?: TrendmicroMetadata;
229
+
230
+ Veeva?: VeevaMetadata;
231
+
232
+ Zendesk?: ZendeskMetadata;
233
+
234
+ EventBridge?: EventBridgeMetadata;
235
+
236
+ Upsolver?: UpsolverMetadata;
237
+
238
+ CustomerProfiles?: CustomerProfilesMetadata;
239
+
240
+ Honeycode?: HoneycodeMetadata;
241
+
242
+ SAPOData?: SAPODataMetadata;
243
+ }
244
+
245
+ export interface LambdaConnectorProvisioningConfig {
246
+ lambdaArn: string | undefined;
247
+ }
248
+
249
+ export interface ConnectorProvisioningConfig {
250
+ lambda?: LambdaConnectorProvisioningConfig;
251
+ }
252
+ export declare enum ConnectorProvisioningType {
253
+ LAMBDA = "LAMBDA",
254
+ }
255
+
256
+ export interface ConnectorRuntimeSetting {
257
+ key?: string;
258
+
259
+ dataType?: string;
260
+
261
+ isRequired?: boolean;
262
+
263
+ label?: string;
264
+
265
+ description?: string;
266
+
267
+ scope?: string;
268
+
269
+ connectorSuppliedValueOptions?: string[];
270
+ }
271
+ export declare enum ConnectorType {
272
+ AMPLITUDE = "Amplitude",
273
+ CUSTOMCONNECTOR = "CustomConnector",
274
+ CUSTOMERPROFILES = "CustomerProfiles",
275
+ DATADOG = "Datadog",
276
+ DYNATRACE = "Dynatrace",
277
+ EVENTBRIDGE = "EventBridge",
278
+ GOOGLEANALYTICS = "Googleanalytics",
279
+ HONEYCODE = "Honeycode",
280
+ INFORNEXUS = "Infornexus",
281
+ LOOKOUTMETRICS = "LookoutMetrics",
282
+ MARKETO = "Marketo",
283
+ REDSHIFT = "Redshift",
284
+ S3 = "S3",
285
+ SALESFORCE = "Salesforce",
286
+ SAPODATA = "SAPOData",
287
+ SERVICENOW = "Servicenow",
288
+ SINGULAR = "Singular",
289
+ SLACK = "Slack",
290
+ SNOWFLAKE = "Snowflake",
291
+ TRENDMICRO = "Trendmicro",
292
+ UPSOLVER = "Upsolver",
293
+ VEEVA = "Veeva",
294
+ ZENDESK = "Zendesk",
295
+ }
296
+ export declare enum Operators {
297
+ ADDITION = "ADDITION",
298
+ BETWEEN = "BETWEEN",
299
+ CONTAINS = "CONTAINS",
300
+ DIVISION = "DIVISION",
301
+ EQUAL_TO = "EQUAL_TO",
302
+ GREATER_THAN = "GREATER_THAN",
303
+ GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
304
+ LESS_THAN = "LESS_THAN",
305
+ LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
306
+ MASK_ALL = "MASK_ALL",
307
+ MASK_FIRST_N = "MASK_FIRST_N",
308
+ MASK_LAST_N = "MASK_LAST_N",
309
+ MULTIPLICATION = "MULTIPLICATION",
310
+ NOT_EQUAL_TO = "NOT_EQUAL_TO",
311
+ NO_OP = "NO_OP",
312
+ PROJECTION = "PROJECTION",
313
+ SUBTRACTION = "SUBTRACTION",
314
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
315
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
316
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
317
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
318
+ }
319
+ export declare enum ScheduleFrequencyType {
320
+ BYMINUTE = "BYMINUTE",
321
+ DAILY = "DAILY",
322
+ HOURLY = "HOURLY",
323
+ MONTHLY = "MONTHLY",
324
+ ONCE = "ONCE",
325
+ WEEKLY = "WEEKLY",
326
+ }
327
+ export declare enum TriggerType {
328
+ EVENT = "Event",
329
+ ONDEMAND = "OnDemand",
330
+ SCHEDULED = "Scheduled",
331
+ }
332
+ export declare enum WriteOperationType {
333
+ DELETE = "DELETE",
334
+ INSERT = "INSERT",
335
+ UPDATE = "UPDATE",
336
+ UPSERT = "UPSERT",
337
+ }
338
+
339
+ export interface ConnectorConfiguration {
340
+ canUseAsSource?: boolean;
341
+
342
+ canUseAsDestination?: boolean;
343
+
344
+ supportedDestinationConnectors?: (ConnectorType | string)[];
345
+
346
+ supportedSchedulingFrequencies?: (ScheduleFrequencyType | string)[];
347
+
348
+ isPrivateLinkEnabled?: boolean;
349
+
350
+ isPrivateLinkEndpointUrlRequired?: boolean;
351
+
352
+ supportedTriggerTypes?: (TriggerType | string)[];
353
+
354
+ connectorMetadata?: ConnectorMetadata;
355
+
356
+ connectorType?: ConnectorType | string;
357
+
358
+ connectorLabel?: string;
359
+
360
+ connectorDescription?: string;
361
+
362
+ connectorOwner?: string;
363
+
364
+ connectorName?: string;
365
+
366
+ connectorVersion?: string;
367
+
368
+ connectorArn?: string;
369
+
370
+ connectorModes?: string[];
371
+
372
+ authenticationConfig?: AuthenticationConfig;
373
+
374
+ connectorRuntimeSettings?: ConnectorRuntimeSetting[];
375
+
376
+ supportedApiVersions?: string[];
377
+
378
+ supportedOperators?: (Operators | string)[];
379
+
380
+ supportedWriteOperations?: (WriteOperationType | string)[];
381
+
382
+ connectorProvisioningType?: ConnectorProvisioningType | string;
383
+
384
+ connectorProvisioningConfig?: ConnectorProvisioningConfig;
385
+
386
+ logoURL?: string;
387
+
388
+ registeredAt?: Date;
389
+
390
+ registeredBy?: string;
391
+ }
392
+
393
+ export interface ConnectorDetail {
394
+ connectorDescription?: string;
395
+
396
+ connectorName?: string;
397
+
398
+ connectorOwner?: string;
399
+
400
+ connectorVersion?: string;
401
+
402
+ applicationType?: string;
403
+
404
+ connectorType?: ConnectorType | string;
405
+
406
+ connectorLabel?: string;
407
+
408
+ registeredAt?: Date;
409
+
410
+ registeredBy?: string;
411
+
412
+ connectorProvisioningType?: ConnectorProvisioningType | string;
413
+
414
+ connectorModes?: string[];
415
+ }
416
+
417
+ export interface ConnectorEntity {
418
+ name: string | undefined;
419
+
420
+ label?: string;
421
+
422
+ hasNestedEntities?: boolean;
423
+ }
424
+
425
+ export interface DestinationFieldProperties {
426
+ isCreatable?: boolean;
427
+
428
+ isNullable?: boolean;
429
+
430
+ isUpsertable?: boolean;
431
+
432
+ isUpdatable?: boolean;
433
+
434
+ isDefaultedOnCreate?: boolean;
435
+
436
+ supportedWriteOperations?: (WriteOperationType | string)[];
437
+ }
438
+
439
+ export interface SourceFieldProperties {
440
+ isRetrievable?: boolean;
441
+
442
+ isQueryable?: boolean;
443
+
444
+ isTimestampFieldForIncrementalQueries?: boolean;
445
+ }
446
+
447
+ export interface Range {
448
+ maximum?: number;
449
+
450
+ minimum?: number;
451
+ }
452
+ export declare enum Operator {
453
+ ADDITION = "ADDITION",
454
+ BETWEEN = "BETWEEN",
455
+ CONTAINS = "CONTAINS",
456
+ DIVISION = "DIVISION",
457
+ EQUAL_TO = "EQUAL_TO",
458
+ GREATER_THAN = "GREATER_THAN",
459
+ GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
460
+ LESS_THAN = "LESS_THAN",
461
+ LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
462
+ MASK_ALL = "MASK_ALL",
463
+ MASK_FIRST_N = "MASK_FIRST_N",
464
+ MASK_LAST_N = "MASK_LAST_N",
465
+ MULTIPLICATION = "MULTIPLICATION",
466
+ NOT_EQUAL_TO = "NOT_EQUAL_TO",
467
+ NO_OP = "NO_OP",
468
+ PROJECTION = "PROJECTION",
469
+ SUBTRACTION = "SUBTRACTION",
470
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
471
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
472
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
473
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
474
+ }
475
+
476
+ export interface FieldTypeDetails {
477
+ fieldType: string | undefined;
478
+
479
+ filterOperators: (Operator | string)[] | undefined;
480
+
481
+ supportedValues?: string[];
482
+
483
+ valueRegexPattern?: string;
484
+
485
+ supportedDateFormat?: string;
486
+
487
+ fieldValueRange?: Range;
488
+
489
+ fieldLengthRange?: Range;
490
+ }
491
+
492
+ export interface SupportedFieldTypeDetails {
493
+ v1: FieldTypeDetails | undefined;
494
+ }
495
+
496
+ export interface ConnectorEntityField {
497
+ identifier: string | undefined;
498
+
499
+ parentIdentifier?: string;
500
+
501
+ label?: string;
502
+
503
+ isPrimaryKey?: boolean;
504
+
505
+ defaultValue?: string;
506
+
507
+ isDeprecated?: boolean;
508
+
509
+ supportedFieldTypeDetails?: SupportedFieldTypeDetails;
510
+
511
+ description?: string;
512
+
513
+ sourceProperties?: SourceFieldProperties;
514
+
515
+ destinationProperties?: DestinationFieldProperties;
516
+
517
+ customProperties?: Record<string, string>;
518
+ }
519
+
520
+ export interface ConnectorOAuthRequest {
521
+ authCode?: string;
522
+
523
+ redirectUri?: string;
524
+ }
525
+ export declare enum DatadogConnectorOperator {
526
+ ADDITION = "ADDITION",
527
+ BETWEEN = "BETWEEN",
528
+ DIVISION = "DIVISION",
529
+ EQUAL_TO = "EQUAL_TO",
530
+ MASK_ALL = "MASK_ALL",
531
+ MASK_FIRST_N = "MASK_FIRST_N",
532
+ MASK_LAST_N = "MASK_LAST_N",
533
+ MULTIPLICATION = "MULTIPLICATION",
534
+ NO_OP = "NO_OP",
535
+ PROJECTION = "PROJECTION",
536
+ SUBTRACTION = "SUBTRACTION",
537
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
538
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
539
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
540
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
541
+ }
542
+ export declare enum DynatraceConnectorOperator {
543
+ ADDITION = "ADDITION",
544
+ BETWEEN = "BETWEEN",
545
+ DIVISION = "DIVISION",
546
+ EQUAL_TO = "EQUAL_TO",
547
+ MASK_ALL = "MASK_ALL",
548
+ MASK_FIRST_N = "MASK_FIRST_N",
549
+ MASK_LAST_N = "MASK_LAST_N",
550
+ MULTIPLICATION = "MULTIPLICATION",
551
+ NO_OP = "NO_OP",
552
+ PROJECTION = "PROJECTION",
553
+ SUBTRACTION = "SUBTRACTION",
554
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
555
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
556
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
557
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
558
+ }
559
+ export declare enum GoogleAnalyticsConnectorOperator {
560
+ BETWEEN = "BETWEEN",
561
+ PROJECTION = "PROJECTION",
562
+ }
563
+ export declare enum InforNexusConnectorOperator {
564
+ ADDITION = "ADDITION",
565
+ BETWEEN = "BETWEEN",
566
+ DIVISION = "DIVISION",
567
+ EQUAL_TO = "EQUAL_TO",
568
+ MASK_ALL = "MASK_ALL",
569
+ MASK_FIRST_N = "MASK_FIRST_N",
570
+ MASK_LAST_N = "MASK_LAST_N",
571
+ MULTIPLICATION = "MULTIPLICATION",
572
+ NO_OP = "NO_OP",
573
+ PROJECTION = "PROJECTION",
574
+ SUBTRACTION = "SUBTRACTION",
575
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
576
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
577
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
578
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
579
+ }
580
+ export declare enum MarketoConnectorOperator {
581
+ ADDITION = "ADDITION",
582
+ BETWEEN = "BETWEEN",
583
+ DIVISION = "DIVISION",
584
+ GREATER_THAN = "GREATER_THAN",
585
+ LESS_THAN = "LESS_THAN",
586
+ MASK_ALL = "MASK_ALL",
587
+ MASK_FIRST_N = "MASK_FIRST_N",
588
+ MASK_LAST_N = "MASK_LAST_N",
589
+ MULTIPLICATION = "MULTIPLICATION",
590
+ NO_OP = "NO_OP",
591
+ PROJECTION = "PROJECTION",
592
+ SUBTRACTION = "SUBTRACTION",
593
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
594
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
595
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
596
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
597
+ }
598
+ export declare enum S3ConnectorOperator {
599
+ ADDITION = "ADDITION",
600
+ BETWEEN = "BETWEEN",
601
+ DIVISION = "DIVISION",
602
+ EQUAL_TO = "EQUAL_TO",
603
+ GREATER_THAN = "GREATER_THAN",
604
+ GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
605
+ LESS_THAN = "LESS_THAN",
606
+ LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
607
+ MASK_ALL = "MASK_ALL",
608
+ MASK_FIRST_N = "MASK_FIRST_N",
609
+ MASK_LAST_N = "MASK_LAST_N",
610
+ MULTIPLICATION = "MULTIPLICATION",
611
+ NOT_EQUAL_TO = "NOT_EQUAL_TO",
612
+ NO_OP = "NO_OP",
613
+ PROJECTION = "PROJECTION",
614
+ SUBTRACTION = "SUBTRACTION",
615
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
616
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
617
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
618
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
619
+ }
620
+ export declare enum SalesforceConnectorOperator {
621
+ ADDITION = "ADDITION",
622
+ BETWEEN = "BETWEEN",
623
+ CONTAINS = "CONTAINS",
624
+ DIVISION = "DIVISION",
625
+ EQUAL_TO = "EQUAL_TO",
626
+ GREATER_THAN = "GREATER_THAN",
627
+ GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
628
+ LESS_THAN = "LESS_THAN",
629
+ LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
630
+ MASK_ALL = "MASK_ALL",
631
+ MASK_FIRST_N = "MASK_FIRST_N",
632
+ MASK_LAST_N = "MASK_LAST_N",
633
+ MULTIPLICATION = "MULTIPLICATION",
634
+ NOT_EQUAL_TO = "NOT_EQUAL_TO",
635
+ NO_OP = "NO_OP",
636
+ PROJECTION = "PROJECTION",
637
+ SUBTRACTION = "SUBTRACTION",
638
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
639
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
640
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
641
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
642
+ }
643
+ export declare enum SAPODataConnectorOperator {
644
+ ADDITION = "ADDITION",
645
+ BETWEEN = "BETWEEN",
646
+ CONTAINS = "CONTAINS",
647
+ DIVISION = "DIVISION",
648
+ EQUAL_TO = "EQUAL_TO",
649
+ GREATER_THAN = "GREATER_THAN",
650
+ GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
651
+ LESS_THAN = "LESS_THAN",
652
+ LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
653
+ MASK_ALL = "MASK_ALL",
654
+ MASK_FIRST_N = "MASK_FIRST_N",
655
+ MASK_LAST_N = "MASK_LAST_N",
656
+ MULTIPLICATION = "MULTIPLICATION",
657
+ NOT_EQUAL_TO = "NOT_EQUAL_TO",
658
+ NO_OP = "NO_OP",
659
+ PROJECTION = "PROJECTION",
660
+ SUBTRACTION = "SUBTRACTION",
661
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
662
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
663
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
664
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
665
+ }
666
+ export declare enum ServiceNowConnectorOperator {
667
+ ADDITION = "ADDITION",
668
+ BETWEEN = "BETWEEN",
669
+ CONTAINS = "CONTAINS",
670
+ DIVISION = "DIVISION",
671
+ EQUAL_TO = "EQUAL_TO",
672
+ GREATER_THAN = "GREATER_THAN",
673
+ GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
674
+ LESS_THAN = "LESS_THAN",
675
+ LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
676
+ MASK_ALL = "MASK_ALL",
677
+ MASK_FIRST_N = "MASK_FIRST_N",
678
+ MASK_LAST_N = "MASK_LAST_N",
679
+ MULTIPLICATION = "MULTIPLICATION",
680
+ NOT_EQUAL_TO = "NOT_EQUAL_TO",
681
+ NO_OP = "NO_OP",
682
+ PROJECTION = "PROJECTION",
683
+ SUBTRACTION = "SUBTRACTION",
684
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
685
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
686
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
687
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
688
+ }
689
+ export declare enum SingularConnectorOperator {
690
+ ADDITION = "ADDITION",
691
+ DIVISION = "DIVISION",
692
+ EQUAL_TO = "EQUAL_TO",
693
+ MASK_ALL = "MASK_ALL",
694
+ MASK_FIRST_N = "MASK_FIRST_N",
695
+ MASK_LAST_N = "MASK_LAST_N",
696
+ MULTIPLICATION = "MULTIPLICATION",
697
+ NO_OP = "NO_OP",
698
+ PROJECTION = "PROJECTION",
699
+ SUBTRACTION = "SUBTRACTION",
700
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
701
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
702
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
703
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
704
+ }
705
+ export declare enum SlackConnectorOperator {
706
+ ADDITION = "ADDITION",
707
+ BETWEEN = "BETWEEN",
708
+ DIVISION = "DIVISION",
709
+ EQUAL_TO = "EQUAL_TO",
710
+ GREATER_THAN = "GREATER_THAN",
711
+ GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
712
+ LESS_THAN = "LESS_THAN",
713
+ LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
714
+ MASK_ALL = "MASK_ALL",
715
+ MASK_FIRST_N = "MASK_FIRST_N",
716
+ MASK_LAST_N = "MASK_LAST_N",
717
+ MULTIPLICATION = "MULTIPLICATION",
718
+ NO_OP = "NO_OP",
719
+ PROJECTION = "PROJECTION",
720
+ SUBTRACTION = "SUBTRACTION",
721
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
722
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
723
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
724
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
725
+ }
726
+ export declare enum TrendmicroConnectorOperator {
727
+ ADDITION = "ADDITION",
728
+ DIVISION = "DIVISION",
729
+ EQUAL_TO = "EQUAL_TO",
730
+ MASK_ALL = "MASK_ALL",
731
+ MASK_FIRST_N = "MASK_FIRST_N",
732
+ MASK_LAST_N = "MASK_LAST_N",
733
+ MULTIPLICATION = "MULTIPLICATION",
734
+ NO_OP = "NO_OP",
735
+ PROJECTION = "PROJECTION",
736
+ SUBTRACTION = "SUBTRACTION",
737
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
738
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
739
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
740
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
741
+ }
742
+ export declare enum VeevaConnectorOperator {
743
+ ADDITION = "ADDITION",
744
+ BETWEEN = "BETWEEN",
745
+ CONTAINS = "CONTAINS",
746
+ DIVISION = "DIVISION",
747
+ EQUAL_TO = "EQUAL_TO",
748
+ GREATER_THAN = "GREATER_THAN",
749
+ GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
750
+ LESS_THAN = "LESS_THAN",
751
+ LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
752
+ MASK_ALL = "MASK_ALL",
753
+ MASK_FIRST_N = "MASK_FIRST_N",
754
+ MASK_LAST_N = "MASK_LAST_N",
755
+ MULTIPLICATION = "MULTIPLICATION",
756
+ NOT_EQUAL_TO = "NOT_EQUAL_TO",
757
+ NO_OP = "NO_OP",
758
+ PROJECTION = "PROJECTION",
759
+ SUBTRACTION = "SUBTRACTION",
760
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
761
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
762
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
763
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
764
+ }
765
+ export declare enum ZendeskConnectorOperator {
766
+ ADDITION = "ADDITION",
767
+ DIVISION = "DIVISION",
768
+ GREATER_THAN = "GREATER_THAN",
769
+ MASK_ALL = "MASK_ALL",
770
+ MASK_FIRST_N = "MASK_FIRST_N",
771
+ MASK_LAST_N = "MASK_LAST_N",
772
+ MULTIPLICATION = "MULTIPLICATION",
773
+ NO_OP = "NO_OP",
774
+ PROJECTION = "PROJECTION",
775
+ SUBTRACTION = "SUBTRACTION",
776
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
777
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
778
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
779
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
780
+ }
781
+
782
+ export interface ConnectorOperator {
783
+ Amplitude?: AmplitudeConnectorOperator | string;
784
+
785
+ Datadog?: DatadogConnectorOperator | string;
786
+
787
+ Dynatrace?: DynatraceConnectorOperator | string;
788
+
789
+ GoogleAnalytics?: GoogleAnalyticsConnectorOperator | string;
790
+
791
+ InforNexus?: InforNexusConnectorOperator | string;
792
+
793
+ Marketo?: MarketoConnectorOperator | string;
794
+
795
+ S3?: S3ConnectorOperator | string;
796
+
797
+ Salesforce?: SalesforceConnectorOperator | string;
798
+
799
+ ServiceNow?: ServiceNowConnectorOperator | string;
800
+
801
+ Singular?: SingularConnectorOperator | string;
802
+
803
+ Slack?: SlackConnectorOperator | string;
804
+
805
+ Trendmicro?: TrendmicroConnectorOperator | string;
806
+
807
+ Veeva?: VeevaConnectorOperator | string;
808
+
809
+ Zendesk?: ZendeskConnectorOperator | string;
810
+
811
+ SAPOData?: SAPODataConnectorOperator | string;
812
+
813
+ CustomConnector?: Operator | string;
814
+ }
815
+
816
+ export interface OAuth2Properties {
817
+ tokenUrl: string | undefined;
818
+
819
+ oAuth2GrantType: OAuth2GrantType | string | undefined;
820
+
821
+ tokenUrlCustomProperties?: Record<string, string>;
822
+ }
823
+
824
+ export interface CustomConnectorProfileProperties {
825
+ profileProperties?: Record<string, string>;
826
+
827
+ oAuth2Properties?: OAuth2Properties;
828
+ }
829
+
830
+ export interface DatadogConnectorProfileProperties {
831
+ instanceUrl: string | undefined;
832
+ }
833
+
834
+ export interface DynatraceConnectorProfileProperties {
835
+ instanceUrl: string | undefined;
836
+ }
837
+
838
+ export interface GoogleAnalyticsConnectorProfileProperties {}
839
+
840
+ export interface HoneycodeConnectorProfileProperties {}
841
+
842
+ export interface InforNexusConnectorProfileProperties {
843
+ instanceUrl: string | undefined;
844
+ }
845
+
846
+ export interface MarketoConnectorProfileProperties {
847
+ instanceUrl: string | undefined;
848
+ }
849
+
850
+ export interface RedshiftConnectorProfileProperties {
851
+ databaseUrl: string | undefined;
852
+
853
+ bucketName: string | undefined;
854
+
855
+ bucketPrefix?: string;
856
+
857
+ roleArn: string | undefined;
858
+ }
859
+
860
+ export interface SalesforceConnectorProfileProperties {
861
+ instanceUrl?: string;
862
+
863
+ isSandboxEnvironment?: boolean;
864
+ }
865
+
866
+ export interface OAuthProperties {
867
+ tokenUrl: string | undefined;
868
+
869
+ authCodeUrl: string | undefined;
870
+
871
+ oAuthScopes: string[] | undefined;
872
+ }
873
+
874
+ export interface SAPODataConnectorProfileProperties {
875
+ applicationHostUrl: string | undefined;
876
+
877
+ applicationServicePath: string | undefined;
878
+
879
+ portNumber: number | undefined;
880
+
881
+ clientNumber: string | undefined;
882
+
883
+ logonLanguage?: string;
884
+
885
+ privateLinkServiceName?: string;
886
+
887
+ oAuthProperties?: OAuthProperties;
888
+ }
889
+
890
+ export interface ServiceNowConnectorProfileProperties {
891
+ instanceUrl: string | undefined;
892
+ }
893
+
894
+ export interface SingularConnectorProfileProperties {}
895
+
896
+ export interface SlackConnectorProfileProperties {
897
+ instanceUrl: string | undefined;
898
+ }
899
+
900
+ export interface SnowflakeConnectorProfileProperties {
901
+ warehouse: string | undefined;
902
+
903
+ stage: string | undefined;
904
+
905
+ bucketName: string | undefined;
906
+
907
+ bucketPrefix?: string;
908
+
909
+ privateLinkServiceName?: string;
910
+
911
+ accountName?: string;
912
+
913
+ region?: string;
914
+ }
915
+
916
+ export interface TrendmicroConnectorProfileProperties {}
917
+
918
+ export interface VeevaConnectorProfileProperties {
919
+ instanceUrl: string | undefined;
920
+ }
921
+
922
+ export interface ZendeskConnectorProfileProperties {
923
+ instanceUrl: string | undefined;
924
+ }
925
+
926
+ export interface ConnectorProfileProperties {
927
+ Amplitude?: AmplitudeConnectorProfileProperties;
928
+
929
+ Datadog?: DatadogConnectorProfileProperties;
930
+
931
+ Dynatrace?: DynatraceConnectorProfileProperties;
932
+
933
+ GoogleAnalytics?: GoogleAnalyticsConnectorProfileProperties;
934
+
935
+ Honeycode?: HoneycodeConnectorProfileProperties;
936
+
937
+ InforNexus?: InforNexusConnectorProfileProperties;
938
+
939
+ Marketo?: MarketoConnectorProfileProperties;
940
+
941
+ Redshift?: RedshiftConnectorProfileProperties;
942
+
943
+ Salesforce?: SalesforceConnectorProfileProperties;
944
+
945
+ ServiceNow?: ServiceNowConnectorProfileProperties;
946
+
947
+ Singular?: SingularConnectorProfileProperties;
948
+
949
+ Slack?: SlackConnectorProfileProperties;
950
+
951
+ Snowflake?: SnowflakeConnectorProfileProperties;
952
+
953
+ Trendmicro?: TrendmicroConnectorProfileProperties;
954
+
955
+ Veeva?: VeevaConnectorProfileProperties;
956
+
957
+ Zendesk?: ZendeskConnectorProfileProperties;
958
+
959
+ SAPOData?: SAPODataConnectorProfileProperties;
960
+
961
+ CustomConnector?: CustomConnectorProfileProperties;
962
+ }
963
+ export declare enum PrivateConnectionProvisioningFailureCause {
964
+ ACCESS_DENIED = "ACCESS_DENIED",
965
+ CONNECTOR_AUTHENTICATION = "CONNECTOR_AUTHENTICATION",
966
+ CONNECTOR_SERVER = "CONNECTOR_SERVER",
967
+ INTERNAL_SERVER = "INTERNAL_SERVER",
968
+ VALIDATION = "VALIDATION",
969
+ }
970
+ export declare enum PrivateConnectionProvisioningStatus {
971
+ CREATED = "CREATED",
972
+ FAILED = "FAILED",
973
+ PENDING = "PENDING",
974
+ }
975
+
976
+ export interface PrivateConnectionProvisioningState {
977
+ status?: PrivateConnectionProvisioningStatus | string;
978
+
979
+ failureMessage?: string;
980
+
981
+ failureCause?: PrivateConnectionProvisioningFailureCause | string;
982
+ }
983
+
984
+ export interface ConnectorProfile {
985
+ connectorProfileArn?: string;
986
+
987
+ connectorProfileName?: string;
988
+
989
+ connectorType?: ConnectorType | string;
990
+
991
+ connectorLabel?: string;
992
+
993
+ connectionMode?: ConnectionMode | string;
994
+
995
+ credentialsArn?: string;
996
+
997
+ connectorProfileProperties?: ConnectorProfileProperties;
998
+
999
+ createdAt?: Date;
1000
+
1001
+ lastUpdatedAt?: Date;
1002
+
1003
+ privateConnectionProvisioningState?: PrivateConnectionProvisioningState;
1004
+ }
1005
+
1006
+ export interface CustomAuthCredentials {
1007
+ customAuthenticationType: string | undefined;
1008
+
1009
+ credentialsMap?: Record<string, string>;
1010
+ }
1011
+
1012
+ export interface OAuth2Credentials {
1013
+ clientId?: string;
1014
+
1015
+ clientSecret?: string;
1016
+
1017
+ accessToken?: string;
1018
+
1019
+ refreshToken?: string;
1020
+
1021
+ oAuthRequest?: ConnectorOAuthRequest;
1022
+ }
1023
+
1024
+ export interface CustomConnectorProfileCredentials {
1025
+ authenticationType: AuthenticationType | string | undefined;
1026
+
1027
+ basic?: BasicAuthCredentials;
1028
+
1029
+ oauth2?: OAuth2Credentials;
1030
+
1031
+ apiKey?: ApiKeyCredentials;
1032
+
1033
+ custom?: CustomAuthCredentials;
1034
+ }
1035
+
1036
+ export interface DatadogConnectorProfileCredentials {
1037
+ apiKey: string | undefined;
1038
+
1039
+ applicationKey: string | undefined;
1040
+ }
1041
+
1042
+ export interface DynatraceConnectorProfileCredentials {
1043
+ apiToken: string | undefined;
1044
+ }
1045
+
1046
+ export interface GoogleAnalyticsConnectorProfileCredentials {
1047
+ clientId: string | undefined;
1048
+
1049
+ clientSecret: string | undefined;
1050
+
1051
+ accessToken?: string;
1052
+
1053
+ refreshToken?: string;
1054
+
1055
+ oAuthRequest?: ConnectorOAuthRequest;
1056
+ }
1057
+
1058
+ export interface HoneycodeConnectorProfileCredentials {
1059
+ accessToken?: string;
1060
+
1061
+ refreshToken?: string;
1062
+
1063
+ oAuthRequest?: ConnectorOAuthRequest;
1064
+ }
1065
+
1066
+ export interface InforNexusConnectorProfileCredentials {
1067
+ accessKeyId: string | undefined;
1068
+
1069
+ userId: string | undefined;
1070
+
1071
+ secretAccessKey: string | undefined;
1072
+
1073
+ datakey: string | undefined;
1074
+ }
1075
+
1076
+ export interface MarketoConnectorProfileCredentials {
1077
+ clientId: string | undefined;
1078
+
1079
+ clientSecret: string | undefined;
1080
+
1081
+ accessToken?: string;
1082
+
1083
+ oAuthRequest?: ConnectorOAuthRequest;
1084
+ }
1085
+
1086
+ export interface RedshiftConnectorProfileCredentials {
1087
+ username: string | undefined;
1088
+
1089
+ password: string | undefined;
1090
+ }
1091
+
1092
+ export interface SalesforceConnectorProfileCredentials {
1093
+ accessToken?: string;
1094
+
1095
+ refreshToken?: string;
1096
+
1097
+ oAuthRequest?: ConnectorOAuthRequest;
1098
+
1099
+ clientCredentialsArn?: string;
1100
+ }
1101
+
1102
+ export interface OAuthCredentials {
1103
+ clientId: string | undefined;
1104
+
1105
+ clientSecret: string | undefined;
1106
+
1107
+ accessToken?: string;
1108
+
1109
+ refreshToken?: string;
1110
+
1111
+ oAuthRequest?: ConnectorOAuthRequest;
1112
+ }
1113
+
1114
+ export interface SAPODataConnectorProfileCredentials {
1115
+ basicAuthCredentials?: BasicAuthCredentials;
1116
+
1117
+ oAuthCredentials?: OAuthCredentials;
1118
+ }
1119
+
1120
+ export interface ServiceNowConnectorProfileCredentials {
1121
+ username: string | undefined;
1122
+
1123
+ password: string | undefined;
1124
+ }
1125
+
1126
+ export interface SingularConnectorProfileCredentials {
1127
+ apiKey: string | undefined;
1128
+ }
1129
+
1130
+ export interface SlackConnectorProfileCredentials {
1131
+ clientId: string | undefined;
1132
+
1133
+ clientSecret: string | undefined;
1134
+
1135
+ accessToken?: string;
1136
+
1137
+ oAuthRequest?: ConnectorOAuthRequest;
1138
+ }
1139
+
1140
+ export interface SnowflakeConnectorProfileCredentials {
1141
+ username: string | undefined;
1142
+
1143
+ password: string | undefined;
1144
+ }
1145
+
1146
+ export interface TrendmicroConnectorProfileCredentials {
1147
+ apiSecretKey: string | undefined;
1148
+ }
1149
+
1150
+ export interface VeevaConnectorProfileCredentials {
1151
+ username: string | undefined;
1152
+
1153
+ password: string | undefined;
1154
+ }
1155
+
1156
+ export interface ZendeskConnectorProfileCredentials {
1157
+ clientId: string | undefined;
1158
+
1159
+ clientSecret: string | undefined;
1160
+
1161
+ accessToken?: string;
1162
+
1163
+ oAuthRequest?: ConnectorOAuthRequest;
1164
+ }
1165
+
1166
+ export interface ConnectorProfileCredentials {
1167
+ Amplitude?: AmplitudeConnectorProfileCredentials;
1168
+
1169
+ Datadog?: DatadogConnectorProfileCredentials;
1170
+
1171
+ Dynatrace?: DynatraceConnectorProfileCredentials;
1172
+
1173
+ GoogleAnalytics?: GoogleAnalyticsConnectorProfileCredentials;
1174
+
1175
+ Honeycode?: HoneycodeConnectorProfileCredentials;
1176
+
1177
+ InforNexus?: InforNexusConnectorProfileCredentials;
1178
+
1179
+ Marketo?: MarketoConnectorProfileCredentials;
1180
+
1181
+ Redshift?: RedshiftConnectorProfileCredentials;
1182
+
1183
+ Salesforce?: SalesforceConnectorProfileCredentials;
1184
+
1185
+ ServiceNow?: ServiceNowConnectorProfileCredentials;
1186
+
1187
+ Singular?: SingularConnectorProfileCredentials;
1188
+
1189
+ Slack?: SlackConnectorProfileCredentials;
1190
+
1191
+ Snowflake?: SnowflakeConnectorProfileCredentials;
1192
+
1193
+ Trendmicro?: TrendmicroConnectorProfileCredentials;
1194
+
1195
+ Veeva?: VeevaConnectorProfileCredentials;
1196
+
1197
+ Zendesk?: ZendeskConnectorProfileCredentials;
1198
+
1199
+ SAPOData?: SAPODataConnectorProfileCredentials;
1200
+
1201
+ CustomConnector?: CustomConnectorProfileCredentials;
1202
+ }
1203
+
1204
+ export interface ConnectorProfileConfig {
1205
+ connectorProfileProperties: ConnectorProfileProperties | undefined;
1206
+
1207
+ connectorProfileCredentials: ConnectorProfileCredentials | undefined;
1208
+ }
1209
+
1210
+ export declare class ConnectorServerException extends __BaseException {
1211
+ readonly name: "ConnectorServerException";
1212
+ readonly $fault: "client";
1213
+
1214
+ constructor(
1215
+ opts: __ExceptionOptionType<ConnectorServerException, __BaseException>
1216
+ );
1217
+ }
1218
+ export interface CreateConnectorProfileRequest {
1219
+ connectorProfileName: string | undefined;
1220
+
1221
+ kmsArn?: string;
1222
+
1223
+ connectorType: ConnectorType | string | undefined;
1224
+
1225
+ connectorLabel?: string;
1226
+
1227
+ connectionMode: ConnectionMode | string | undefined;
1228
+
1229
+ connectorProfileConfig: ConnectorProfileConfig | undefined;
1230
+ }
1231
+ export interface CreateConnectorProfileResponse {
1232
+ connectorProfileArn?: string;
1233
+ }
1234
+
1235
+ export declare class InternalServerException extends __BaseException {
1236
+ readonly name: "InternalServerException";
1237
+ readonly $fault: "server";
1238
+
1239
+ constructor(
1240
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
1241
+ );
1242
+ }
1243
+
1244
+ export declare class ServiceQuotaExceededException extends __BaseException {
1245
+ readonly name: "ServiceQuotaExceededException";
1246
+ readonly $fault: "client";
1247
+
1248
+ constructor(
1249
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
1250
+ );
1251
+ }
1252
+
1253
+ export declare class ValidationException extends __BaseException {
1254
+ readonly name: "ValidationException";
1255
+ readonly $fault: "client";
1256
+
1257
+ constructor(
1258
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
1259
+ );
1260
+ }
1261
+
1262
+ export interface ErrorHandlingConfig {
1263
+ failOnFirstDestinationError?: boolean;
1264
+
1265
+ bucketPrefix?: string;
1266
+
1267
+ bucketName?: string;
1268
+ }
1269
+
1270
+ export interface CustomConnectorDestinationProperties {
1271
+ entityName: string | undefined;
1272
+
1273
+ errorHandlingConfig?: ErrorHandlingConfig;
1274
+
1275
+ writeOperationType?: WriteOperationType | string;
1276
+
1277
+ idFieldNames?: string[];
1278
+
1279
+ customProperties?: Record<string, string>;
1280
+ }
1281
+
1282
+ export interface CustomerProfilesDestinationProperties {
1283
+ domainName: string | undefined;
1284
+
1285
+ objectTypeName?: string;
1286
+ }
1287
+
1288
+ export interface EventBridgeDestinationProperties {
1289
+ object: string | undefined;
1290
+
1291
+ errorHandlingConfig?: ErrorHandlingConfig;
1292
+ }
1293
+
1294
+ export interface HoneycodeDestinationProperties {
1295
+ object: string | undefined;
1296
+
1297
+ errorHandlingConfig?: ErrorHandlingConfig;
1298
+ }
1299
+
1300
+ export interface LookoutMetricsDestinationProperties {}
1301
+
1302
+ export interface MarketoDestinationProperties {
1303
+ object: string | undefined;
1304
+
1305
+ errorHandlingConfig?: ErrorHandlingConfig;
1306
+ }
1307
+
1308
+ export interface RedshiftDestinationProperties {
1309
+ object: string | undefined;
1310
+
1311
+ intermediateBucketName: string | undefined;
1312
+
1313
+ bucketPrefix?: string;
1314
+
1315
+ errorHandlingConfig?: ErrorHandlingConfig;
1316
+ }
1317
+ export declare enum FileType {
1318
+ CSV = "CSV",
1319
+ JSON = "JSON",
1320
+ PARQUET = "PARQUET",
1321
+ }
1322
+ export declare enum PrefixFormat {
1323
+ DAY = "DAY",
1324
+ HOUR = "HOUR",
1325
+ MINUTE = "MINUTE",
1326
+ MONTH = "MONTH",
1327
+ YEAR = "YEAR",
1328
+ }
1329
+ export declare enum PrefixType {
1330
+ FILENAME = "FILENAME",
1331
+ PATH = "PATH",
1332
+ PATH_AND_FILENAME = "PATH_AND_FILENAME",
1333
+ }
1334
+
1335
+ export interface PrefixConfig {
1336
+ prefixType?: PrefixType | string;
1337
+
1338
+ prefixFormat?: PrefixFormat | string;
1339
+ }
1340
+
1341
+ export interface S3OutputFormatConfig {
1342
+ fileType?: FileType | string;
1343
+
1344
+ prefixConfig?: PrefixConfig;
1345
+
1346
+ aggregationConfig?: AggregationConfig;
1347
+
1348
+ preserveSourceDataTyping?: boolean;
1349
+ }
1350
+
1351
+ export interface S3DestinationProperties {
1352
+ bucketName: string | undefined;
1353
+
1354
+ bucketPrefix?: string;
1355
+
1356
+ s3OutputFormatConfig?: S3OutputFormatConfig;
1357
+ }
1358
+
1359
+ export interface SalesforceDestinationProperties {
1360
+ object: string | undefined;
1361
+
1362
+ idFieldNames?: string[];
1363
+
1364
+ errorHandlingConfig?: ErrorHandlingConfig;
1365
+
1366
+ writeOperationType?: WriteOperationType | string;
1367
+ }
1368
+
1369
+ export interface SuccessResponseHandlingConfig {
1370
+ bucketPrefix?: string;
1371
+
1372
+ bucketName?: string;
1373
+ }
1374
+
1375
+ export interface SAPODataDestinationProperties {
1376
+ objectPath: string | undefined;
1377
+
1378
+ successResponseHandlingConfig?: SuccessResponseHandlingConfig;
1379
+
1380
+ idFieldNames?: string[];
1381
+
1382
+ errorHandlingConfig?: ErrorHandlingConfig;
1383
+
1384
+ writeOperationType?: WriteOperationType | string;
1385
+ }
1386
+
1387
+ export interface SnowflakeDestinationProperties {
1388
+ object: string | undefined;
1389
+
1390
+ intermediateBucketName: string | undefined;
1391
+
1392
+ bucketPrefix?: string;
1393
+
1394
+ errorHandlingConfig?: ErrorHandlingConfig;
1395
+ }
1396
+
1397
+ export interface UpsolverS3OutputFormatConfig {
1398
+ fileType?: FileType | string;
1399
+
1400
+ prefixConfig: PrefixConfig | undefined;
1401
+
1402
+ aggregationConfig?: AggregationConfig;
1403
+ }
1404
+
1405
+ export interface UpsolverDestinationProperties {
1406
+ bucketName: string | undefined;
1407
+
1408
+ bucketPrefix?: string;
1409
+
1410
+ s3OutputFormatConfig: UpsolverS3OutputFormatConfig | undefined;
1411
+ }
1412
+
1413
+ export interface ZendeskDestinationProperties {
1414
+ object: string | undefined;
1415
+
1416
+ idFieldNames?: string[];
1417
+
1418
+ errorHandlingConfig?: ErrorHandlingConfig;
1419
+
1420
+ writeOperationType?: WriteOperationType | string;
1421
+ }
1422
+
1423
+ export interface DestinationConnectorProperties {
1424
+ Redshift?: RedshiftDestinationProperties;
1425
+
1426
+ S3?: S3DestinationProperties;
1427
+
1428
+ Salesforce?: SalesforceDestinationProperties;
1429
+
1430
+ Snowflake?: SnowflakeDestinationProperties;
1431
+
1432
+ EventBridge?: EventBridgeDestinationProperties;
1433
+
1434
+ LookoutMetrics?: LookoutMetricsDestinationProperties;
1435
+
1436
+ Upsolver?: UpsolverDestinationProperties;
1437
+
1438
+ Honeycode?: HoneycodeDestinationProperties;
1439
+
1440
+ CustomerProfiles?: CustomerProfilesDestinationProperties;
1441
+
1442
+ Zendesk?: ZendeskDestinationProperties;
1443
+
1444
+ Marketo?: MarketoDestinationProperties;
1445
+
1446
+ CustomConnector?: CustomConnectorDestinationProperties;
1447
+
1448
+ SAPOData?: SAPODataDestinationProperties;
1449
+ }
1450
+
1451
+ export interface DestinationFlowConfig {
1452
+ connectorType: ConnectorType | string | undefined;
1453
+
1454
+ apiVersion?: string;
1455
+
1456
+ connectorProfileName?: string;
1457
+
1458
+ destinationConnectorProperties: DestinationConnectorProperties | undefined;
1459
+ }
1460
+
1461
+ export interface IncrementalPullConfig {
1462
+ datetimeTypeFieldName?: string;
1463
+ }
1464
+
1465
+ export interface CustomConnectorSourceProperties {
1466
+ entityName: string | undefined;
1467
+
1468
+ customProperties?: Record<string, string>;
1469
+ }
1470
+
1471
+ export interface DatadogSourceProperties {
1472
+ object: string | undefined;
1473
+ }
1474
+
1475
+ export interface DynatraceSourceProperties {
1476
+ object: string | undefined;
1477
+ }
1478
+
1479
+ export interface GoogleAnalyticsSourceProperties {
1480
+ object: string | undefined;
1481
+ }
1482
+
1483
+ export interface InforNexusSourceProperties {
1484
+ object: string | undefined;
1485
+ }
1486
+
1487
+ export interface MarketoSourceProperties {
1488
+ object: string | undefined;
1489
+ }
1490
+ export declare enum S3InputFileType {
1491
+ CSV = "CSV",
1492
+ JSON = "JSON",
1493
+ }
1494
+
1495
+ export interface S3InputFormatConfig {
1496
+ s3InputFileType?: S3InputFileType | string;
1497
+ }
1498
+
1499
+ export interface S3SourceProperties {
1500
+ bucketName: string | undefined;
1501
+
1502
+ bucketPrefix?: string;
1503
+
1504
+ s3InputFormatConfig?: S3InputFormatConfig;
1505
+ }
1506
+
1507
+ export interface SalesforceSourceProperties {
1508
+ object: string | undefined;
1509
+
1510
+ enableDynamicFieldUpdate?: boolean;
1511
+
1512
+ includeDeletedRecords?: boolean;
1513
+ }
1514
+
1515
+ export interface SAPODataSourceProperties {
1516
+ objectPath?: string;
1517
+ }
1518
+
1519
+ export interface ServiceNowSourceProperties {
1520
+ object: string | undefined;
1521
+ }
1522
+
1523
+ export interface SingularSourceProperties {
1524
+ object: string | undefined;
1525
+ }
1526
+
1527
+ export interface SlackSourceProperties {
1528
+ object: string | undefined;
1529
+ }
1530
+
1531
+ export interface TrendmicroSourceProperties {
1532
+ object: string | undefined;
1533
+ }
1534
+
1535
+ export interface VeevaSourceProperties {
1536
+ object: string | undefined;
1537
+
1538
+ documentType?: string;
1539
+
1540
+ includeSourceFiles?: boolean;
1541
+
1542
+ includeRenditions?: boolean;
1543
+
1544
+ includeAllVersions?: boolean;
1545
+ }
1546
+
1547
+ export interface ZendeskSourceProperties {
1548
+ object: string | undefined;
1549
+ }
1550
+
1551
+ export interface SourceConnectorProperties {
1552
+ Amplitude?: AmplitudeSourceProperties;
1553
+
1554
+ Datadog?: DatadogSourceProperties;
1555
+
1556
+ Dynatrace?: DynatraceSourceProperties;
1557
+
1558
+ GoogleAnalytics?: GoogleAnalyticsSourceProperties;
1559
+
1560
+ InforNexus?: InforNexusSourceProperties;
1561
+
1562
+ Marketo?: MarketoSourceProperties;
1563
+
1564
+ S3?: S3SourceProperties;
1565
+
1566
+ Salesforce?: SalesforceSourceProperties;
1567
+
1568
+ ServiceNow?: ServiceNowSourceProperties;
1569
+
1570
+ Singular?: SingularSourceProperties;
1571
+
1572
+ Slack?: SlackSourceProperties;
1573
+
1574
+ Trendmicro?: TrendmicroSourceProperties;
1575
+
1576
+ Veeva?: VeevaSourceProperties;
1577
+
1578
+ Zendesk?: ZendeskSourceProperties;
1579
+
1580
+ SAPOData?: SAPODataSourceProperties;
1581
+
1582
+ CustomConnector?: CustomConnectorSourceProperties;
1583
+ }
1584
+
1585
+ export interface SourceFlowConfig {
1586
+ connectorType: ConnectorType | string | undefined;
1587
+
1588
+ apiVersion?: string;
1589
+
1590
+ connectorProfileName?: string;
1591
+
1592
+ sourceConnectorProperties: SourceConnectorProperties | undefined;
1593
+
1594
+ incrementalPullConfig?: IncrementalPullConfig;
1595
+ }
1596
+ export declare enum OperatorPropertiesKeys {
1597
+ CONCAT_FORMAT = "CONCAT_FORMAT",
1598
+ DATA_TYPE = "DATA_TYPE",
1599
+ DESTINATION_DATA_TYPE = "DESTINATION_DATA_TYPE",
1600
+ EXCLUDE_SOURCE_FIELDS_LIST = "EXCLUDE_SOURCE_FIELDS_LIST",
1601
+ LOWER_BOUND = "LOWER_BOUND",
1602
+ MASK_LENGTH = "MASK_LENGTH",
1603
+ MASK_VALUE = "MASK_VALUE",
1604
+ MATH_OPERATION_FIELDS_ORDER = "MATH_OPERATION_FIELDS_ORDER",
1605
+ SOURCE_DATA_TYPE = "SOURCE_DATA_TYPE",
1606
+ SUBFIELD_CATEGORY_MAP = "SUBFIELD_CATEGORY_MAP",
1607
+ TRUNCATE_LENGTH = "TRUNCATE_LENGTH",
1608
+ UPPER_BOUND = "UPPER_BOUND",
1609
+ VALIDATION_ACTION = "VALIDATION_ACTION",
1610
+ VALUE = "VALUE",
1611
+ VALUES = "VALUES",
1612
+ }
1613
+ export declare enum TaskType {
1614
+ ARITHMETIC = "Arithmetic",
1615
+ FILTER = "Filter",
1616
+ MAP = "Map",
1617
+ MAP_ALL = "Map_all",
1618
+ MASK = "Mask",
1619
+ MERGE = "Merge",
1620
+ PASSTHROUGH = "Passthrough",
1621
+ TRUNCATE = "Truncate",
1622
+ VALIDATE = "Validate",
1623
+ }
1624
+
1625
+ export interface Task {
1626
+ sourceFields: string[] | undefined;
1627
+
1628
+ connectorOperator?: ConnectorOperator;
1629
+
1630
+ destinationField?: string;
1631
+
1632
+ taskType: TaskType | string | undefined;
1633
+
1634
+ taskProperties?: Record<string, string>;
1635
+ }
1636
+ export declare enum DataPullMode {
1637
+ COMPLETE = "Complete",
1638
+ INCREMENTAL = "Incremental",
1639
+ }
1640
+
1641
+ export interface ScheduledTriggerProperties {
1642
+ scheduleExpression: string | undefined;
1643
+
1644
+ dataPullMode?: DataPullMode | string;
1645
+
1646
+ scheduleStartTime?: Date;
1647
+
1648
+ scheduleEndTime?: Date;
1649
+
1650
+ timezone?: string;
1651
+
1652
+ scheduleOffset?: number;
1653
+
1654
+ firstExecutionFrom?: Date;
1655
+
1656
+ flowErrorDeactivationThreshold?: number;
1657
+ }
1658
+
1659
+ export interface TriggerProperties {
1660
+ Scheduled?: ScheduledTriggerProperties;
1661
+ }
1662
+
1663
+ export interface TriggerConfig {
1664
+ triggerType: TriggerType | string | undefined;
1665
+
1666
+ triggerProperties?: TriggerProperties;
1667
+ }
1668
+ export interface CreateFlowRequest {
1669
+ flowName: string | undefined;
1670
+
1671
+ description?: string;
1672
+
1673
+ kmsArn?: string;
1674
+
1675
+ triggerConfig: TriggerConfig | undefined;
1676
+
1677
+ sourceFlowConfig: SourceFlowConfig | undefined;
1678
+
1679
+ destinationFlowConfigList: DestinationFlowConfig[] | undefined;
1680
+
1681
+ tasks: Task[] | undefined;
1682
+
1683
+ tags?: Record<string, string>;
1684
+ }
1685
+ export declare enum FlowStatus {
1686
+ ACTIVE = "Active",
1687
+ DELETED = "Deleted",
1688
+ DEPRECATED = "Deprecated",
1689
+ DRAFT = "Draft",
1690
+ ERRORED = "Errored",
1691
+ SUSPENDED = "Suspended",
1692
+ }
1693
+ export interface CreateFlowResponse {
1694
+ flowArn?: string;
1695
+
1696
+ flowStatus?: FlowStatus | string;
1697
+ }
1698
+
1699
+ export declare class ResourceNotFoundException extends __BaseException {
1700
+ readonly name: "ResourceNotFoundException";
1701
+ readonly $fault: "client";
1702
+
1703
+ constructor(
1704
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
1705
+ );
1706
+ }
1707
+ export interface DeleteConnectorProfileRequest {
1708
+ connectorProfileName: string | undefined;
1709
+
1710
+ forceDelete?: boolean;
1711
+ }
1712
+ export interface DeleteConnectorProfileResponse {}
1713
+ export interface DeleteFlowRequest {
1714
+ flowName: string | undefined;
1715
+
1716
+ forceDelete?: boolean;
1717
+ }
1718
+ export interface DeleteFlowResponse {}
1719
+ export interface DescribeConnectorRequest {
1720
+ connectorType: ConnectorType | string | undefined;
1721
+
1722
+ connectorLabel?: string;
1723
+ }
1724
+ export interface DescribeConnectorResponse {
1725
+ connectorConfiguration?: ConnectorConfiguration;
1726
+ }
1727
+ export interface DescribeConnectorEntityRequest {
1728
+ connectorEntityName: string | undefined;
1729
+
1730
+ connectorType?: ConnectorType | string;
1731
+
1732
+ connectorProfileName?: string;
1733
+
1734
+ apiVersion?: string;
1735
+ }
1736
+ export interface DescribeConnectorEntityResponse {
1737
+ connectorEntityFields: ConnectorEntityField[] | undefined;
1738
+ }
1739
+ export interface DescribeConnectorProfilesRequest {
1740
+ connectorProfileNames?: string[];
1741
+
1742
+ connectorType?: ConnectorType | string;
1743
+
1744
+ connectorLabel?: string;
1745
+
1746
+ maxResults?: number;
1747
+
1748
+ nextToken?: string;
1749
+ }
1750
+ export interface DescribeConnectorProfilesResponse {
1751
+ connectorProfileDetails?: ConnectorProfile[];
1752
+
1753
+ nextToken?: string;
1754
+ }
1755
+ export interface DescribeConnectorsRequest {
1756
+ connectorTypes?: (ConnectorType | string)[];
1757
+
1758
+ maxResults?: number;
1759
+
1760
+ nextToken?: string;
1761
+ }
1762
+ export interface DescribeConnectorsResponse {
1763
+ connectorConfigurations?: Record<string, ConnectorConfiguration>;
1764
+
1765
+ connectors?: ConnectorDetail[];
1766
+
1767
+ nextToken?: string;
1768
+ }
1769
+ export interface DescribeFlowRequest {
1770
+ flowName: string | undefined;
1771
+ }
1772
+ export declare enum ExecutionStatus {
1773
+ ERROR = "Error",
1774
+ INPROGRESS = "InProgress",
1775
+ SUCCESSFUL = "Successful",
1776
+ }
1777
+
1778
+ export interface ExecutionDetails {
1779
+ mostRecentExecutionMessage?: string;
1780
+
1781
+ mostRecentExecutionTime?: Date;
1782
+
1783
+ mostRecentExecutionStatus?: ExecutionStatus | string;
1784
+ }
1785
+ export interface DescribeFlowResponse {
1786
+ flowArn?: string;
1787
+
1788
+ description?: string;
1789
+
1790
+ flowName?: string;
1791
+
1792
+ kmsArn?: string;
1793
+
1794
+ flowStatus?: FlowStatus | string;
1795
+
1796
+ flowStatusMessage?: string;
1797
+
1798
+ sourceFlowConfig?: SourceFlowConfig;
1799
+
1800
+ destinationFlowConfigList?: DestinationFlowConfig[];
1801
+
1802
+ lastRunExecutionDetails?: ExecutionDetails;
1803
+
1804
+ triggerConfig?: TriggerConfig;
1805
+
1806
+ tasks?: Task[];
1807
+
1808
+ createdAt?: Date;
1809
+
1810
+ lastUpdatedAt?: Date;
1811
+
1812
+ createdBy?: string;
1813
+
1814
+ lastUpdatedBy?: string;
1815
+
1816
+ tags?: Record<string, string>;
1817
+ }
1818
+ export interface DescribeFlowExecutionRecordsRequest {
1819
+ flowName: string | undefined;
1820
+
1821
+ maxResults?: number;
1822
+
1823
+ nextToken?: string;
1824
+ }
1825
+
1826
+ export interface ErrorInfo {
1827
+ putFailuresCount?: number;
1828
+
1829
+ executionMessage?: string;
1830
+ }
1831
+
1832
+ export interface ExecutionResult {
1833
+ errorInfo?: ErrorInfo;
1834
+
1835
+ bytesProcessed?: number;
1836
+
1837
+ bytesWritten?: number;
1838
+
1839
+ recordsProcessed?: number;
1840
+ }
1841
+
1842
+ export interface ExecutionRecord {
1843
+ executionId?: string;
1844
+
1845
+ executionStatus?: ExecutionStatus | string;
1846
+
1847
+ executionResult?: ExecutionResult;
1848
+
1849
+ startedAt?: Date;
1850
+
1851
+ lastUpdatedAt?: Date;
1852
+
1853
+ dataPullStartTime?: Date;
1854
+
1855
+ dataPullEndTime?: Date;
1856
+ }
1857
+ export interface DescribeFlowExecutionRecordsResponse {
1858
+ flowExecutions?: ExecutionRecord[];
1859
+
1860
+ nextToken?: string;
1861
+ }
1862
+
1863
+ export interface FlowDefinition {
1864
+ flowArn?: string;
1865
+
1866
+ description?: string;
1867
+
1868
+ flowName?: string;
1869
+
1870
+ flowStatus?: FlowStatus | string;
1871
+
1872
+ sourceConnectorType?: ConnectorType | string;
1873
+
1874
+ sourceConnectorLabel?: string;
1875
+
1876
+ destinationConnectorType?: ConnectorType | string;
1877
+
1878
+ destinationConnectorLabel?: string;
1879
+
1880
+ triggerType?: TriggerType | string;
1881
+
1882
+ createdAt?: Date;
1883
+
1884
+ lastUpdatedAt?: Date;
1885
+
1886
+ createdBy?: string;
1887
+
1888
+ lastUpdatedBy?: string;
1889
+
1890
+ tags?: Record<string, string>;
1891
+
1892
+ lastRunExecutionDetails?: ExecutionDetails;
1893
+ }
1894
+ export interface ListConnectorEntitiesRequest {
1895
+ connectorProfileName?: string;
1896
+
1897
+ connectorType?: ConnectorType | string;
1898
+
1899
+ entitiesPath?: string;
1900
+
1901
+ apiVersion?: string;
1902
+ }
1903
+ export interface ListConnectorEntitiesResponse {
1904
+ connectorEntityMap: Record<string, ConnectorEntity[]> | undefined;
1905
+ }
1906
+ export interface ListConnectorsRequest {
1907
+ maxResults?: number;
1908
+
1909
+ nextToken?: string;
1910
+ }
1911
+ export interface ListConnectorsResponse {
1912
+ connectors?: ConnectorDetail[];
1913
+
1914
+ nextToken?: string;
1915
+ }
1916
+ export interface ListFlowsRequest {
1917
+ maxResults?: number;
1918
+
1919
+ nextToken?: string;
1920
+ }
1921
+ export interface ListFlowsResponse {
1922
+ flows?: FlowDefinition[];
1923
+
1924
+ nextToken?: string;
1925
+ }
1926
+ export interface ListTagsForResourceRequest {
1927
+ resourceArn: string | undefined;
1928
+ }
1929
+ export interface ListTagsForResourceResponse {
1930
+ tags?: Record<string, string>;
1931
+ }
1932
+ export interface RegisterConnectorRequest {
1933
+ connectorLabel?: string;
1934
+
1935
+ description?: string;
1936
+
1937
+ connectorProvisioningType?: ConnectorProvisioningType | string;
1938
+
1939
+ connectorProvisioningConfig?: ConnectorProvisioningConfig;
1940
+ }
1941
+ export interface RegisterConnectorResponse {
1942
+ connectorArn?: string;
1943
+ }
1944
+
1945
+ export declare class ThrottlingException extends __BaseException {
1946
+ readonly name: "ThrottlingException";
1947
+ readonly $fault: "client";
1948
+
1949
+ constructor(
1950
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
1951
+ );
1952
+ }
1953
+ export interface StartFlowRequest {
1954
+ flowName: string | undefined;
1955
+ }
1956
+ export interface StartFlowResponse {
1957
+ flowArn?: string;
1958
+
1959
+ flowStatus?: FlowStatus | string;
1960
+
1961
+ executionId?: string;
1962
+ }
1963
+ export interface StopFlowRequest {
1964
+ flowName: string | undefined;
1965
+ }
1966
+ export interface StopFlowResponse {
1967
+ flowArn?: string;
1968
+
1969
+ flowStatus?: FlowStatus | string;
1970
+ }
1971
+
1972
+ export declare class UnsupportedOperationException extends __BaseException {
1973
+ readonly name: "UnsupportedOperationException";
1974
+ readonly $fault: "client";
1975
+
1976
+ constructor(
1977
+ opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
1978
+ );
1979
+ }
1980
+ export interface TagResourceRequest {
1981
+ resourceArn: string | undefined;
1982
+
1983
+ tags: Record<string, string> | undefined;
1984
+ }
1985
+ export interface TagResourceResponse {}
1986
+ export interface UnregisterConnectorRequest {
1987
+ connectorLabel: string | undefined;
1988
+
1989
+ forceDelete?: boolean;
1990
+ }
1991
+ export interface UnregisterConnectorResponse {}
1992
+ export interface UntagResourceRequest {
1993
+ resourceArn: string | undefined;
1994
+
1995
+ tagKeys: string[] | undefined;
1996
+ }
1997
+ export interface UntagResourceResponse {}
1998
+ export interface UpdateConnectorProfileRequest {
1999
+ connectorProfileName: string | undefined;
2000
+
2001
+ connectionMode: ConnectionMode | string | undefined;
2002
+
2003
+ connectorProfileConfig: ConnectorProfileConfig | undefined;
2004
+ }
2005
+ export interface UpdateConnectorProfileResponse {
2006
+ connectorProfileArn?: string;
2007
+ }
2008
+ export interface UpdateFlowRequest {
2009
+ flowName: string | undefined;
2010
+
2011
+ description?: string;
2012
+
2013
+ triggerConfig: TriggerConfig | undefined;
2014
+
2015
+ sourceFlowConfig: SourceFlowConfig | undefined;
2016
+
2017
+ destinationFlowConfigList: DestinationFlowConfig[] | undefined;
2018
+
2019
+ tasks: Task[] | undefined;
2020
+ }
2021
+ export interface UpdateFlowResponse {
2022
+ flowStatus?: FlowStatus | string;
2023
+ }
2024
+
2025
+ export declare const AggregationConfigFilterSensitiveLog: (
2026
+ obj: AggregationConfig
2027
+ ) => any;
2028
+
2029
+ export declare const AmplitudeConnectorProfileCredentialsFilterSensitiveLog: (
2030
+ obj: AmplitudeConnectorProfileCredentials
2031
+ ) => any;
2032
+
2033
+ export declare const AmplitudeConnectorProfilePropertiesFilterSensitiveLog: (
2034
+ obj: AmplitudeConnectorProfileProperties
2035
+ ) => any;
2036
+
2037
+ export declare const AmplitudeMetadataFilterSensitiveLog: (
2038
+ obj: AmplitudeMetadata
2039
+ ) => any;
2040
+
2041
+ export declare const AmplitudeSourcePropertiesFilterSensitiveLog: (
2042
+ obj: AmplitudeSourceProperties
2043
+ ) => any;
2044
+
2045
+ export declare const ApiKeyCredentialsFilterSensitiveLog: (
2046
+ obj: ApiKeyCredentials
2047
+ ) => any;
2048
+
2049
+ export declare const AuthParameterFilterSensitiveLog: (
2050
+ obj: AuthParameter
2051
+ ) => any;
2052
+
2053
+ export declare const CustomAuthConfigFilterSensitiveLog: (
2054
+ obj: CustomAuthConfig
2055
+ ) => any;
2056
+
2057
+ export declare const OAuth2CustomParameterFilterSensitiveLog: (
2058
+ obj: OAuth2CustomParameter
2059
+ ) => any;
2060
+
2061
+ export declare const OAuth2DefaultsFilterSensitiveLog: (
2062
+ obj: OAuth2Defaults
2063
+ ) => any;
2064
+
2065
+ export declare const AuthenticationConfigFilterSensitiveLog: (
2066
+ obj: AuthenticationConfig
2067
+ ) => any;
2068
+
2069
+ export declare const BasicAuthCredentialsFilterSensitiveLog: (
2070
+ obj: BasicAuthCredentials
2071
+ ) => any;
2072
+
2073
+ export declare const CustomerProfilesMetadataFilterSensitiveLog: (
2074
+ obj: CustomerProfilesMetadata
2075
+ ) => any;
2076
+
2077
+ export declare const DatadogMetadataFilterSensitiveLog: (
2078
+ obj: DatadogMetadata
2079
+ ) => any;
2080
+
2081
+ export declare const DynatraceMetadataFilterSensitiveLog: (
2082
+ obj: DynatraceMetadata
2083
+ ) => any;
2084
+
2085
+ export declare const EventBridgeMetadataFilterSensitiveLog: (
2086
+ obj: EventBridgeMetadata
2087
+ ) => any;
2088
+
2089
+ export declare const GoogleAnalyticsMetadataFilterSensitiveLog: (
2090
+ obj: GoogleAnalyticsMetadata
2091
+ ) => any;
2092
+
2093
+ export declare const HoneycodeMetadataFilterSensitiveLog: (
2094
+ obj: HoneycodeMetadata
2095
+ ) => any;
2096
+
2097
+ export declare const InforNexusMetadataFilterSensitiveLog: (
2098
+ obj: InforNexusMetadata
2099
+ ) => any;
2100
+
2101
+ export declare const MarketoMetadataFilterSensitiveLog: (
2102
+ obj: MarketoMetadata
2103
+ ) => any;
2104
+
2105
+ export declare const RedshiftMetadataFilterSensitiveLog: (
2106
+ obj: RedshiftMetadata
2107
+ ) => any;
2108
+
2109
+ export declare const S3MetadataFilterSensitiveLog: (obj: S3Metadata) => any;
2110
+
2111
+ export declare const SalesforceMetadataFilterSensitiveLog: (
2112
+ obj: SalesforceMetadata
2113
+ ) => any;
2114
+
2115
+ export declare const SAPODataMetadataFilterSensitiveLog: (
2116
+ obj: SAPODataMetadata
2117
+ ) => any;
2118
+
2119
+ export declare const ServiceNowMetadataFilterSensitiveLog: (
2120
+ obj: ServiceNowMetadata
2121
+ ) => any;
2122
+
2123
+ export declare const SingularMetadataFilterSensitiveLog: (
2124
+ obj: SingularMetadata
2125
+ ) => any;
2126
+
2127
+ export declare const SlackMetadataFilterSensitiveLog: (
2128
+ obj: SlackMetadata
2129
+ ) => any;
2130
+
2131
+ export declare const SnowflakeMetadataFilterSensitiveLog: (
2132
+ obj: SnowflakeMetadata
2133
+ ) => any;
2134
+
2135
+ export declare const TrendmicroMetadataFilterSensitiveLog: (
2136
+ obj: TrendmicroMetadata
2137
+ ) => any;
2138
+
2139
+ export declare const UpsolverMetadataFilterSensitiveLog: (
2140
+ obj: UpsolverMetadata
2141
+ ) => any;
2142
+
2143
+ export declare const VeevaMetadataFilterSensitiveLog: (
2144
+ obj: VeevaMetadata
2145
+ ) => any;
2146
+
2147
+ export declare const ZendeskMetadataFilterSensitiveLog: (
2148
+ obj: ZendeskMetadata
2149
+ ) => any;
2150
+
2151
+ export declare const ConnectorMetadataFilterSensitiveLog: (
2152
+ obj: ConnectorMetadata
2153
+ ) => any;
2154
+
2155
+ export declare const LambdaConnectorProvisioningConfigFilterSensitiveLog: (
2156
+ obj: LambdaConnectorProvisioningConfig
2157
+ ) => any;
2158
+
2159
+ export declare const ConnectorProvisioningConfigFilterSensitiveLog: (
2160
+ obj: ConnectorProvisioningConfig
2161
+ ) => any;
2162
+
2163
+ export declare const ConnectorRuntimeSettingFilterSensitiveLog: (
2164
+ obj: ConnectorRuntimeSetting
2165
+ ) => any;
2166
+
2167
+ export declare const ConnectorConfigurationFilterSensitiveLog: (
2168
+ obj: ConnectorConfiguration
2169
+ ) => any;
2170
+
2171
+ export declare const ConnectorDetailFilterSensitiveLog: (
2172
+ obj: ConnectorDetail
2173
+ ) => any;
2174
+
2175
+ export declare const ConnectorEntityFilterSensitiveLog: (
2176
+ obj: ConnectorEntity
2177
+ ) => any;
2178
+
2179
+ export declare const DestinationFieldPropertiesFilterSensitiveLog: (
2180
+ obj: DestinationFieldProperties
2181
+ ) => any;
2182
+
2183
+ export declare const SourceFieldPropertiesFilterSensitiveLog: (
2184
+ obj: SourceFieldProperties
2185
+ ) => any;
2186
+
2187
+ export declare const RangeFilterSensitiveLog: (obj: Range) => any;
2188
+
2189
+ export declare const FieldTypeDetailsFilterSensitiveLog: (
2190
+ obj: FieldTypeDetails
2191
+ ) => any;
2192
+
2193
+ export declare const SupportedFieldTypeDetailsFilterSensitiveLog: (
2194
+ obj: SupportedFieldTypeDetails
2195
+ ) => any;
2196
+
2197
+ export declare const ConnectorEntityFieldFilterSensitiveLog: (
2198
+ obj: ConnectorEntityField
2199
+ ) => any;
2200
+
2201
+ export declare const ConnectorOAuthRequestFilterSensitiveLog: (
2202
+ obj: ConnectorOAuthRequest
2203
+ ) => any;
2204
+
2205
+ export declare const ConnectorOperatorFilterSensitiveLog: (
2206
+ obj: ConnectorOperator
2207
+ ) => any;
2208
+
2209
+ export declare const OAuth2PropertiesFilterSensitiveLog: (
2210
+ obj: OAuth2Properties
2211
+ ) => any;
2212
+
2213
+ export declare const CustomConnectorProfilePropertiesFilterSensitiveLog: (
2214
+ obj: CustomConnectorProfileProperties
2215
+ ) => any;
2216
+
2217
+ export declare const DatadogConnectorProfilePropertiesFilterSensitiveLog: (
2218
+ obj: DatadogConnectorProfileProperties
2219
+ ) => any;
2220
+
2221
+ export declare const DynatraceConnectorProfilePropertiesFilterSensitiveLog: (
2222
+ obj: DynatraceConnectorProfileProperties
2223
+ ) => any;
2224
+
2225
+ export declare const GoogleAnalyticsConnectorProfilePropertiesFilterSensitiveLog: (
2226
+ obj: GoogleAnalyticsConnectorProfileProperties
2227
+ ) => any;
2228
+
2229
+ export declare const HoneycodeConnectorProfilePropertiesFilterSensitiveLog: (
2230
+ obj: HoneycodeConnectorProfileProperties
2231
+ ) => any;
2232
+
2233
+ export declare const InforNexusConnectorProfilePropertiesFilterSensitiveLog: (
2234
+ obj: InforNexusConnectorProfileProperties
2235
+ ) => any;
2236
+
2237
+ export declare const MarketoConnectorProfilePropertiesFilterSensitiveLog: (
2238
+ obj: MarketoConnectorProfileProperties
2239
+ ) => any;
2240
+
2241
+ export declare const RedshiftConnectorProfilePropertiesFilterSensitiveLog: (
2242
+ obj: RedshiftConnectorProfileProperties
2243
+ ) => any;
2244
+
2245
+ export declare const SalesforceConnectorProfilePropertiesFilterSensitiveLog: (
2246
+ obj: SalesforceConnectorProfileProperties
2247
+ ) => any;
2248
+
2249
+ export declare const OAuthPropertiesFilterSensitiveLog: (
2250
+ obj: OAuthProperties
2251
+ ) => any;
2252
+
2253
+ export declare const SAPODataConnectorProfilePropertiesFilterSensitiveLog: (
2254
+ obj: SAPODataConnectorProfileProperties
2255
+ ) => any;
2256
+
2257
+ export declare const ServiceNowConnectorProfilePropertiesFilterSensitiveLog: (
2258
+ obj: ServiceNowConnectorProfileProperties
2259
+ ) => any;
2260
+
2261
+ export declare const SingularConnectorProfilePropertiesFilterSensitiveLog: (
2262
+ obj: SingularConnectorProfileProperties
2263
+ ) => any;
2264
+
2265
+ export declare const SlackConnectorProfilePropertiesFilterSensitiveLog: (
2266
+ obj: SlackConnectorProfileProperties
2267
+ ) => any;
2268
+
2269
+ export declare const SnowflakeConnectorProfilePropertiesFilterSensitiveLog: (
2270
+ obj: SnowflakeConnectorProfileProperties
2271
+ ) => any;
2272
+
2273
+ export declare const TrendmicroConnectorProfilePropertiesFilterSensitiveLog: (
2274
+ obj: TrendmicroConnectorProfileProperties
2275
+ ) => any;
2276
+
2277
+ export declare const VeevaConnectorProfilePropertiesFilterSensitiveLog: (
2278
+ obj: VeevaConnectorProfileProperties
2279
+ ) => any;
2280
+
2281
+ export declare const ZendeskConnectorProfilePropertiesFilterSensitiveLog: (
2282
+ obj: ZendeskConnectorProfileProperties
2283
+ ) => any;
2284
+
2285
+ export declare const ConnectorProfilePropertiesFilterSensitiveLog: (
2286
+ obj: ConnectorProfileProperties
2287
+ ) => any;
2288
+
2289
+ export declare const PrivateConnectionProvisioningStateFilterSensitiveLog: (
2290
+ obj: PrivateConnectionProvisioningState
2291
+ ) => any;
2292
+
2293
+ export declare const ConnectorProfileFilterSensitiveLog: (
2294
+ obj: ConnectorProfile
2295
+ ) => any;
2296
+
2297
+ export declare const CustomAuthCredentialsFilterSensitiveLog: (
2298
+ obj: CustomAuthCredentials
2299
+ ) => any;
2300
+
2301
+ export declare const OAuth2CredentialsFilterSensitiveLog: (
2302
+ obj: OAuth2Credentials
2303
+ ) => any;
2304
+
2305
+ export declare const CustomConnectorProfileCredentialsFilterSensitiveLog: (
2306
+ obj: CustomConnectorProfileCredentials
2307
+ ) => any;
2308
+
2309
+ export declare const DatadogConnectorProfileCredentialsFilterSensitiveLog: (
2310
+ obj: DatadogConnectorProfileCredentials
2311
+ ) => any;
2312
+
2313
+ export declare const DynatraceConnectorProfileCredentialsFilterSensitiveLog: (
2314
+ obj: DynatraceConnectorProfileCredentials
2315
+ ) => any;
2316
+
2317
+ export declare const GoogleAnalyticsConnectorProfileCredentialsFilterSensitiveLog: (
2318
+ obj: GoogleAnalyticsConnectorProfileCredentials
2319
+ ) => any;
2320
+
2321
+ export declare const HoneycodeConnectorProfileCredentialsFilterSensitiveLog: (
2322
+ obj: HoneycodeConnectorProfileCredentials
2323
+ ) => any;
2324
+
2325
+ export declare const InforNexusConnectorProfileCredentialsFilterSensitiveLog: (
2326
+ obj: InforNexusConnectorProfileCredentials
2327
+ ) => any;
2328
+
2329
+ export declare const MarketoConnectorProfileCredentialsFilterSensitiveLog: (
2330
+ obj: MarketoConnectorProfileCredentials
2331
+ ) => any;
2332
+
2333
+ export declare const RedshiftConnectorProfileCredentialsFilterSensitiveLog: (
2334
+ obj: RedshiftConnectorProfileCredentials
2335
+ ) => any;
2336
+
2337
+ export declare const SalesforceConnectorProfileCredentialsFilterSensitiveLog: (
2338
+ obj: SalesforceConnectorProfileCredentials
2339
+ ) => any;
2340
+
2341
+ export declare const OAuthCredentialsFilterSensitiveLog: (
2342
+ obj: OAuthCredentials
2343
+ ) => any;
2344
+
2345
+ export declare const SAPODataConnectorProfileCredentialsFilterSensitiveLog: (
2346
+ obj: SAPODataConnectorProfileCredentials
2347
+ ) => any;
2348
+
2349
+ export declare const ServiceNowConnectorProfileCredentialsFilterSensitiveLog: (
2350
+ obj: ServiceNowConnectorProfileCredentials
2351
+ ) => any;
2352
+
2353
+ export declare const SingularConnectorProfileCredentialsFilterSensitiveLog: (
2354
+ obj: SingularConnectorProfileCredentials
2355
+ ) => any;
2356
+
2357
+ export declare const SlackConnectorProfileCredentialsFilterSensitiveLog: (
2358
+ obj: SlackConnectorProfileCredentials
2359
+ ) => any;
2360
+
2361
+ export declare const SnowflakeConnectorProfileCredentialsFilterSensitiveLog: (
2362
+ obj: SnowflakeConnectorProfileCredentials
2363
+ ) => any;
2364
+
2365
+ export declare const TrendmicroConnectorProfileCredentialsFilterSensitiveLog: (
2366
+ obj: TrendmicroConnectorProfileCredentials
2367
+ ) => any;
2368
+
2369
+ export declare const VeevaConnectorProfileCredentialsFilterSensitiveLog: (
2370
+ obj: VeevaConnectorProfileCredentials
2371
+ ) => any;
2372
+
2373
+ export declare const ZendeskConnectorProfileCredentialsFilterSensitiveLog: (
2374
+ obj: ZendeskConnectorProfileCredentials
2375
+ ) => any;
2376
+
2377
+ export declare const ConnectorProfileCredentialsFilterSensitiveLog: (
2378
+ obj: ConnectorProfileCredentials
2379
+ ) => any;
2380
+
2381
+ export declare const ConnectorProfileConfigFilterSensitiveLog: (
2382
+ obj: ConnectorProfileConfig
2383
+ ) => any;
2384
+
2385
+ export declare const CreateConnectorProfileRequestFilterSensitiveLog: (
2386
+ obj: CreateConnectorProfileRequest
2387
+ ) => any;
2388
+
2389
+ export declare const CreateConnectorProfileResponseFilterSensitiveLog: (
2390
+ obj: CreateConnectorProfileResponse
2391
+ ) => any;
2392
+
2393
+ export declare const ErrorHandlingConfigFilterSensitiveLog: (
2394
+ obj: ErrorHandlingConfig
2395
+ ) => any;
2396
+
2397
+ export declare const CustomConnectorDestinationPropertiesFilterSensitiveLog: (
2398
+ obj: CustomConnectorDestinationProperties
2399
+ ) => any;
2400
+
2401
+ export declare const CustomerProfilesDestinationPropertiesFilterSensitiveLog: (
2402
+ obj: CustomerProfilesDestinationProperties
2403
+ ) => any;
2404
+
2405
+ export declare const EventBridgeDestinationPropertiesFilterSensitiveLog: (
2406
+ obj: EventBridgeDestinationProperties
2407
+ ) => any;
2408
+
2409
+ export declare const HoneycodeDestinationPropertiesFilterSensitiveLog: (
2410
+ obj: HoneycodeDestinationProperties
2411
+ ) => any;
2412
+
2413
+ export declare const LookoutMetricsDestinationPropertiesFilterSensitiveLog: (
2414
+ obj: LookoutMetricsDestinationProperties
2415
+ ) => any;
2416
+
2417
+ export declare const MarketoDestinationPropertiesFilterSensitiveLog: (
2418
+ obj: MarketoDestinationProperties
2419
+ ) => any;
2420
+
2421
+ export declare const RedshiftDestinationPropertiesFilterSensitiveLog: (
2422
+ obj: RedshiftDestinationProperties
2423
+ ) => any;
2424
+
2425
+ export declare const PrefixConfigFilterSensitiveLog: (obj: PrefixConfig) => any;
2426
+
2427
+ export declare const S3OutputFormatConfigFilterSensitiveLog: (
2428
+ obj: S3OutputFormatConfig
2429
+ ) => any;
2430
+
2431
+ export declare const S3DestinationPropertiesFilterSensitiveLog: (
2432
+ obj: S3DestinationProperties
2433
+ ) => any;
2434
+
2435
+ export declare const SalesforceDestinationPropertiesFilterSensitiveLog: (
2436
+ obj: SalesforceDestinationProperties
2437
+ ) => any;
2438
+
2439
+ export declare const SuccessResponseHandlingConfigFilterSensitiveLog: (
2440
+ obj: SuccessResponseHandlingConfig
2441
+ ) => any;
2442
+
2443
+ export declare const SAPODataDestinationPropertiesFilterSensitiveLog: (
2444
+ obj: SAPODataDestinationProperties
2445
+ ) => any;
2446
+
2447
+ export declare const SnowflakeDestinationPropertiesFilterSensitiveLog: (
2448
+ obj: SnowflakeDestinationProperties
2449
+ ) => any;
2450
+
2451
+ export declare const UpsolverS3OutputFormatConfigFilterSensitiveLog: (
2452
+ obj: UpsolverS3OutputFormatConfig
2453
+ ) => any;
2454
+
2455
+ export declare const UpsolverDestinationPropertiesFilterSensitiveLog: (
2456
+ obj: UpsolverDestinationProperties
2457
+ ) => any;
2458
+
2459
+ export declare const ZendeskDestinationPropertiesFilterSensitiveLog: (
2460
+ obj: ZendeskDestinationProperties
2461
+ ) => any;
2462
+
2463
+ export declare const DestinationConnectorPropertiesFilterSensitiveLog: (
2464
+ obj: DestinationConnectorProperties
2465
+ ) => any;
2466
+
2467
+ export declare const DestinationFlowConfigFilterSensitiveLog: (
2468
+ obj: DestinationFlowConfig
2469
+ ) => any;
2470
+
2471
+ export declare const IncrementalPullConfigFilterSensitiveLog: (
2472
+ obj: IncrementalPullConfig
2473
+ ) => any;
2474
+
2475
+ export declare const CustomConnectorSourcePropertiesFilterSensitiveLog: (
2476
+ obj: CustomConnectorSourceProperties
2477
+ ) => any;
2478
+
2479
+ export declare const DatadogSourcePropertiesFilterSensitiveLog: (
2480
+ obj: DatadogSourceProperties
2481
+ ) => any;
2482
+
2483
+ export declare const DynatraceSourcePropertiesFilterSensitiveLog: (
2484
+ obj: DynatraceSourceProperties
2485
+ ) => any;
2486
+
2487
+ export declare const GoogleAnalyticsSourcePropertiesFilterSensitiveLog: (
2488
+ obj: GoogleAnalyticsSourceProperties
2489
+ ) => any;
2490
+
2491
+ export declare const InforNexusSourcePropertiesFilterSensitiveLog: (
2492
+ obj: InforNexusSourceProperties
2493
+ ) => any;
2494
+
2495
+ export declare const MarketoSourcePropertiesFilterSensitiveLog: (
2496
+ obj: MarketoSourceProperties
2497
+ ) => any;
2498
+
2499
+ export declare const S3InputFormatConfigFilterSensitiveLog: (
2500
+ obj: S3InputFormatConfig
2501
+ ) => any;
2502
+
2503
+ export declare const S3SourcePropertiesFilterSensitiveLog: (
2504
+ obj: S3SourceProperties
2505
+ ) => any;
2506
+
2507
+ export declare const SalesforceSourcePropertiesFilterSensitiveLog: (
2508
+ obj: SalesforceSourceProperties
2509
+ ) => any;
2510
+
2511
+ export declare const SAPODataSourcePropertiesFilterSensitiveLog: (
2512
+ obj: SAPODataSourceProperties
2513
+ ) => any;
2514
+
2515
+ export declare const ServiceNowSourcePropertiesFilterSensitiveLog: (
2516
+ obj: ServiceNowSourceProperties
2517
+ ) => any;
2518
+
2519
+ export declare const SingularSourcePropertiesFilterSensitiveLog: (
2520
+ obj: SingularSourceProperties
2521
+ ) => any;
2522
+
2523
+ export declare const SlackSourcePropertiesFilterSensitiveLog: (
2524
+ obj: SlackSourceProperties
2525
+ ) => any;
2526
+
2527
+ export declare const TrendmicroSourcePropertiesFilterSensitiveLog: (
2528
+ obj: TrendmicroSourceProperties
2529
+ ) => any;
2530
+
2531
+ export declare const VeevaSourcePropertiesFilterSensitiveLog: (
2532
+ obj: VeevaSourceProperties
2533
+ ) => any;
2534
+
2535
+ export declare const ZendeskSourcePropertiesFilterSensitiveLog: (
2536
+ obj: ZendeskSourceProperties
2537
+ ) => any;
2538
+
2539
+ export declare const SourceConnectorPropertiesFilterSensitiveLog: (
2540
+ obj: SourceConnectorProperties
2541
+ ) => any;
2542
+
2543
+ export declare const SourceFlowConfigFilterSensitiveLog: (
2544
+ obj: SourceFlowConfig
2545
+ ) => any;
2546
+
2547
+ export declare const TaskFilterSensitiveLog: (obj: Task) => any;
2548
+
2549
+ export declare const ScheduledTriggerPropertiesFilterSensitiveLog: (
2550
+ obj: ScheduledTriggerProperties
2551
+ ) => any;
2552
+
2553
+ export declare const TriggerPropertiesFilterSensitiveLog: (
2554
+ obj: TriggerProperties
2555
+ ) => any;
2556
+
2557
+ export declare const TriggerConfigFilterSensitiveLog: (
2558
+ obj: TriggerConfig
2559
+ ) => any;
2560
+
2561
+ export declare const CreateFlowRequestFilterSensitiveLog: (
2562
+ obj: CreateFlowRequest
2563
+ ) => any;
2564
+
2565
+ export declare const CreateFlowResponseFilterSensitiveLog: (
2566
+ obj: CreateFlowResponse
2567
+ ) => any;
2568
+
2569
+ export declare const DeleteConnectorProfileRequestFilterSensitiveLog: (
2570
+ obj: DeleteConnectorProfileRequest
2571
+ ) => any;
2572
+
2573
+ export declare const DeleteConnectorProfileResponseFilterSensitiveLog: (
2574
+ obj: DeleteConnectorProfileResponse
2575
+ ) => any;
2576
+
2577
+ export declare const DeleteFlowRequestFilterSensitiveLog: (
2578
+ obj: DeleteFlowRequest
2579
+ ) => any;
2580
+
2581
+ export declare const DeleteFlowResponseFilterSensitiveLog: (
2582
+ obj: DeleteFlowResponse
2583
+ ) => any;
2584
+
2585
+ export declare const DescribeConnectorRequestFilterSensitiveLog: (
2586
+ obj: DescribeConnectorRequest
2587
+ ) => any;
2588
+
2589
+ export declare const DescribeConnectorResponseFilterSensitiveLog: (
2590
+ obj: DescribeConnectorResponse
2591
+ ) => any;
2592
+
2593
+ export declare const DescribeConnectorEntityRequestFilterSensitiveLog: (
2594
+ obj: DescribeConnectorEntityRequest
2595
+ ) => any;
2596
+
2597
+ export declare const DescribeConnectorEntityResponseFilterSensitiveLog: (
2598
+ obj: DescribeConnectorEntityResponse
2599
+ ) => any;
2600
+
2601
+ export declare const DescribeConnectorProfilesRequestFilterSensitiveLog: (
2602
+ obj: DescribeConnectorProfilesRequest
2603
+ ) => any;
2604
+
2605
+ export declare const DescribeConnectorProfilesResponseFilterSensitiveLog: (
2606
+ obj: DescribeConnectorProfilesResponse
2607
+ ) => any;
2608
+
2609
+ export declare const DescribeConnectorsRequestFilterSensitiveLog: (
2610
+ obj: DescribeConnectorsRequest
2611
+ ) => any;
2612
+
2613
+ export declare const DescribeConnectorsResponseFilterSensitiveLog: (
2614
+ obj: DescribeConnectorsResponse
2615
+ ) => any;
2616
+
2617
+ export declare const DescribeFlowRequestFilterSensitiveLog: (
2618
+ obj: DescribeFlowRequest
2619
+ ) => any;
2620
+
2621
+ export declare const ExecutionDetailsFilterSensitiveLog: (
2622
+ obj: ExecutionDetails
2623
+ ) => any;
2624
+
2625
+ export declare const DescribeFlowResponseFilterSensitiveLog: (
2626
+ obj: DescribeFlowResponse
2627
+ ) => any;
2628
+
2629
+ export declare const DescribeFlowExecutionRecordsRequestFilterSensitiveLog: (
2630
+ obj: DescribeFlowExecutionRecordsRequest
2631
+ ) => any;
2632
+
2633
+ export declare const ErrorInfoFilterSensitiveLog: (obj: ErrorInfo) => any;
2634
+
2635
+ export declare const ExecutionResultFilterSensitiveLog: (
2636
+ obj: ExecutionResult
2637
+ ) => any;
2638
+
2639
+ export declare const ExecutionRecordFilterSensitiveLog: (
2640
+ obj: ExecutionRecord
2641
+ ) => any;
2642
+
2643
+ export declare const DescribeFlowExecutionRecordsResponseFilterSensitiveLog: (
2644
+ obj: DescribeFlowExecutionRecordsResponse
2645
+ ) => any;
2646
+
2647
+ export declare const FlowDefinitionFilterSensitiveLog: (
2648
+ obj: FlowDefinition
2649
+ ) => any;
2650
+
2651
+ export declare const ListConnectorEntitiesRequestFilterSensitiveLog: (
2652
+ obj: ListConnectorEntitiesRequest
2653
+ ) => any;
2654
+
2655
+ export declare const ListConnectorEntitiesResponseFilterSensitiveLog: (
2656
+ obj: ListConnectorEntitiesResponse
2657
+ ) => any;
2658
+
2659
+ export declare const ListConnectorsRequestFilterSensitiveLog: (
2660
+ obj: ListConnectorsRequest
2661
+ ) => any;
2662
+
2663
+ export declare const ListConnectorsResponseFilterSensitiveLog: (
2664
+ obj: ListConnectorsResponse
2665
+ ) => any;
2666
+
2667
+ export declare const ListFlowsRequestFilterSensitiveLog: (
2668
+ obj: ListFlowsRequest
2669
+ ) => any;
2670
+
2671
+ export declare const ListFlowsResponseFilterSensitiveLog: (
2672
+ obj: ListFlowsResponse
2673
+ ) => any;
2674
+
2675
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
2676
+ obj: ListTagsForResourceRequest
2677
+ ) => any;
2678
+
2679
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
2680
+ obj: ListTagsForResourceResponse
2681
+ ) => any;
2682
+
2683
+ export declare const RegisterConnectorRequestFilterSensitiveLog: (
2684
+ obj: RegisterConnectorRequest
2685
+ ) => any;
2686
+
2687
+ export declare const RegisterConnectorResponseFilterSensitiveLog: (
2688
+ obj: RegisterConnectorResponse
2689
+ ) => any;
2690
+
2691
+ export declare const StartFlowRequestFilterSensitiveLog: (
2692
+ obj: StartFlowRequest
2693
+ ) => any;
2694
+
2695
+ export declare const StartFlowResponseFilterSensitiveLog: (
2696
+ obj: StartFlowResponse
2697
+ ) => any;
2698
+
2699
+ export declare const StopFlowRequestFilterSensitiveLog: (
2700
+ obj: StopFlowRequest
2701
+ ) => any;
2702
+
2703
+ export declare const StopFlowResponseFilterSensitiveLog: (
2704
+ obj: StopFlowResponse
2705
+ ) => any;
2706
+
2707
+ export declare const TagResourceRequestFilterSensitiveLog: (
2708
+ obj: TagResourceRequest
2709
+ ) => any;
2710
+
2711
+ export declare const TagResourceResponseFilterSensitiveLog: (
2712
+ obj: TagResourceResponse
2713
+ ) => any;
2714
+
2715
+ export declare const UnregisterConnectorRequestFilterSensitiveLog: (
2716
+ obj: UnregisterConnectorRequest
2717
+ ) => any;
2718
+
2719
+ export declare const UnregisterConnectorResponseFilterSensitiveLog: (
2720
+ obj: UnregisterConnectorResponse
2721
+ ) => any;
2722
+
2723
+ export declare const UntagResourceRequestFilterSensitiveLog: (
2724
+ obj: UntagResourceRequest
2725
+ ) => any;
2726
+
2727
+ export declare const UntagResourceResponseFilterSensitiveLog: (
2728
+ obj: UntagResourceResponse
2729
+ ) => any;
2730
+
2731
+ export declare const UpdateConnectorProfileRequestFilterSensitiveLog: (
2732
+ obj: UpdateConnectorProfileRequest
2733
+ ) => any;
2734
+
2735
+ export declare const UpdateConnectorProfileResponseFilterSensitiveLog: (
2736
+ obj: UpdateConnectorProfileResponse
2737
+ ) => any;
2738
+
2739
+ export declare const UpdateFlowRequestFilterSensitiveLog: (
2740
+ obj: UpdateFlowRequest
2741
+ ) => any;
2742
+
2743
+ export declare const UpdateFlowResponseFilterSensitiveLog: (
2744
+ obj: UpdateFlowResponse
2745
+ ) => any;