@aws-sdk/client-appflow 3.169.0 → 3.171.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 +16 -0
  2. package/dist-types/ts3.4/Appflow.d.ts +378 -115
  3. package/dist-types/ts3.4/AppflowClient.d.ts +236 -95
  4. package/dist-types/ts3.4/commands/CreateConnectorProfileCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/CreateFlowCommand.d.ts +32 -17
  6. package/dist-types/ts3.4/commands/DeleteConnectorProfileCommand.d.ts +39 -17
  7. package/dist-types/ts3.4/commands/DeleteFlowCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/DescribeConnectorCommand.d.ts +36 -17
  9. package/dist-types/ts3.4/commands/DescribeConnectorEntityCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/DescribeConnectorProfilesCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/DescribeConnectorsCommand.d.ts +36 -17
  12. package/dist-types/ts3.4/commands/DescribeFlowCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/DescribeFlowExecutionRecordsCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/ListConnectorEntitiesCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +35 -17
  16. package/dist-types/ts3.4/commands/ListFlowsCommand.d.ts +32 -17
  17. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  18. package/dist-types/ts3.4/commands/RegisterConnectorCommand.d.ts +36 -17
  19. package/dist-types/ts3.4/commands/StartFlowCommand.d.ts +32 -17
  20. package/dist-types/ts3.4/commands/StopFlowCommand.d.ts +32 -17
  21. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/UnregisterConnectorCommand.d.ts +36 -17
  23. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  24. package/dist-types/ts3.4/commands/UpdateConnectorProfileCommand.d.ts +39 -17
  25. package/dist-types/ts3.4/commands/UpdateFlowCommand.d.ts +32 -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 +7 -6
  30. package/dist-types/ts3.4/models/index.d.ts +1 -1
  31. package/dist-types/ts3.4/models/models_0.d.ts +1982 -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 +65 -38
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  44. package/package.json +34 -34
@@ -1,2551 +1,1982 @@
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
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
+ );
9
+ }
10
+ export declare enum AggregationType {
11
+ NONE = "None",
12
+ SINGLE_FILE = "SingleFile",
13
+ }
14
+ export interface AggregationConfig {
15
+ aggregationType?: AggregationType | string;
16
+ }
17
+ export declare enum AmplitudeConnectorOperator {
18
+ BETWEEN = "BETWEEN",
19
+ }
20
+ export interface AmplitudeConnectorProfileCredentials {
21
+ apiKey: string | undefined;
22
+ secretKey: string | undefined;
23
+ }
24
+ export interface AmplitudeConnectorProfileProperties {}
25
+ export interface AmplitudeMetadata {}
26
+ export interface AmplitudeSourceProperties {
27
+ object: string | undefined;
28
+ }
29
+ export interface ApiKeyCredentials {
30
+ apiKey: string | undefined;
31
+ apiSecretKey?: string;
32
+ }
33
+ export interface AuthParameter {
34
+ key?: string;
35
+ isRequired?: boolean;
36
+ label?: string;
37
+ description?: string;
38
+ isSensitiveField?: boolean;
39
+ connectorSuppliedValues?: string[];
40
+ }
41
+ export interface CustomAuthConfig {
42
+ customAuthenticationType?: string;
43
+ authParameters?: AuthParameter[];
44
+ }
45
+ export declare enum OAuth2CustomPropType {
46
+ AUTH_URL = "AUTH_URL",
47
+ TOKEN_URL = "TOKEN_URL",
48
+ }
49
+ export interface OAuth2CustomParameter {
50
+ key?: string;
51
+ isRequired?: boolean;
52
+ label?: string;
53
+ description?: string;
54
+ isSensitiveField?: boolean;
55
+ connectorSuppliedValues?: string[];
56
+ type?: OAuth2CustomPropType | string;
57
+ }
58
+ export declare enum OAuth2GrantType {
59
+ AUTHORIZATION_CODE = "AUTHORIZATION_CODE",
60
+ CLIENT_CREDENTIALS = "CLIENT_CREDENTIALS",
61
+ }
62
+ export interface OAuth2Defaults {
63
+ oauthScopes?: string[];
64
+ tokenUrls?: string[];
65
+ authCodeUrls?: string[];
66
+ oauth2GrantTypesSupported?: (OAuth2GrantType | string)[];
67
+ oauth2CustomProperties?: OAuth2CustomParameter[];
68
+ }
69
+ export interface AuthenticationConfig {
70
+ isBasicAuthSupported?: boolean;
71
+ isApiKeyAuthSupported?: boolean;
72
+ isOAuth2Supported?: boolean;
73
+ isCustomAuthSupported?: boolean;
74
+ oAuth2Defaults?: OAuth2Defaults;
75
+ customAuthConfigs?: CustomAuthConfig[];
76
+ }
77
+ export declare enum AuthenticationType {
78
+ APIKEY = "APIKEY",
79
+ BASIC = "BASIC",
80
+ CUSTOM = "CUSTOM",
81
+ OAUTH2 = "OAUTH2",
82
+ }
83
+ export interface BasicAuthCredentials {
84
+ username: string | undefined;
85
+ password: string | undefined;
86
+ }
87
+ export declare class ConflictException extends __BaseException {
88
+ readonly name: "ConflictException";
89
+ readonly $fault: "client";
90
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
91
+ }
92
+ export declare enum ConnectionMode {
93
+ PRIVATE = "Private",
94
+ PUBLIC = "Public",
95
+ }
96
+ export declare class ConnectorAuthenticationException extends __BaseException {
97
+ readonly name: "ConnectorAuthenticationException";
98
+ readonly $fault: "client";
99
+ constructor(
100
+ opts: __ExceptionOptionType<
101
+ ConnectorAuthenticationException,
102
+ __BaseException
103
+ >
104
+ );
105
+ }
106
+ export interface CustomerProfilesMetadata {}
107
+ export interface DatadogMetadata {}
108
+ export interface DynatraceMetadata {}
109
+ export interface EventBridgeMetadata {}
110
+ export interface GoogleAnalyticsMetadata {
111
+ oAuthScopes?: string[];
112
+ }
113
+ export interface HoneycodeMetadata {
114
+ oAuthScopes?: string[];
115
+ }
116
+ export interface InforNexusMetadata {}
117
+ export interface MarketoMetadata {}
118
+ export interface RedshiftMetadata {}
119
+ export interface S3Metadata {}
120
+ export interface SalesforceMetadata {
121
+ oAuthScopes?: string[];
122
+ }
123
+ export interface SAPODataMetadata {}
124
+ export interface ServiceNowMetadata {}
125
+ export interface SingularMetadata {}
126
+ export interface SlackMetadata {
127
+ oAuthScopes?: string[];
128
+ }
129
+ export interface SnowflakeMetadata {
130
+ supportedRegions?: string[];
131
+ }
132
+ export interface TrendmicroMetadata {}
133
+ export interface UpsolverMetadata {}
134
+ export interface VeevaMetadata {}
135
+ export interface ZendeskMetadata {
136
+ oAuthScopes?: string[];
137
+ }
138
+ export interface ConnectorMetadata {
139
+ Amplitude?: AmplitudeMetadata;
140
+ Datadog?: DatadogMetadata;
141
+ Dynatrace?: DynatraceMetadata;
142
+ GoogleAnalytics?: GoogleAnalyticsMetadata;
143
+ InforNexus?: InforNexusMetadata;
144
+ Marketo?: MarketoMetadata;
145
+ Redshift?: RedshiftMetadata;
146
+ S3?: S3Metadata;
147
+ Salesforce?: SalesforceMetadata;
148
+ ServiceNow?: ServiceNowMetadata;
149
+ Singular?: SingularMetadata;
150
+ Slack?: SlackMetadata;
151
+ Snowflake?: SnowflakeMetadata;
152
+ Trendmicro?: TrendmicroMetadata;
153
+ Veeva?: VeevaMetadata;
154
+ Zendesk?: ZendeskMetadata;
155
+ EventBridge?: EventBridgeMetadata;
156
+ Upsolver?: UpsolverMetadata;
157
+ CustomerProfiles?: CustomerProfilesMetadata;
158
+ Honeycode?: HoneycodeMetadata;
159
+ SAPOData?: SAPODataMetadata;
160
+ }
161
+ export interface LambdaConnectorProvisioningConfig {
162
+ lambdaArn: string | undefined;
163
+ }
164
+ export interface ConnectorProvisioningConfig {
165
+ lambda?: LambdaConnectorProvisioningConfig;
166
+ }
167
+ export declare enum ConnectorProvisioningType {
168
+ LAMBDA = "LAMBDA",
169
+ }
170
+ export interface ConnectorRuntimeSetting {
171
+ key?: string;
172
+ dataType?: string;
173
+ isRequired?: boolean;
174
+ label?: string;
175
+ description?: string;
176
+ scope?: string;
177
+ connectorSuppliedValueOptions?: string[];
178
+ }
179
+ export declare enum ConnectorType {
180
+ AMPLITUDE = "Amplitude",
181
+ CUSTOMCONNECTOR = "CustomConnector",
182
+ CUSTOMERPROFILES = "CustomerProfiles",
183
+ DATADOG = "Datadog",
184
+ DYNATRACE = "Dynatrace",
185
+ EVENTBRIDGE = "EventBridge",
186
+ GOOGLEANALYTICS = "Googleanalytics",
187
+ HONEYCODE = "Honeycode",
188
+ INFORNEXUS = "Infornexus",
189
+ LOOKOUTMETRICS = "LookoutMetrics",
190
+ MARKETO = "Marketo",
191
+ REDSHIFT = "Redshift",
192
+ S3 = "S3",
193
+ SALESFORCE = "Salesforce",
194
+ SAPODATA = "SAPOData",
195
+ SERVICENOW = "Servicenow",
196
+ SINGULAR = "Singular",
197
+ SLACK = "Slack",
198
+ SNOWFLAKE = "Snowflake",
199
+ TRENDMICRO = "Trendmicro",
200
+ UPSOLVER = "Upsolver",
201
+ VEEVA = "Veeva",
202
+ ZENDESK = "Zendesk",
203
+ }
204
+ export declare enum Operators {
205
+ ADDITION = "ADDITION",
206
+ BETWEEN = "BETWEEN",
207
+ CONTAINS = "CONTAINS",
208
+ DIVISION = "DIVISION",
209
+ EQUAL_TO = "EQUAL_TO",
210
+ GREATER_THAN = "GREATER_THAN",
211
+ GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
212
+ LESS_THAN = "LESS_THAN",
213
+ LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
214
+ MASK_ALL = "MASK_ALL",
215
+ MASK_FIRST_N = "MASK_FIRST_N",
216
+ MASK_LAST_N = "MASK_LAST_N",
217
+ MULTIPLICATION = "MULTIPLICATION",
218
+ NOT_EQUAL_TO = "NOT_EQUAL_TO",
219
+ NO_OP = "NO_OP",
220
+ PROJECTION = "PROJECTION",
221
+ SUBTRACTION = "SUBTRACTION",
222
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
223
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
224
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
225
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
226
+ }
227
+ export declare enum ScheduleFrequencyType {
228
+ BYMINUTE = "BYMINUTE",
229
+ DAILY = "DAILY",
230
+ HOURLY = "HOURLY",
231
+ MONTHLY = "MONTHLY",
232
+ ONCE = "ONCE",
233
+ WEEKLY = "WEEKLY",
234
+ }
235
+ export declare enum TriggerType {
236
+ EVENT = "Event",
237
+ ONDEMAND = "OnDemand",
238
+ SCHEDULED = "Scheduled",
239
+ }
240
+ export declare enum WriteOperationType {
241
+ DELETE = "DELETE",
242
+ INSERT = "INSERT",
243
+ UPDATE = "UPDATE",
244
+ UPSERT = "UPSERT",
245
+ }
246
+ export interface ConnectorConfiguration {
247
+ canUseAsSource?: boolean;
248
+ canUseAsDestination?: boolean;
249
+ supportedDestinationConnectors?: (ConnectorType | string)[];
250
+ supportedSchedulingFrequencies?: (ScheduleFrequencyType | string)[];
251
+ isPrivateLinkEnabled?: boolean;
252
+ isPrivateLinkEndpointUrlRequired?: boolean;
253
+ supportedTriggerTypes?: (TriggerType | string)[];
254
+ connectorMetadata?: ConnectorMetadata;
255
+ connectorType?: ConnectorType | string;
256
+ connectorLabel?: string;
257
+ connectorDescription?: string;
258
+ connectorOwner?: string;
259
+ connectorName?: string;
260
+ connectorVersion?: string;
261
+ connectorArn?: string;
262
+ connectorModes?: string[];
263
+ authenticationConfig?: AuthenticationConfig;
264
+ connectorRuntimeSettings?: ConnectorRuntimeSetting[];
265
+ supportedApiVersions?: string[];
266
+ supportedOperators?: (Operators | string)[];
267
+ supportedWriteOperations?: (WriteOperationType | string)[];
268
+ connectorProvisioningType?: ConnectorProvisioningType | string;
269
+ connectorProvisioningConfig?: ConnectorProvisioningConfig;
270
+ logoURL?: string;
271
+ registeredAt?: Date;
272
+ registeredBy?: string;
273
+ }
274
+ export interface ConnectorDetail {
275
+ connectorDescription?: string;
276
+ connectorName?: string;
277
+ connectorOwner?: string;
278
+ connectorVersion?: string;
279
+ applicationType?: string;
280
+ connectorType?: ConnectorType | string;
281
+ connectorLabel?: string;
282
+ registeredAt?: Date;
283
+ registeredBy?: string;
284
+ connectorProvisioningType?: ConnectorProvisioningType | string;
285
+ connectorModes?: string[];
286
+ }
287
+ export interface ConnectorEntity {
288
+ name: string | undefined;
289
+ label?: string;
290
+ hasNestedEntities?: boolean;
291
+ }
292
+ export interface DestinationFieldProperties {
293
+ isCreatable?: boolean;
294
+ isNullable?: boolean;
295
+ isUpsertable?: boolean;
296
+ isUpdatable?: boolean;
297
+ isDefaultedOnCreate?: boolean;
298
+ supportedWriteOperations?: (WriteOperationType | string)[];
299
+ }
300
+ export interface SourceFieldProperties {
301
+ isRetrievable?: boolean;
302
+ isQueryable?: boolean;
303
+ isTimestampFieldForIncrementalQueries?: boolean;
304
+ }
305
+ export interface Range {
306
+ maximum?: number;
307
+ minimum?: number;
308
+ }
309
+ export declare enum Operator {
310
+ ADDITION = "ADDITION",
311
+ BETWEEN = "BETWEEN",
312
+ CONTAINS = "CONTAINS",
313
+ DIVISION = "DIVISION",
314
+ EQUAL_TO = "EQUAL_TO",
315
+ GREATER_THAN = "GREATER_THAN",
316
+ GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
317
+ LESS_THAN = "LESS_THAN",
318
+ LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
319
+ MASK_ALL = "MASK_ALL",
320
+ MASK_FIRST_N = "MASK_FIRST_N",
321
+ MASK_LAST_N = "MASK_LAST_N",
322
+ MULTIPLICATION = "MULTIPLICATION",
323
+ NOT_EQUAL_TO = "NOT_EQUAL_TO",
324
+ NO_OP = "NO_OP",
325
+ PROJECTION = "PROJECTION",
326
+ SUBTRACTION = "SUBTRACTION",
327
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
328
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
329
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
330
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
331
+ }
332
+ export interface FieldTypeDetails {
333
+ fieldType: string | undefined;
334
+ filterOperators: (Operator | string)[] | undefined;
335
+ supportedValues?: string[];
336
+ valueRegexPattern?: string;
337
+ supportedDateFormat?: string;
338
+ fieldValueRange?: Range;
339
+ fieldLengthRange?: Range;
340
+ }
341
+ export interface SupportedFieldTypeDetails {
342
+ v1: FieldTypeDetails | undefined;
343
+ }
344
+ export interface ConnectorEntityField {
345
+ identifier: string | undefined;
346
+ parentIdentifier?: string;
347
+ label?: string;
348
+ isPrimaryKey?: boolean;
349
+ defaultValue?: string;
350
+ isDeprecated?: boolean;
351
+ supportedFieldTypeDetails?: SupportedFieldTypeDetails;
352
+ description?: string;
353
+ sourceProperties?: SourceFieldProperties;
354
+ destinationProperties?: DestinationFieldProperties;
355
+ customProperties?: Record<string, string>;
356
+ }
357
+ export interface ConnectorOAuthRequest {
358
+ authCode?: string;
359
+ redirectUri?: string;
360
+ }
361
+ export declare enum DatadogConnectorOperator {
362
+ ADDITION = "ADDITION",
363
+ BETWEEN = "BETWEEN",
364
+ DIVISION = "DIVISION",
365
+ EQUAL_TO = "EQUAL_TO",
366
+ MASK_ALL = "MASK_ALL",
367
+ MASK_FIRST_N = "MASK_FIRST_N",
368
+ MASK_LAST_N = "MASK_LAST_N",
369
+ MULTIPLICATION = "MULTIPLICATION",
370
+ NO_OP = "NO_OP",
371
+ PROJECTION = "PROJECTION",
372
+ SUBTRACTION = "SUBTRACTION",
373
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
374
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
375
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
376
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
377
+ }
378
+ export declare enum DynatraceConnectorOperator {
379
+ ADDITION = "ADDITION",
380
+ BETWEEN = "BETWEEN",
381
+ DIVISION = "DIVISION",
382
+ EQUAL_TO = "EQUAL_TO",
383
+ MASK_ALL = "MASK_ALL",
384
+ MASK_FIRST_N = "MASK_FIRST_N",
385
+ MASK_LAST_N = "MASK_LAST_N",
386
+ MULTIPLICATION = "MULTIPLICATION",
387
+ NO_OP = "NO_OP",
388
+ PROJECTION = "PROJECTION",
389
+ SUBTRACTION = "SUBTRACTION",
390
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
391
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
392
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
393
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
394
+ }
395
+ export declare enum GoogleAnalyticsConnectorOperator {
396
+ BETWEEN = "BETWEEN",
397
+ PROJECTION = "PROJECTION",
398
+ }
399
+ export declare enum InforNexusConnectorOperator {
400
+ ADDITION = "ADDITION",
401
+ BETWEEN = "BETWEEN",
402
+ DIVISION = "DIVISION",
403
+ EQUAL_TO = "EQUAL_TO",
404
+ MASK_ALL = "MASK_ALL",
405
+ MASK_FIRST_N = "MASK_FIRST_N",
406
+ MASK_LAST_N = "MASK_LAST_N",
407
+ MULTIPLICATION = "MULTIPLICATION",
408
+ NO_OP = "NO_OP",
409
+ PROJECTION = "PROJECTION",
410
+ SUBTRACTION = "SUBTRACTION",
411
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
412
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
413
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
414
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
415
+ }
416
+ export declare enum MarketoConnectorOperator {
417
+ ADDITION = "ADDITION",
418
+ BETWEEN = "BETWEEN",
419
+ DIVISION = "DIVISION",
420
+ GREATER_THAN = "GREATER_THAN",
421
+ LESS_THAN = "LESS_THAN",
422
+ MASK_ALL = "MASK_ALL",
423
+ MASK_FIRST_N = "MASK_FIRST_N",
424
+ MASK_LAST_N = "MASK_LAST_N",
425
+ MULTIPLICATION = "MULTIPLICATION",
426
+ NO_OP = "NO_OP",
427
+ PROJECTION = "PROJECTION",
428
+ SUBTRACTION = "SUBTRACTION",
429
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
430
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
431
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
432
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
433
+ }
434
+ export declare enum S3ConnectorOperator {
435
+ ADDITION = "ADDITION",
436
+ BETWEEN = "BETWEEN",
437
+ DIVISION = "DIVISION",
438
+ EQUAL_TO = "EQUAL_TO",
439
+ GREATER_THAN = "GREATER_THAN",
440
+ GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
441
+ LESS_THAN = "LESS_THAN",
442
+ LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
443
+ MASK_ALL = "MASK_ALL",
444
+ MASK_FIRST_N = "MASK_FIRST_N",
445
+ MASK_LAST_N = "MASK_LAST_N",
446
+ MULTIPLICATION = "MULTIPLICATION",
447
+ NOT_EQUAL_TO = "NOT_EQUAL_TO",
448
+ NO_OP = "NO_OP",
449
+ PROJECTION = "PROJECTION",
450
+ SUBTRACTION = "SUBTRACTION",
451
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
452
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
453
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
454
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
455
+ }
456
+ export declare enum SalesforceConnectorOperator {
457
+ ADDITION = "ADDITION",
458
+ BETWEEN = "BETWEEN",
459
+ CONTAINS = "CONTAINS",
460
+ DIVISION = "DIVISION",
461
+ EQUAL_TO = "EQUAL_TO",
462
+ GREATER_THAN = "GREATER_THAN",
463
+ GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
464
+ LESS_THAN = "LESS_THAN",
465
+ LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
466
+ MASK_ALL = "MASK_ALL",
467
+ MASK_FIRST_N = "MASK_FIRST_N",
468
+ MASK_LAST_N = "MASK_LAST_N",
469
+ MULTIPLICATION = "MULTIPLICATION",
470
+ NOT_EQUAL_TO = "NOT_EQUAL_TO",
471
+ NO_OP = "NO_OP",
472
+ PROJECTION = "PROJECTION",
473
+ SUBTRACTION = "SUBTRACTION",
474
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
475
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
476
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
477
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
478
+ }
479
+ export declare enum SAPODataConnectorOperator {
480
+ ADDITION = "ADDITION",
481
+ BETWEEN = "BETWEEN",
482
+ CONTAINS = "CONTAINS",
483
+ DIVISION = "DIVISION",
484
+ EQUAL_TO = "EQUAL_TO",
485
+ GREATER_THAN = "GREATER_THAN",
486
+ GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
487
+ LESS_THAN = "LESS_THAN",
488
+ LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
489
+ MASK_ALL = "MASK_ALL",
490
+ MASK_FIRST_N = "MASK_FIRST_N",
491
+ MASK_LAST_N = "MASK_LAST_N",
492
+ MULTIPLICATION = "MULTIPLICATION",
493
+ NOT_EQUAL_TO = "NOT_EQUAL_TO",
494
+ NO_OP = "NO_OP",
495
+ PROJECTION = "PROJECTION",
496
+ SUBTRACTION = "SUBTRACTION",
497
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
498
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
499
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
500
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
501
+ }
502
+ export declare enum ServiceNowConnectorOperator {
503
+ ADDITION = "ADDITION",
504
+ BETWEEN = "BETWEEN",
505
+ CONTAINS = "CONTAINS",
506
+ DIVISION = "DIVISION",
507
+ EQUAL_TO = "EQUAL_TO",
508
+ GREATER_THAN = "GREATER_THAN",
509
+ GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
510
+ LESS_THAN = "LESS_THAN",
511
+ LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
512
+ MASK_ALL = "MASK_ALL",
513
+ MASK_FIRST_N = "MASK_FIRST_N",
514
+ MASK_LAST_N = "MASK_LAST_N",
515
+ MULTIPLICATION = "MULTIPLICATION",
516
+ NOT_EQUAL_TO = "NOT_EQUAL_TO",
517
+ NO_OP = "NO_OP",
518
+ PROJECTION = "PROJECTION",
519
+ SUBTRACTION = "SUBTRACTION",
520
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
521
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
522
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
523
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
524
+ }
525
+ export declare enum SingularConnectorOperator {
526
+ ADDITION = "ADDITION",
527
+ DIVISION = "DIVISION",
528
+ EQUAL_TO = "EQUAL_TO",
529
+ MASK_ALL = "MASK_ALL",
530
+ MASK_FIRST_N = "MASK_FIRST_N",
531
+ MASK_LAST_N = "MASK_LAST_N",
532
+ MULTIPLICATION = "MULTIPLICATION",
533
+ NO_OP = "NO_OP",
534
+ PROJECTION = "PROJECTION",
535
+ SUBTRACTION = "SUBTRACTION",
536
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
537
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
538
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
539
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
540
+ }
541
+ export declare enum SlackConnectorOperator {
542
+ ADDITION = "ADDITION",
543
+ BETWEEN = "BETWEEN",
544
+ DIVISION = "DIVISION",
545
+ EQUAL_TO = "EQUAL_TO",
546
+ GREATER_THAN = "GREATER_THAN",
547
+ GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
548
+ LESS_THAN = "LESS_THAN",
549
+ LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
550
+ MASK_ALL = "MASK_ALL",
551
+ MASK_FIRST_N = "MASK_FIRST_N",
552
+ MASK_LAST_N = "MASK_LAST_N",
553
+ MULTIPLICATION = "MULTIPLICATION",
554
+ NO_OP = "NO_OP",
555
+ PROJECTION = "PROJECTION",
556
+ SUBTRACTION = "SUBTRACTION",
557
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
558
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
559
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
560
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
561
+ }
562
+ export declare enum TrendmicroConnectorOperator {
563
+ ADDITION = "ADDITION",
564
+ DIVISION = "DIVISION",
565
+ EQUAL_TO = "EQUAL_TO",
566
+ MASK_ALL = "MASK_ALL",
567
+ MASK_FIRST_N = "MASK_FIRST_N",
568
+ MASK_LAST_N = "MASK_LAST_N",
569
+ MULTIPLICATION = "MULTIPLICATION",
570
+ NO_OP = "NO_OP",
571
+ PROJECTION = "PROJECTION",
572
+ SUBTRACTION = "SUBTRACTION",
573
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
574
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
575
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
576
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
577
+ }
578
+ export declare enum VeevaConnectorOperator {
579
+ ADDITION = "ADDITION",
580
+ BETWEEN = "BETWEEN",
581
+ CONTAINS = "CONTAINS",
582
+ DIVISION = "DIVISION",
583
+ EQUAL_TO = "EQUAL_TO",
584
+ GREATER_THAN = "GREATER_THAN",
585
+ GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
586
+ LESS_THAN = "LESS_THAN",
587
+ LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
588
+ MASK_ALL = "MASK_ALL",
589
+ MASK_FIRST_N = "MASK_FIRST_N",
590
+ MASK_LAST_N = "MASK_LAST_N",
591
+ MULTIPLICATION = "MULTIPLICATION",
592
+ NOT_EQUAL_TO = "NOT_EQUAL_TO",
593
+ NO_OP = "NO_OP",
594
+ PROJECTION = "PROJECTION",
595
+ SUBTRACTION = "SUBTRACTION",
596
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
597
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
598
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
599
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
600
+ }
601
+ export declare enum ZendeskConnectorOperator {
602
+ ADDITION = "ADDITION",
603
+ DIVISION = "DIVISION",
604
+ GREATER_THAN = "GREATER_THAN",
605
+ MASK_ALL = "MASK_ALL",
606
+ MASK_FIRST_N = "MASK_FIRST_N",
607
+ MASK_LAST_N = "MASK_LAST_N",
608
+ MULTIPLICATION = "MULTIPLICATION",
609
+ NO_OP = "NO_OP",
610
+ PROJECTION = "PROJECTION",
611
+ SUBTRACTION = "SUBTRACTION",
612
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
613
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
614
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
615
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
616
+ }
617
+ export interface ConnectorOperator {
618
+ Amplitude?: AmplitudeConnectorOperator | string;
619
+ Datadog?: DatadogConnectorOperator | string;
620
+ Dynatrace?: DynatraceConnectorOperator | string;
621
+ GoogleAnalytics?: GoogleAnalyticsConnectorOperator | string;
622
+ InforNexus?: InforNexusConnectorOperator | string;
623
+ Marketo?: MarketoConnectorOperator | string;
624
+ S3?: S3ConnectorOperator | string;
625
+ Salesforce?: SalesforceConnectorOperator | string;
626
+ ServiceNow?: ServiceNowConnectorOperator | string;
627
+ Singular?: SingularConnectorOperator | string;
628
+ Slack?: SlackConnectorOperator | string;
629
+ Trendmicro?: TrendmicroConnectorOperator | string;
630
+ Veeva?: VeevaConnectorOperator | string;
631
+ Zendesk?: ZendeskConnectorOperator | string;
632
+ SAPOData?: SAPODataConnectorOperator | string;
633
+ CustomConnector?: Operator | string;
634
+ }
635
+ export interface OAuth2Properties {
636
+ tokenUrl: string | undefined;
637
+ oAuth2GrantType: OAuth2GrantType | string | undefined;
638
+ tokenUrlCustomProperties?: Record<string, string>;
639
+ }
640
+ export interface CustomConnectorProfileProperties {
641
+ profileProperties?: Record<string, string>;
642
+ oAuth2Properties?: OAuth2Properties;
643
+ }
644
+ export interface DatadogConnectorProfileProperties {
645
+ instanceUrl: string | undefined;
646
+ }
647
+ export interface DynatraceConnectorProfileProperties {
648
+ instanceUrl: string | undefined;
649
+ }
650
+ export interface GoogleAnalyticsConnectorProfileProperties {}
651
+ export interface HoneycodeConnectorProfileProperties {}
652
+ export interface InforNexusConnectorProfileProperties {
653
+ instanceUrl: string | undefined;
654
+ }
655
+ export interface MarketoConnectorProfileProperties {
656
+ instanceUrl: string | undefined;
657
+ }
658
+ export interface RedshiftConnectorProfileProperties {
659
+ databaseUrl: string | undefined;
660
+ bucketName: string | undefined;
661
+ bucketPrefix?: string;
662
+ roleArn: string | undefined;
663
+ }
664
+ export interface SalesforceConnectorProfileProperties {
665
+ instanceUrl?: string;
666
+ isSandboxEnvironment?: boolean;
667
+ }
668
+ export interface OAuthProperties {
669
+ tokenUrl: string | undefined;
670
+ authCodeUrl: string | undefined;
671
+ oAuthScopes: string[] | undefined;
672
+ }
673
+ export interface SAPODataConnectorProfileProperties {
674
+ applicationHostUrl: string | undefined;
675
+ applicationServicePath: string | undefined;
676
+ portNumber: number | undefined;
677
+ clientNumber: string | undefined;
678
+ logonLanguage?: string;
679
+ privateLinkServiceName?: string;
680
+ oAuthProperties?: OAuthProperties;
681
+ }
682
+ export interface ServiceNowConnectorProfileProperties {
683
+ instanceUrl: string | undefined;
684
+ }
685
+ export interface SingularConnectorProfileProperties {}
686
+ export interface SlackConnectorProfileProperties {
687
+ instanceUrl: string | undefined;
688
+ }
689
+ export interface SnowflakeConnectorProfileProperties {
690
+ warehouse: string | undefined;
691
+ stage: string | undefined;
692
+ bucketName: string | undefined;
693
+ bucketPrefix?: string;
694
+ privateLinkServiceName?: string;
695
+ accountName?: string;
696
+ region?: string;
697
+ }
698
+ export interface TrendmicroConnectorProfileProperties {}
699
+ export interface VeevaConnectorProfileProperties {
700
+ instanceUrl: string | undefined;
701
+ }
702
+ export interface ZendeskConnectorProfileProperties {
703
+ instanceUrl: string | undefined;
704
+ }
705
+ export interface ConnectorProfileProperties {
706
+ Amplitude?: AmplitudeConnectorProfileProperties;
707
+ Datadog?: DatadogConnectorProfileProperties;
708
+ Dynatrace?: DynatraceConnectorProfileProperties;
709
+ GoogleAnalytics?: GoogleAnalyticsConnectorProfileProperties;
710
+ Honeycode?: HoneycodeConnectorProfileProperties;
711
+ InforNexus?: InforNexusConnectorProfileProperties;
712
+ Marketo?: MarketoConnectorProfileProperties;
713
+ Redshift?: RedshiftConnectorProfileProperties;
714
+ Salesforce?: SalesforceConnectorProfileProperties;
715
+ ServiceNow?: ServiceNowConnectorProfileProperties;
716
+ Singular?: SingularConnectorProfileProperties;
717
+ Slack?: SlackConnectorProfileProperties;
718
+ Snowflake?: SnowflakeConnectorProfileProperties;
719
+ Trendmicro?: TrendmicroConnectorProfileProperties;
720
+ Veeva?: VeevaConnectorProfileProperties;
721
+ Zendesk?: ZendeskConnectorProfileProperties;
722
+ SAPOData?: SAPODataConnectorProfileProperties;
723
+ CustomConnector?: CustomConnectorProfileProperties;
724
+ }
725
+ export declare enum PrivateConnectionProvisioningFailureCause {
726
+ ACCESS_DENIED = "ACCESS_DENIED",
727
+ CONNECTOR_AUTHENTICATION = "CONNECTOR_AUTHENTICATION",
728
+ CONNECTOR_SERVER = "CONNECTOR_SERVER",
729
+ INTERNAL_SERVER = "INTERNAL_SERVER",
730
+ VALIDATION = "VALIDATION",
731
+ }
732
+ export declare enum PrivateConnectionProvisioningStatus {
733
+ CREATED = "CREATED",
734
+ FAILED = "FAILED",
735
+ PENDING = "PENDING",
736
+ }
737
+ export interface PrivateConnectionProvisioningState {
738
+ status?: PrivateConnectionProvisioningStatus | string;
739
+ failureMessage?: string;
740
+ failureCause?: PrivateConnectionProvisioningFailureCause | string;
741
+ }
742
+ export interface ConnectorProfile {
743
+ connectorProfileArn?: string;
744
+ connectorProfileName?: string;
745
+ connectorType?: ConnectorType | string;
746
+ connectorLabel?: string;
747
+ connectionMode?: ConnectionMode | string;
748
+ credentialsArn?: string;
749
+ connectorProfileProperties?: ConnectorProfileProperties;
750
+ createdAt?: Date;
751
+ lastUpdatedAt?: Date;
752
+ privateConnectionProvisioningState?: PrivateConnectionProvisioningState;
753
+ }
754
+ export interface CustomAuthCredentials {
755
+ customAuthenticationType: string | undefined;
756
+ credentialsMap?: Record<string, string>;
757
+ }
758
+ export interface OAuth2Credentials {
759
+ clientId?: string;
760
+ clientSecret?: string;
761
+ accessToken?: string;
762
+ refreshToken?: string;
763
+ oAuthRequest?: ConnectorOAuthRequest;
764
+ }
765
+ export interface CustomConnectorProfileCredentials {
766
+ authenticationType: AuthenticationType | string | undefined;
767
+ basic?: BasicAuthCredentials;
768
+ oauth2?: OAuth2Credentials;
769
+ apiKey?: ApiKeyCredentials;
770
+ custom?: CustomAuthCredentials;
771
+ }
772
+ export interface DatadogConnectorProfileCredentials {
773
+ apiKey: string | undefined;
774
+ applicationKey: string | undefined;
775
+ }
776
+ export interface DynatraceConnectorProfileCredentials {
777
+ apiToken: string | undefined;
778
+ }
779
+ export interface GoogleAnalyticsConnectorProfileCredentials {
780
+ clientId: string | undefined;
781
+ clientSecret: string | undefined;
782
+ accessToken?: string;
783
+ refreshToken?: string;
784
+ oAuthRequest?: ConnectorOAuthRequest;
785
+ }
786
+ export interface HoneycodeConnectorProfileCredentials {
787
+ accessToken?: string;
788
+ refreshToken?: string;
789
+ oAuthRequest?: ConnectorOAuthRequest;
790
+ }
791
+ export interface InforNexusConnectorProfileCredentials {
792
+ accessKeyId: string | undefined;
793
+ userId: string | undefined;
794
+ secretAccessKey: string | undefined;
795
+ datakey: string | undefined;
796
+ }
797
+ export interface MarketoConnectorProfileCredentials {
798
+ clientId: string | undefined;
799
+ clientSecret: string | undefined;
800
+ accessToken?: string;
801
+ oAuthRequest?: ConnectorOAuthRequest;
802
+ }
803
+ export interface RedshiftConnectorProfileCredentials {
804
+ username: string | undefined;
805
+ password: string | undefined;
806
+ }
807
+ export interface SalesforceConnectorProfileCredentials {
808
+ accessToken?: string;
809
+ refreshToken?: string;
810
+ oAuthRequest?: ConnectorOAuthRequest;
811
+ clientCredentialsArn?: string;
812
+ }
813
+ export interface OAuthCredentials {
814
+ clientId: string | undefined;
815
+ clientSecret: string | undefined;
816
+ accessToken?: string;
817
+ refreshToken?: string;
818
+ oAuthRequest?: ConnectorOAuthRequest;
819
+ }
820
+ export interface SAPODataConnectorProfileCredentials {
821
+ basicAuthCredentials?: BasicAuthCredentials;
822
+ oAuthCredentials?: OAuthCredentials;
823
+ }
824
+ export interface ServiceNowConnectorProfileCredentials {
825
+ username: string | undefined;
826
+ password: string | undefined;
827
+ }
828
+ export interface SingularConnectorProfileCredentials {
829
+ apiKey: string | undefined;
830
+ }
831
+ export interface SlackConnectorProfileCredentials {
832
+ clientId: string | undefined;
833
+ clientSecret: string | undefined;
834
+ accessToken?: string;
835
+ oAuthRequest?: ConnectorOAuthRequest;
836
+ }
837
+ export interface SnowflakeConnectorProfileCredentials {
838
+ username: string | undefined;
839
+ password: string | undefined;
840
+ }
841
+ export interface TrendmicroConnectorProfileCredentials {
842
+ apiSecretKey: string | undefined;
843
+ }
844
+ export interface VeevaConnectorProfileCredentials {
845
+ username: string | undefined;
846
+ password: string | undefined;
847
+ }
848
+ export interface ZendeskConnectorProfileCredentials {
849
+ clientId: string | undefined;
850
+ clientSecret: string | undefined;
851
+ accessToken?: string;
852
+ oAuthRequest?: ConnectorOAuthRequest;
853
+ }
854
+ export interface ConnectorProfileCredentials {
855
+ Amplitude?: AmplitudeConnectorProfileCredentials;
856
+ Datadog?: DatadogConnectorProfileCredentials;
857
+ Dynatrace?: DynatraceConnectorProfileCredentials;
858
+ GoogleAnalytics?: GoogleAnalyticsConnectorProfileCredentials;
859
+ Honeycode?: HoneycodeConnectorProfileCredentials;
860
+ InforNexus?: InforNexusConnectorProfileCredentials;
861
+ Marketo?: MarketoConnectorProfileCredentials;
862
+ Redshift?: RedshiftConnectorProfileCredentials;
863
+ Salesforce?: SalesforceConnectorProfileCredentials;
864
+ ServiceNow?: ServiceNowConnectorProfileCredentials;
865
+ Singular?: SingularConnectorProfileCredentials;
866
+ Slack?: SlackConnectorProfileCredentials;
867
+ Snowflake?: SnowflakeConnectorProfileCredentials;
868
+ Trendmicro?: TrendmicroConnectorProfileCredentials;
869
+ Veeva?: VeevaConnectorProfileCredentials;
870
+ Zendesk?: ZendeskConnectorProfileCredentials;
871
+ SAPOData?: SAPODataConnectorProfileCredentials;
872
+ CustomConnector?: CustomConnectorProfileCredentials;
873
+ }
874
+ export interface ConnectorProfileConfig {
875
+ connectorProfileProperties: ConnectorProfileProperties | undefined;
876
+ connectorProfileCredentials: ConnectorProfileCredentials | undefined;
877
+ }
878
+ export declare class ConnectorServerException extends __BaseException {
879
+ readonly name: "ConnectorServerException";
880
+ readonly $fault: "client";
881
+ constructor(
882
+ opts: __ExceptionOptionType<ConnectorServerException, __BaseException>
883
+ );
884
+ }
885
+ export interface CreateConnectorProfileRequest {
886
+ connectorProfileName: string | undefined;
887
+ kmsArn?: string;
888
+ connectorType: ConnectorType | string | undefined;
889
+ connectorLabel?: string;
890
+ connectionMode: ConnectionMode | string | undefined;
891
+ connectorProfileConfig: ConnectorProfileConfig | undefined;
892
+ }
893
+ export interface CreateConnectorProfileResponse {
894
+ connectorProfileArn?: string;
895
+ }
896
+ export declare class InternalServerException extends __BaseException {
897
+ readonly name: "InternalServerException";
898
+ readonly $fault: "server";
899
+ constructor(
900
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
901
+ );
902
+ }
903
+ export declare class ServiceQuotaExceededException extends __BaseException {
904
+ readonly name: "ServiceQuotaExceededException";
905
+ readonly $fault: "client";
906
+ constructor(
907
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
908
+ );
909
+ }
910
+ export declare class ValidationException extends __BaseException {
911
+ readonly name: "ValidationException";
912
+ readonly $fault: "client";
913
+ constructor(
914
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
915
+ );
916
+ }
917
+ export interface ErrorHandlingConfig {
918
+ failOnFirstDestinationError?: boolean;
919
+ bucketPrefix?: string;
920
+ bucketName?: string;
921
+ }
922
+ export interface CustomConnectorDestinationProperties {
923
+ entityName: string | undefined;
924
+ errorHandlingConfig?: ErrorHandlingConfig;
925
+ writeOperationType?: WriteOperationType | string;
926
+ idFieldNames?: string[];
927
+ customProperties?: Record<string, string>;
928
+ }
929
+ export interface CustomerProfilesDestinationProperties {
930
+ domainName: string | undefined;
931
+ objectTypeName?: string;
932
+ }
933
+ export interface EventBridgeDestinationProperties {
934
+ object: string | undefined;
935
+ errorHandlingConfig?: ErrorHandlingConfig;
936
+ }
937
+ export interface HoneycodeDestinationProperties {
938
+ object: string | undefined;
939
+ errorHandlingConfig?: ErrorHandlingConfig;
940
+ }
941
+ export interface LookoutMetricsDestinationProperties {}
942
+ export interface MarketoDestinationProperties {
943
+ object: string | undefined;
944
+ errorHandlingConfig?: ErrorHandlingConfig;
945
+ }
946
+ export interface RedshiftDestinationProperties {
947
+ object: string | undefined;
948
+ intermediateBucketName: string | undefined;
949
+ bucketPrefix?: string;
950
+ errorHandlingConfig?: ErrorHandlingConfig;
951
+ }
952
+ export declare enum FileType {
953
+ CSV = "CSV",
954
+ JSON = "JSON",
955
+ PARQUET = "PARQUET",
956
+ }
957
+ export declare enum PrefixFormat {
958
+ DAY = "DAY",
959
+ HOUR = "HOUR",
960
+ MINUTE = "MINUTE",
961
+ MONTH = "MONTH",
962
+ YEAR = "YEAR",
963
+ }
964
+ export declare enum PrefixType {
965
+ FILENAME = "FILENAME",
966
+ PATH = "PATH",
967
+ PATH_AND_FILENAME = "PATH_AND_FILENAME",
968
+ }
969
+ export interface PrefixConfig {
970
+ prefixType?: PrefixType | string;
971
+ prefixFormat?: PrefixFormat | string;
972
+ }
973
+ export interface S3OutputFormatConfig {
974
+ fileType?: FileType | string;
975
+ prefixConfig?: PrefixConfig;
976
+ aggregationConfig?: AggregationConfig;
977
+ preserveSourceDataTyping?: boolean;
978
+ }
979
+ export interface S3DestinationProperties {
980
+ bucketName: string | undefined;
981
+ bucketPrefix?: string;
982
+ s3OutputFormatConfig?: S3OutputFormatConfig;
983
+ }
984
+ export interface SalesforceDestinationProperties {
985
+ object: string | undefined;
986
+ idFieldNames?: string[];
987
+ errorHandlingConfig?: ErrorHandlingConfig;
988
+ writeOperationType?: WriteOperationType | string;
989
+ }
990
+ export interface SuccessResponseHandlingConfig {
991
+ bucketPrefix?: string;
992
+ bucketName?: string;
993
+ }
994
+ export interface SAPODataDestinationProperties {
995
+ objectPath: string | undefined;
996
+ successResponseHandlingConfig?: SuccessResponseHandlingConfig;
997
+ idFieldNames?: string[];
998
+ errorHandlingConfig?: ErrorHandlingConfig;
999
+ writeOperationType?: WriteOperationType | string;
1000
+ }
1001
+ export interface SnowflakeDestinationProperties {
1002
+ object: string | undefined;
1003
+ intermediateBucketName: string | undefined;
1004
+ bucketPrefix?: string;
1005
+ errorHandlingConfig?: ErrorHandlingConfig;
1006
+ }
1007
+ export interface UpsolverS3OutputFormatConfig {
1008
+ fileType?: FileType | string;
1009
+ prefixConfig: PrefixConfig | undefined;
1010
+ aggregationConfig?: AggregationConfig;
1011
+ }
1012
+ export interface UpsolverDestinationProperties {
1013
+ bucketName: string | undefined;
1014
+ bucketPrefix?: string;
1015
+ s3OutputFormatConfig: UpsolverS3OutputFormatConfig | undefined;
1016
+ }
1017
+ export interface ZendeskDestinationProperties {
1018
+ object: string | undefined;
1019
+ idFieldNames?: string[];
1020
+ errorHandlingConfig?: ErrorHandlingConfig;
1021
+ writeOperationType?: WriteOperationType | string;
1022
+ }
1023
+ export interface DestinationConnectorProperties {
1024
+ Redshift?: RedshiftDestinationProperties;
1025
+ S3?: S3DestinationProperties;
1026
+ Salesforce?: SalesforceDestinationProperties;
1027
+ Snowflake?: SnowflakeDestinationProperties;
1028
+ EventBridge?: EventBridgeDestinationProperties;
1029
+ LookoutMetrics?: LookoutMetricsDestinationProperties;
1030
+ Upsolver?: UpsolverDestinationProperties;
1031
+ Honeycode?: HoneycodeDestinationProperties;
1032
+ CustomerProfiles?: CustomerProfilesDestinationProperties;
1033
+ Zendesk?: ZendeskDestinationProperties;
1034
+ Marketo?: MarketoDestinationProperties;
1035
+ CustomConnector?: CustomConnectorDestinationProperties;
1036
+ SAPOData?: SAPODataDestinationProperties;
1037
+ }
1038
+ export interface DestinationFlowConfig {
1039
+ connectorType: ConnectorType | string | undefined;
1040
+ apiVersion?: string;
1041
+ connectorProfileName?: string;
1042
+ destinationConnectorProperties: DestinationConnectorProperties | undefined;
1043
+ }
1044
+ export interface IncrementalPullConfig {
1045
+ datetimeTypeFieldName?: string;
1046
+ }
1047
+ export interface CustomConnectorSourceProperties {
1048
+ entityName: string | undefined;
1049
+ customProperties?: Record<string, string>;
1050
+ }
1051
+ export interface DatadogSourceProperties {
1052
+ object: string | undefined;
1053
+ }
1054
+ export interface DynatraceSourceProperties {
1055
+ object: string | undefined;
1056
+ }
1057
+ export interface GoogleAnalyticsSourceProperties {
1058
+ object: string | undefined;
1059
+ }
1060
+ export interface InforNexusSourceProperties {
1061
+ object: string | undefined;
1062
+ }
1063
+ export interface MarketoSourceProperties {
1064
+ object: string | undefined;
1065
+ }
1066
+ export declare enum S3InputFileType {
1067
+ CSV = "CSV",
1068
+ JSON = "JSON",
1069
+ }
1070
+ export interface S3InputFormatConfig {
1071
+ s3InputFileType?: S3InputFileType | string;
1072
+ }
1073
+ export interface S3SourceProperties {
1074
+ bucketName: string | undefined;
1075
+ bucketPrefix?: string;
1076
+ s3InputFormatConfig?: S3InputFormatConfig;
1077
+ }
1078
+ export interface SalesforceSourceProperties {
1079
+ object: string | undefined;
1080
+ enableDynamicFieldUpdate?: boolean;
1081
+ includeDeletedRecords?: boolean;
1082
+ }
1083
+ export interface SAPODataSourceProperties {
1084
+ objectPath?: string;
1085
+ }
1086
+ export interface ServiceNowSourceProperties {
1087
+ object: string | undefined;
1088
+ }
1089
+ export interface SingularSourceProperties {
1090
+ object: string | undefined;
1091
+ }
1092
+ export interface SlackSourceProperties {
1093
+ object: string | undefined;
1094
+ }
1095
+ export interface TrendmicroSourceProperties {
1096
+ object: string | undefined;
1097
+ }
1098
+ export interface VeevaSourceProperties {
1099
+ object: string | undefined;
1100
+ documentType?: string;
1101
+ includeSourceFiles?: boolean;
1102
+ includeRenditions?: boolean;
1103
+ includeAllVersions?: boolean;
1104
+ }
1105
+ export interface ZendeskSourceProperties {
1106
+ object: string | undefined;
1107
+ }
1108
+ export interface SourceConnectorProperties {
1109
+ Amplitude?: AmplitudeSourceProperties;
1110
+ Datadog?: DatadogSourceProperties;
1111
+ Dynatrace?: DynatraceSourceProperties;
1112
+ GoogleAnalytics?: GoogleAnalyticsSourceProperties;
1113
+ InforNexus?: InforNexusSourceProperties;
1114
+ Marketo?: MarketoSourceProperties;
1115
+ S3?: S3SourceProperties;
1116
+ Salesforce?: SalesforceSourceProperties;
1117
+ ServiceNow?: ServiceNowSourceProperties;
1118
+ Singular?: SingularSourceProperties;
1119
+ Slack?: SlackSourceProperties;
1120
+ Trendmicro?: TrendmicroSourceProperties;
1121
+ Veeva?: VeevaSourceProperties;
1122
+ Zendesk?: ZendeskSourceProperties;
1123
+ SAPOData?: SAPODataSourceProperties;
1124
+ CustomConnector?: CustomConnectorSourceProperties;
1125
+ }
1126
+ export interface SourceFlowConfig {
1127
+ connectorType: ConnectorType | string | undefined;
1128
+ apiVersion?: string;
1129
+ connectorProfileName?: string;
1130
+ sourceConnectorProperties: SourceConnectorProperties | undefined;
1131
+ incrementalPullConfig?: IncrementalPullConfig;
1132
+ }
1133
+ export declare enum OperatorPropertiesKeys {
1134
+ CONCAT_FORMAT = "CONCAT_FORMAT",
1135
+ DATA_TYPE = "DATA_TYPE",
1136
+ DESTINATION_DATA_TYPE = "DESTINATION_DATA_TYPE",
1137
+ EXCLUDE_SOURCE_FIELDS_LIST = "EXCLUDE_SOURCE_FIELDS_LIST",
1138
+ LOWER_BOUND = "LOWER_BOUND",
1139
+ MASK_LENGTH = "MASK_LENGTH",
1140
+ MASK_VALUE = "MASK_VALUE",
1141
+ MATH_OPERATION_FIELDS_ORDER = "MATH_OPERATION_FIELDS_ORDER",
1142
+ SOURCE_DATA_TYPE = "SOURCE_DATA_TYPE",
1143
+ SUBFIELD_CATEGORY_MAP = "SUBFIELD_CATEGORY_MAP",
1144
+ TRUNCATE_LENGTH = "TRUNCATE_LENGTH",
1145
+ UPPER_BOUND = "UPPER_BOUND",
1146
+ VALIDATION_ACTION = "VALIDATION_ACTION",
1147
+ VALUE = "VALUE",
1148
+ VALUES = "VALUES",
1149
+ }
1150
+ export declare enum TaskType {
1151
+ ARITHMETIC = "Arithmetic",
1152
+ FILTER = "Filter",
1153
+ MAP = "Map",
1154
+ MAP_ALL = "Map_all",
1155
+ MASK = "Mask",
1156
+ MERGE = "Merge",
1157
+ PASSTHROUGH = "Passthrough",
1158
+ TRUNCATE = "Truncate",
1159
+ VALIDATE = "Validate",
1160
+ }
1161
+ export interface Task {
1162
+ sourceFields: string[] | undefined;
1163
+ connectorOperator?: ConnectorOperator;
1164
+ destinationField?: string;
1165
+ taskType: TaskType | string | undefined;
1166
+ taskProperties?: Record<string, string>;
1167
+ }
1168
+ export declare enum DataPullMode {
1169
+ COMPLETE = "Complete",
1170
+ INCREMENTAL = "Incremental",
1171
+ }
1172
+ export interface ScheduledTriggerProperties {
1173
+ scheduleExpression: string | undefined;
1174
+ dataPullMode?: DataPullMode | string;
1175
+ scheduleStartTime?: Date;
1176
+ scheduleEndTime?: Date;
1177
+ timezone?: string;
1178
+ scheduleOffset?: number;
1179
+ firstExecutionFrom?: Date;
1180
+ flowErrorDeactivationThreshold?: number;
1181
+ }
1182
+ export interface TriggerProperties {
1183
+ Scheduled?: ScheduledTriggerProperties;
1184
+ }
1185
+ export interface TriggerConfig {
1186
+ triggerType: TriggerType | string | undefined;
1187
+ triggerProperties?: TriggerProperties;
1188
+ }
1189
+ export interface CreateFlowRequest {
1190
+ flowName: string | undefined;
1191
+ description?: string;
1192
+ kmsArn?: string;
1193
+ triggerConfig: TriggerConfig | undefined;
1194
+ sourceFlowConfig: SourceFlowConfig | undefined;
1195
+ destinationFlowConfigList: DestinationFlowConfig[] | undefined;
1196
+ tasks: Task[] | undefined;
1197
+ tags?: Record<string, string>;
1198
+ }
1199
+ export declare enum FlowStatus {
1200
+ ACTIVE = "Active",
1201
+ DELETED = "Deleted",
1202
+ DEPRECATED = "Deprecated",
1203
+ DRAFT = "Draft",
1204
+ ERRORED = "Errored",
1205
+ SUSPENDED = "Suspended",
1206
+ }
1207
+ export interface CreateFlowResponse {
1208
+ flowArn?: string;
1209
+ flowStatus?: FlowStatus | string;
1210
+ }
1211
+ export declare class ResourceNotFoundException extends __BaseException {
1212
+ readonly name: "ResourceNotFoundException";
1213
+ readonly $fault: "client";
1214
+ constructor(
1215
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
1216
+ );
1217
+ }
1218
+ export interface DeleteConnectorProfileRequest {
1219
+ connectorProfileName: string | undefined;
1220
+ forceDelete?: boolean;
1221
+ }
1222
+ export interface DeleteConnectorProfileResponse {}
1223
+ export interface DeleteFlowRequest {
1224
+ flowName: string | undefined;
1225
+ forceDelete?: boolean;
1226
+ }
1227
+ export interface DeleteFlowResponse {}
1228
+ export interface DescribeConnectorRequest {
1229
+ connectorType: ConnectorType | string | undefined;
1230
+ connectorLabel?: string;
1231
+ }
1232
+ export interface DescribeConnectorResponse {
1233
+ connectorConfiguration?: ConnectorConfiguration;
1234
+ }
1235
+ export interface DescribeConnectorEntityRequest {
1236
+ connectorEntityName: string | undefined;
1237
+ connectorType?: ConnectorType | string;
1238
+ connectorProfileName?: string;
1239
+ apiVersion?: string;
1240
+ }
1241
+ export interface DescribeConnectorEntityResponse {
1242
+ connectorEntityFields: ConnectorEntityField[] | undefined;
1243
+ }
1244
+ export interface DescribeConnectorProfilesRequest {
1245
+ connectorProfileNames?: string[];
1246
+ connectorType?: ConnectorType | string;
1247
+ connectorLabel?: string;
1248
+ maxResults?: number;
1249
+ nextToken?: string;
1250
+ }
1251
+ export interface DescribeConnectorProfilesResponse {
1252
+ connectorProfileDetails?: ConnectorProfile[];
1253
+ nextToken?: string;
1254
+ }
1255
+ export interface DescribeConnectorsRequest {
1256
+ connectorTypes?: (ConnectorType | string)[];
1257
+ maxResults?: number;
1258
+ nextToken?: string;
1259
+ }
1260
+ export interface DescribeConnectorsResponse {
1261
+ connectorConfigurations?: Record<string, ConnectorConfiguration>;
1262
+ connectors?: ConnectorDetail[];
1263
+ nextToken?: string;
1264
+ }
1265
+ export interface DescribeFlowRequest {
1266
+ flowName: string | undefined;
1267
+ }
1268
+ export declare enum ExecutionStatus {
1269
+ ERROR = "Error",
1270
+ INPROGRESS = "InProgress",
1271
+ SUCCESSFUL = "Successful",
1272
+ }
1273
+ export interface ExecutionDetails {
1274
+ mostRecentExecutionMessage?: string;
1275
+ mostRecentExecutionTime?: Date;
1276
+ mostRecentExecutionStatus?: ExecutionStatus | string;
1277
+ }
1278
+ export interface DescribeFlowResponse {
1279
+ flowArn?: string;
1280
+ description?: string;
1281
+ flowName?: string;
1282
+ kmsArn?: string;
1283
+ flowStatus?: FlowStatus | string;
1284
+ flowStatusMessage?: string;
1285
+ sourceFlowConfig?: SourceFlowConfig;
1286
+ destinationFlowConfigList?: DestinationFlowConfig[];
1287
+ lastRunExecutionDetails?: ExecutionDetails;
1288
+ triggerConfig?: TriggerConfig;
1289
+ tasks?: Task[];
1290
+ createdAt?: Date;
1291
+ lastUpdatedAt?: Date;
1292
+ createdBy?: string;
1293
+ lastUpdatedBy?: string;
1294
+ tags?: Record<string, string>;
1295
+ }
1296
+ export interface DescribeFlowExecutionRecordsRequest {
1297
+ flowName: string | undefined;
1298
+ maxResults?: number;
1299
+ nextToken?: string;
1300
+ }
1301
+ export interface ErrorInfo {
1302
+ putFailuresCount?: number;
1303
+ executionMessage?: string;
1304
+ }
1305
+ export interface ExecutionResult {
1306
+ errorInfo?: ErrorInfo;
1307
+ bytesProcessed?: number;
1308
+ bytesWritten?: number;
1309
+ recordsProcessed?: number;
1310
+ }
1311
+ export interface ExecutionRecord {
1312
+ executionId?: string;
1313
+ executionStatus?: ExecutionStatus | string;
1314
+ executionResult?: ExecutionResult;
1315
+ startedAt?: Date;
1316
+ lastUpdatedAt?: Date;
1317
+ dataPullStartTime?: Date;
1318
+ dataPullEndTime?: Date;
1319
+ }
1320
+ export interface DescribeFlowExecutionRecordsResponse {
1321
+ flowExecutions?: ExecutionRecord[];
1322
+ nextToken?: string;
1323
+ }
1324
+ export interface FlowDefinition {
1325
+ flowArn?: string;
1326
+ description?: string;
1327
+ flowName?: string;
1328
+ flowStatus?: FlowStatus | string;
1329
+ sourceConnectorType?: ConnectorType | string;
1330
+ sourceConnectorLabel?: string;
1331
+ destinationConnectorType?: ConnectorType | string;
1332
+ destinationConnectorLabel?: string;
1333
+ triggerType?: TriggerType | string;
1334
+ createdAt?: Date;
1335
+ lastUpdatedAt?: Date;
1336
+ createdBy?: string;
1337
+ lastUpdatedBy?: string;
1338
+ tags?: Record<string, string>;
1339
+ lastRunExecutionDetails?: ExecutionDetails;
1340
+ }
1341
+ export interface ListConnectorEntitiesRequest {
1342
+ connectorProfileName?: string;
1343
+ connectorType?: ConnectorType | string;
1344
+ entitiesPath?: string;
1345
+ apiVersion?: string;
1346
+ }
1347
+ export interface ListConnectorEntitiesResponse {
1348
+ connectorEntityMap: Record<string, ConnectorEntity[]> | undefined;
1349
+ }
1350
+ export interface ListConnectorsRequest {
1351
+ maxResults?: number;
1352
+ nextToken?: string;
1353
+ }
1354
+ export interface ListConnectorsResponse {
1355
+ connectors?: ConnectorDetail[];
1356
+ nextToken?: string;
1357
+ }
1358
+ export interface ListFlowsRequest {
1359
+ maxResults?: number;
1360
+ nextToken?: string;
1361
+ }
1362
+ export interface ListFlowsResponse {
1363
+ flows?: FlowDefinition[];
1364
+ nextToken?: string;
1365
+ }
1366
+ export interface ListTagsForResourceRequest {
1367
+ resourceArn: string | undefined;
1368
+ }
1369
+ export interface ListTagsForResourceResponse {
1370
+ tags?: Record<string, string>;
1371
+ }
1372
+ export interface RegisterConnectorRequest {
1373
+ connectorLabel?: string;
1374
+ description?: string;
1375
+ connectorProvisioningType?: ConnectorProvisioningType | string;
1376
+ connectorProvisioningConfig?: ConnectorProvisioningConfig;
1377
+ }
1378
+ export interface RegisterConnectorResponse {
1379
+ connectorArn?: string;
1380
+ }
1381
+ export declare class ThrottlingException extends __BaseException {
1382
+ readonly name: "ThrottlingException";
1383
+ readonly $fault: "client";
1384
+ constructor(
1385
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
1386
+ );
1387
+ }
1388
+ export interface StartFlowRequest {
1389
+ flowName: string | undefined;
1390
+ }
1391
+ export interface StartFlowResponse {
1392
+ flowArn?: string;
1393
+ flowStatus?: FlowStatus | string;
1394
+ executionId?: string;
1395
+ }
1396
+ export interface StopFlowRequest {
1397
+ flowName: string | undefined;
1398
+ }
1399
+ export interface StopFlowResponse {
1400
+ flowArn?: string;
1401
+ flowStatus?: FlowStatus | string;
1402
+ }
1403
+ export declare class UnsupportedOperationException extends __BaseException {
1404
+ readonly name: "UnsupportedOperationException";
1405
+ readonly $fault: "client";
1406
+ constructor(
1407
+ opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
1408
+ );
1409
+ }
1410
+ export interface TagResourceRequest {
1411
+ resourceArn: string | undefined;
1412
+ tags: Record<string, string> | undefined;
1413
+ }
1414
+ export interface TagResourceResponse {}
1415
+ export interface UnregisterConnectorRequest {
1416
+ connectorLabel: string | undefined;
1417
+ forceDelete?: boolean;
1418
+ }
1419
+ export interface UnregisterConnectorResponse {}
1420
+ export interface UntagResourceRequest {
1421
+ resourceArn: string | undefined;
1422
+ tagKeys: string[] | undefined;
1423
+ }
1424
+ export interface UntagResourceResponse {}
1425
+ export interface UpdateConnectorProfileRequest {
1426
+ connectorProfileName: string | undefined;
1427
+ connectionMode: ConnectionMode | string | undefined;
1428
+ connectorProfileConfig: ConnectorProfileConfig | undefined;
1429
+ }
1430
+ export interface UpdateConnectorProfileResponse {
1431
+ connectorProfileArn?: string;
1432
+ }
1433
+ export interface UpdateFlowRequest {
1434
+ flowName: string | undefined;
1435
+ description?: string;
1436
+ triggerConfig: TriggerConfig | undefined;
1437
+ sourceFlowConfig: SourceFlowConfig | undefined;
1438
+ destinationFlowConfigList: DestinationFlowConfig[] | undefined;
1439
+ tasks: Task[] | undefined;
1440
+ }
1441
+ export interface UpdateFlowResponse {
1442
+ flowStatus?: FlowStatus | string;
1443
+ }
1444
+ export declare const AggregationConfigFilterSensitiveLog: (
1445
+ obj: AggregationConfig
1446
+ ) => any;
1447
+ export declare const AmplitudeConnectorProfileCredentialsFilterSensitiveLog: (
1448
+ obj: AmplitudeConnectorProfileCredentials
1449
+ ) => any;
1450
+ export declare const AmplitudeConnectorProfilePropertiesFilterSensitiveLog: (
1451
+ obj: AmplitudeConnectorProfileProperties
1452
+ ) => any;
1453
+ export declare const AmplitudeMetadataFilterSensitiveLog: (
1454
+ obj: AmplitudeMetadata
1455
+ ) => any;
1456
+ export declare const AmplitudeSourcePropertiesFilterSensitiveLog: (
1457
+ obj: AmplitudeSourceProperties
1458
+ ) => any;
1459
+ export declare const ApiKeyCredentialsFilterSensitiveLog: (
1460
+ obj: ApiKeyCredentials
1461
+ ) => any;
1462
+ export declare const AuthParameterFilterSensitiveLog: (
1463
+ obj: AuthParameter
1464
+ ) => any;
1465
+ export declare const CustomAuthConfigFilterSensitiveLog: (
1466
+ obj: CustomAuthConfig
1467
+ ) => any;
1468
+ export declare const OAuth2CustomParameterFilterSensitiveLog: (
1469
+ obj: OAuth2CustomParameter
1470
+ ) => any;
1471
+ export declare const OAuth2DefaultsFilterSensitiveLog: (
1472
+ obj: OAuth2Defaults
1473
+ ) => any;
1474
+ export declare const AuthenticationConfigFilterSensitiveLog: (
1475
+ obj: AuthenticationConfig
1476
+ ) => any;
1477
+ export declare const BasicAuthCredentialsFilterSensitiveLog: (
1478
+ obj: BasicAuthCredentials
1479
+ ) => any;
1480
+ export declare const CustomerProfilesMetadataFilterSensitiveLog: (
1481
+ obj: CustomerProfilesMetadata
1482
+ ) => any;
1483
+ export declare const DatadogMetadataFilterSensitiveLog: (
1484
+ obj: DatadogMetadata
1485
+ ) => any;
1486
+ export declare const DynatraceMetadataFilterSensitiveLog: (
1487
+ obj: DynatraceMetadata
1488
+ ) => any;
1489
+ export declare const EventBridgeMetadataFilterSensitiveLog: (
1490
+ obj: EventBridgeMetadata
1491
+ ) => any;
1492
+ export declare const GoogleAnalyticsMetadataFilterSensitiveLog: (
1493
+ obj: GoogleAnalyticsMetadata
1494
+ ) => any;
1495
+ export declare const HoneycodeMetadataFilterSensitiveLog: (
1496
+ obj: HoneycodeMetadata
1497
+ ) => any;
1498
+ export declare const InforNexusMetadataFilterSensitiveLog: (
1499
+ obj: InforNexusMetadata
1500
+ ) => any;
1501
+ export declare const MarketoMetadataFilterSensitiveLog: (
1502
+ obj: MarketoMetadata
1503
+ ) => any;
1504
+ export declare const RedshiftMetadataFilterSensitiveLog: (
1505
+ obj: RedshiftMetadata
1506
+ ) => any;
1507
+ export declare const S3MetadataFilterSensitiveLog: (obj: S3Metadata) => any;
1508
+ export declare const SalesforceMetadataFilterSensitiveLog: (
1509
+ obj: SalesforceMetadata
1510
+ ) => any;
1511
+ export declare const SAPODataMetadataFilterSensitiveLog: (
1512
+ obj: SAPODataMetadata
1513
+ ) => any;
1514
+ export declare const ServiceNowMetadataFilterSensitiveLog: (
1515
+ obj: ServiceNowMetadata
1516
+ ) => any;
1517
+ export declare const SingularMetadataFilterSensitiveLog: (
1518
+ obj: SingularMetadata
1519
+ ) => any;
1520
+ export declare const SlackMetadataFilterSensitiveLog: (
1521
+ obj: SlackMetadata
1522
+ ) => any;
1523
+ export declare const SnowflakeMetadataFilterSensitiveLog: (
1524
+ obj: SnowflakeMetadata
1525
+ ) => any;
1526
+ export declare const TrendmicroMetadataFilterSensitiveLog: (
1527
+ obj: TrendmicroMetadata
1528
+ ) => any;
1529
+ export declare const UpsolverMetadataFilterSensitiveLog: (
1530
+ obj: UpsolverMetadata
1531
+ ) => any;
1532
+ export declare const VeevaMetadataFilterSensitiveLog: (
1533
+ obj: VeevaMetadata
1534
+ ) => any;
1535
+ export declare const ZendeskMetadataFilterSensitiveLog: (
1536
+ obj: ZendeskMetadata
1537
+ ) => any;
1538
+ export declare const ConnectorMetadataFilterSensitiveLog: (
1539
+ obj: ConnectorMetadata
1540
+ ) => any;
1541
+ export declare const LambdaConnectorProvisioningConfigFilterSensitiveLog: (
1542
+ obj: LambdaConnectorProvisioningConfig
1543
+ ) => any;
1544
+ export declare const ConnectorProvisioningConfigFilterSensitiveLog: (
1545
+ obj: ConnectorProvisioningConfig
1546
+ ) => any;
1547
+ export declare const ConnectorRuntimeSettingFilterSensitiveLog: (
1548
+ obj: ConnectorRuntimeSetting
1549
+ ) => any;
1550
+ export declare const ConnectorConfigurationFilterSensitiveLog: (
1551
+ obj: ConnectorConfiguration
1552
+ ) => any;
1553
+ export declare const ConnectorDetailFilterSensitiveLog: (
1554
+ obj: ConnectorDetail
1555
+ ) => any;
1556
+ export declare const ConnectorEntityFilterSensitiveLog: (
1557
+ obj: ConnectorEntity
1558
+ ) => any;
1559
+ export declare const DestinationFieldPropertiesFilterSensitiveLog: (
1560
+ obj: DestinationFieldProperties
1561
+ ) => any;
1562
+ export declare const SourceFieldPropertiesFilterSensitiveLog: (
1563
+ obj: SourceFieldProperties
1564
+ ) => any;
1565
+ export declare const RangeFilterSensitiveLog: (obj: Range) => any;
1566
+ export declare const FieldTypeDetailsFilterSensitiveLog: (
1567
+ obj: FieldTypeDetails
1568
+ ) => any;
1569
+ export declare const SupportedFieldTypeDetailsFilterSensitiveLog: (
1570
+ obj: SupportedFieldTypeDetails
1571
+ ) => any;
1572
+ export declare const ConnectorEntityFieldFilterSensitiveLog: (
1573
+ obj: ConnectorEntityField
1574
+ ) => any;
1575
+ export declare const ConnectorOAuthRequestFilterSensitiveLog: (
1576
+ obj: ConnectorOAuthRequest
1577
+ ) => any;
1578
+ export declare const ConnectorOperatorFilterSensitiveLog: (
1579
+ obj: ConnectorOperator
1580
+ ) => any;
1581
+ export declare const OAuth2PropertiesFilterSensitiveLog: (
1582
+ obj: OAuth2Properties
1583
+ ) => any;
1584
+ export declare const CustomConnectorProfilePropertiesFilterSensitiveLog: (
1585
+ obj: CustomConnectorProfileProperties
1586
+ ) => any;
1587
+ export declare const DatadogConnectorProfilePropertiesFilterSensitiveLog: (
1588
+ obj: DatadogConnectorProfileProperties
1589
+ ) => any;
1590
+ export declare const DynatraceConnectorProfilePropertiesFilterSensitiveLog: (
1591
+ obj: DynatraceConnectorProfileProperties
1592
+ ) => any;
1593
+ export declare const GoogleAnalyticsConnectorProfilePropertiesFilterSensitiveLog: (
1594
+ obj: GoogleAnalyticsConnectorProfileProperties
1595
+ ) => any;
1596
+ export declare const HoneycodeConnectorProfilePropertiesFilterSensitiveLog: (
1597
+ obj: HoneycodeConnectorProfileProperties
1598
+ ) => any;
1599
+ export declare const InforNexusConnectorProfilePropertiesFilterSensitiveLog: (
1600
+ obj: InforNexusConnectorProfileProperties
1601
+ ) => any;
1602
+ export declare const MarketoConnectorProfilePropertiesFilterSensitiveLog: (
1603
+ obj: MarketoConnectorProfileProperties
1604
+ ) => any;
1605
+ export declare const RedshiftConnectorProfilePropertiesFilterSensitiveLog: (
1606
+ obj: RedshiftConnectorProfileProperties
1607
+ ) => any;
1608
+ export declare const SalesforceConnectorProfilePropertiesFilterSensitiveLog: (
1609
+ obj: SalesforceConnectorProfileProperties
1610
+ ) => any;
1611
+ export declare const OAuthPropertiesFilterSensitiveLog: (
1612
+ obj: OAuthProperties
1613
+ ) => any;
1614
+ export declare const SAPODataConnectorProfilePropertiesFilterSensitiveLog: (
1615
+ obj: SAPODataConnectorProfileProperties
1616
+ ) => any;
1617
+ export declare const ServiceNowConnectorProfilePropertiesFilterSensitiveLog: (
1618
+ obj: ServiceNowConnectorProfileProperties
1619
+ ) => any;
1620
+ export declare const SingularConnectorProfilePropertiesFilterSensitiveLog: (
1621
+ obj: SingularConnectorProfileProperties
1622
+ ) => any;
1623
+ export declare const SlackConnectorProfilePropertiesFilterSensitiveLog: (
1624
+ obj: SlackConnectorProfileProperties
1625
+ ) => any;
1626
+ export declare const SnowflakeConnectorProfilePropertiesFilterSensitiveLog: (
1627
+ obj: SnowflakeConnectorProfileProperties
1628
+ ) => any;
1629
+ export declare const TrendmicroConnectorProfilePropertiesFilterSensitiveLog: (
1630
+ obj: TrendmicroConnectorProfileProperties
1631
+ ) => any;
1632
+ export declare const VeevaConnectorProfilePropertiesFilterSensitiveLog: (
1633
+ obj: VeevaConnectorProfileProperties
1634
+ ) => any;
1635
+ export declare const ZendeskConnectorProfilePropertiesFilterSensitiveLog: (
1636
+ obj: ZendeskConnectorProfileProperties
1637
+ ) => any;
1638
+ export declare const ConnectorProfilePropertiesFilterSensitiveLog: (
1639
+ obj: ConnectorProfileProperties
1640
+ ) => any;
1641
+ export declare const PrivateConnectionProvisioningStateFilterSensitiveLog: (
1642
+ obj: PrivateConnectionProvisioningState
1643
+ ) => any;
1644
+ export declare const ConnectorProfileFilterSensitiveLog: (
1645
+ obj: ConnectorProfile
1646
+ ) => any;
1647
+ export declare const CustomAuthCredentialsFilterSensitiveLog: (
1648
+ obj: CustomAuthCredentials
1649
+ ) => any;
1650
+ export declare const OAuth2CredentialsFilterSensitiveLog: (
1651
+ obj: OAuth2Credentials
1652
+ ) => any;
1653
+ export declare const CustomConnectorProfileCredentialsFilterSensitiveLog: (
1654
+ obj: CustomConnectorProfileCredentials
1655
+ ) => any;
1656
+ export declare const DatadogConnectorProfileCredentialsFilterSensitiveLog: (
1657
+ obj: DatadogConnectorProfileCredentials
1658
+ ) => any;
1659
+ export declare const DynatraceConnectorProfileCredentialsFilterSensitiveLog: (
1660
+ obj: DynatraceConnectorProfileCredentials
1661
+ ) => any;
1662
+ export declare const GoogleAnalyticsConnectorProfileCredentialsFilterSensitiveLog: (
1663
+ obj: GoogleAnalyticsConnectorProfileCredentials
1664
+ ) => any;
1665
+ export declare const HoneycodeConnectorProfileCredentialsFilterSensitiveLog: (
1666
+ obj: HoneycodeConnectorProfileCredentials
1667
+ ) => any;
1668
+ export declare const InforNexusConnectorProfileCredentialsFilterSensitiveLog: (
1669
+ obj: InforNexusConnectorProfileCredentials
1670
+ ) => any;
1671
+ export declare const MarketoConnectorProfileCredentialsFilterSensitiveLog: (
1672
+ obj: MarketoConnectorProfileCredentials
1673
+ ) => any;
1674
+ export declare const RedshiftConnectorProfileCredentialsFilterSensitiveLog: (
1675
+ obj: RedshiftConnectorProfileCredentials
1676
+ ) => any;
1677
+ export declare const SalesforceConnectorProfileCredentialsFilterSensitiveLog: (
1678
+ obj: SalesforceConnectorProfileCredentials
1679
+ ) => any;
1680
+ export declare const OAuthCredentialsFilterSensitiveLog: (
1681
+ obj: OAuthCredentials
1682
+ ) => any;
1683
+ export declare const SAPODataConnectorProfileCredentialsFilterSensitiveLog: (
1684
+ obj: SAPODataConnectorProfileCredentials
1685
+ ) => any;
1686
+ export declare const ServiceNowConnectorProfileCredentialsFilterSensitiveLog: (
1687
+ obj: ServiceNowConnectorProfileCredentials
1688
+ ) => any;
1689
+ export declare const SingularConnectorProfileCredentialsFilterSensitiveLog: (
1690
+ obj: SingularConnectorProfileCredentials
1691
+ ) => any;
1692
+ export declare const SlackConnectorProfileCredentialsFilterSensitiveLog: (
1693
+ obj: SlackConnectorProfileCredentials
1694
+ ) => any;
1695
+ export declare const SnowflakeConnectorProfileCredentialsFilterSensitiveLog: (
1696
+ obj: SnowflakeConnectorProfileCredentials
1697
+ ) => any;
1698
+ export declare const TrendmicroConnectorProfileCredentialsFilterSensitiveLog: (
1699
+ obj: TrendmicroConnectorProfileCredentials
1700
+ ) => any;
1701
+ export declare const VeevaConnectorProfileCredentialsFilterSensitiveLog: (
1702
+ obj: VeevaConnectorProfileCredentials
1703
+ ) => any;
1704
+ export declare const ZendeskConnectorProfileCredentialsFilterSensitiveLog: (
1705
+ obj: ZendeskConnectorProfileCredentials
1706
+ ) => any;
1707
+ export declare const ConnectorProfileCredentialsFilterSensitiveLog: (
1708
+ obj: ConnectorProfileCredentials
1709
+ ) => any;
1710
+ export declare const ConnectorProfileConfigFilterSensitiveLog: (
1711
+ obj: ConnectorProfileConfig
1712
+ ) => any;
1713
+ export declare const CreateConnectorProfileRequestFilterSensitiveLog: (
1714
+ obj: CreateConnectorProfileRequest
1715
+ ) => any;
1716
+ export declare const CreateConnectorProfileResponseFilterSensitiveLog: (
1717
+ obj: CreateConnectorProfileResponse
1718
+ ) => any;
1719
+ export declare const ErrorHandlingConfigFilterSensitiveLog: (
1720
+ obj: ErrorHandlingConfig
1721
+ ) => any;
1722
+ export declare const CustomConnectorDestinationPropertiesFilterSensitiveLog: (
1723
+ obj: CustomConnectorDestinationProperties
1724
+ ) => any;
1725
+ export declare const CustomerProfilesDestinationPropertiesFilterSensitiveLog: (
1726
+ obj: CustomerProfilesDestinationProperties
1727
+ ) => any;
1728
+ export declare const EventBridgeDestinationPropertiesFilterSensitiveLog: (
1729
+ obj: EventBridgeDestinationProperties
1730
+ ) => any;
1731
+ export declare const HoneycodeDestinationPropertiesFilterSensitiveLog: (
1732
+ obj: HoneycodeDestinationProperties
1733
+ ) => any;
1734
+ export declare const LookoutMetricsDestinationPropertiesFilterSensitiveLog: (
1735
+ obj: LookoutMetricsDestinationProperties
1736
+ ) => any;
1737
+ export declare const MarketoDestinationPropertiesFilterSensitiveLog: (
1738
+ obj: MarketoDestinationProperties
1739
+ ) => any;
1740
+ export declare const RedshiftDestinationPropertiesFilterSensitiveLog: (
1741
+ obj: RedshiftDestinationProperties
1742
+ ) => any;
1743
+ export declare const PrefixConfigFilterSensitiveLog: (obj: PrefixConfig) => any;
1744
+ export declare const S3OutputFormatConfigFilterSensitiveLog: (
1745
+ obj: S3OutputFormatConfig
1746
+ ) => any;
1747
+ export declare const S3DestinationPropertiesFilterSensitiveLog: (
1748
+ obj: S3DestinationProperties
1749
+ ) => any;
1750
+ export declare const SalesforceDestinationPropertiesFilterSensitiveLog: (
1751
+ obj: SalesforceDestinationProperties
1752
+ ) => any;
1753
+ export declare const SuccessResponseHandlingConfigFilterSensitiveLog: (
1754
+ obj: SuccessResponseHandlingConfig
1755
+ ) => any;
1756
+ export declare const SAPODataDestinationPropertiesFilterSensitiveLog: (
1757
+ obj: SAPODataDestinationProperties
1758
+ ) => any;
1759
+ export declare const SnowflakeDestinationPropertiesFilterSensitiveLog: (
1760
+ obj: SnowflakeDestinationProperties
1761
+ ) => any;
1762
+ export declare const UpsolverS3OutputFormatConfigFilterSensitiveLog: (
1763
+ obj: UpsolverS3OutputFormatConfig
1764
+ ) => any;
1765
+ export declare const UpsolverDestinationPropertiesFilterSensitiveLog: (
1766
+ obj: UpsolverDestinationProperties
1767
+ ) => any;
1768
+ export declare const ZendeskDestinationPropertiesFilterSensitiveLog: (
1769
+ obj: ZendeskDestinationProperties
1770
+ ) => any;
1771
+ export declare const DestinationConnectorPropertiesFilterSensitiveLog: (
1772
+ obj: DestinationConnectorProperties
1773
+ ) => any;
1774
+ export declare const DestinationFlowConfigFilterSensitiveLog: (
1775
+ obj: DestinationFlowConfig
1776
+ ) => any;
1777
+ export declare const IncrementalPullConfigFilterSensitiveLog: (
1778
+ obj: IncrementalPullConfig
1779
+ ) => any;
1780
+ export declare const CustomConnectorSourcePropertiesFilterSensitiveLog: (
1781
+ obj: CustomConnectorSourceProperties
1782
+ ) => any;
1783
+ export declare const DatadogSourcePropertiesFilterSensitiveLog: (
1784
+ obj: DatadogSourceProperties
1785
+ ) => any;
1786
+ export declare const DynatraceSourcePropertiesFilterSensitiveLog: (
1787
+ obj: DynatraceSourceProperties
1788
+ ) => any;
1789
+ export declare const GoogleAnalyticsSourcePropertiesFilterSensitiveLog: (
1790
+ obj: GoogleAnalyticsSourceProperties
1791
+ ) => any;
1792
+ export declare const InforNexusSourcePropertiesFilterSensitiveLog: (
1793
+ obj: InforNexusSourceProperties
1794
+ ) => any;
1795
+ export declare const MarketoSourcePropertiesFilterSensitiveLog: (
1796
+ obj: MarketoSourceProperties
1797
+ ) => any;
1798
+ export declare const S3InputFormatConfigFilterSensitiveLog: (
1799
+ obj: S3InputFormatConfig
1800
+ ) => any;
1801
+ export declare const S3SourcePropertiesFilterSensitiveLog: (
1802
+ obj: S3SourceProperties
1803
+ ) => any;
1804
+ export declare const SalesforceSourcePropertiesFilterSensitiveLog: (
1805
+ obj: SalesforceSourceProperties
1806
+ ) => any;
1807
+ export declare const SAPODataSourcePropertiesFilterSensitiveLog: (
1808
+ obj: SAPODataSourceProperties
1809
+ ) => any;
1810
+ export declare const ServiceNowSourcePropertiesFilterSensitiveLog: (
1811
+ obj: ServiceNowSourceProperties
1812
+ ) => any;
1813
+ export declare const SingularSourcePropertiesFilterSensitiveLog: (
1814
+ obj: SingularSourceProperties
1815
+ ) => any;
1816
+ export declare const SlackSourcePropertiesFilterSensitiveLog: (
1817
+ obj: SlackSourceProperties
1818
+ ) => any;
1819
+ export declare const TrendmicroSourcePropertiesFilterSensitiveLog: (
1820
+ obj: TrendmicroSourceProperties
1821
+ ) => any;
1822
+ export declare const VeevaSourcePropertiesFilterSensitiveLog: (
1823
+ obj: VeevaSourceProperties
1824
+ ) => any;
1825
+ export declare const ZendeskSourcePropertiesFilterSensitiveLog: (
1826
+ obj: ZendeskSourceProperties
1827
+ ) => any;
1828
+ export declare const SourceConnectorPropertiesFilterSensitiveLog: (
1829
+ obj: SourceConnectorProperties
1830
+ ) => any;
1831
+ export declare const SourceFlowConfigFilterSensitiveLog: (
1832
+ obj: SourceFlowConfig
1833
+ ) => any;
1834
+ export declare const TaskFilterSensitiveLog: (obj: Task) => any;
1835
+ export declare const ScheduledTriggerPropertiesFilterSensitiveLog: (
1836
+ obj: ScheduledTriggerProperties
1837
+ ) => any;
1838
+ export declare const TriggerPropertiesFilterSensitiveLog: (
1839
+ obj: TriggerProperties
1840
+ ) => any;
1841
+ export declare const TriggerConfigFilterSensitiveLog: (
1842
+ obj: TriggerConfig
1843
+ ) => any;
1844
+ export declare const CreateFlowRequestFilterSensitiveLog: (
1845
+ obj: CreateFlowRequest
1846
+ ) => any;
1847
+ export declare const CreateFlowResponseFilterSensitiveLog: (
1848
+ obj: CreateFlowResponse
1849
+ ) => any;
1850
+ export declare const DeleteConnectorProfileRequestFilterSensitiveLog: (
1851
+ obj: DeleteConnectorProfileRequest
1852
+ ) => any;
1853
+ export declare const DeleteConnectorProfileResponseFilterSensitiveLog: (
1854
+ obj: DeleteConnectorProfileResponse
1855
+ ) => any;
1856
+ export declare const DeleteFlowRequestFilterSensitiveLog: (
1857
+ obj: DeleteFlowRequest
1858
+ ) => any;
1859
+ export declare const DeleteFlowResponseFilterSensitiveLog: (
1860
+ obj: DeleteFlowResponse
1861
+ ) => any;
1862
+ export declare const DescribeConnectorRequestFilterSensitiveLog: (
1863
+ obj: DescribeConnectorRequest
1864
+ ) => any;
1865
+ export declare const DescribeConnectorResponseFilterSensitiveLog: (
1866
+ obj: DescribeConnectorResponse
1867
+ ) => any;
1868
+ export declare const DescribeConnectorEntityRequestFilterSensitiveLog: (
1869
+ obj: DescribeConnectorEntityRequest
1870
+ ) => any;
1871
+ export declare const DescribeConnectorEntityResponseFilterSensitiveLog: (
1872
+ obj: DescribeConnectorEntityResponse
1873
+ ) => any;
1874
+ export declare const DescribeConnectorProfilesRequestFilterSensitiveLog: (
1875
+ obj: DescribeConnectorProfilesRequest
1876
+ ) => any;
1877
+ export declare const DescribeConnectorProfilesResponseFilterSensitiveLog: (
1878
+ obj: DescribeConnectorProfilesResponse
1879
+ ) => any;
1880
+ export declare const DescribeConnectorsRequestFilterSensitiveLog: (
1881
+ obj: DescribeConnectorsRequest
1882
+ ) => any;
1883
+ export declare const DescribeConnectorsResponseFilterSensitiveLog: (
1884
+ obj: DescribeConnectorsResponse
1885
+ ) => any;
1886
+ export declare const DescribeFlowRequestFilterSensitiveLog: (
1887
+ obj: DescribeFlowRequest
1888
+ ) => any;
1889
+ export declare const ExecutionDetailsFilterSensitiveLog: (
1890
+ obj: ExecutionDetails
1891
+ ) => any;
1892
+ export declare const DescribeFlowResponseFilterSensitiveLog: (
1893
+ obj: DescribeFlowResponse
1894
+ ) => any;
1895
+ export declare const DescribeFlowExecutionRecordsRequestFilterSensitiveLog: (
1896
+ obj: DescribeFlowExecutionRecordsRequest
1897
+ ) => any;
1898
+ export declare const ErrorInfoFilterSensitiveLog: (obj: ErrorInfo) => any;
1899
+ export declare const ExecutionResultFilterSensitiveLog: (
1900
+ obj: ExecutionResult
1901
+ ) => any;
1902
+ export declare const ExecutionRecordFilterSensitiveLog: (
1903
+ obj: ExecutionRecord
1904
+ ) => any;
1905
+ export declare const DescribeFlowExecutionRecordsResponseFilterSensitiveLog: (
1906
+ obj: DescribeFlowExecutionRecordsResponse
1907
+ ) => any;
1908
+ export declare const FlowDefinitionFilterSensitiveLog: (
1909
+ obj: FlowDefinition
1910
+ ) => any;
1911
+ export declare const ListConnectorEntitiesRequestFilterSensitiveLog: (
1912
+ obj: ListConnectorEntitiesRequest
1913
+ ) => any;
1914
+ export declare const ListConnectorEntitiesResponseFilterSensitiveLog: (
1915
+ obj: ListConnectorEntitiesResponse
1916
+ ) => any;
1917
+ export declare const ListConnectorsRequestFilterSensitiveLog: (
1918
+ obj: ListConnectorsRequest
1919
+ ) => any;
1920
+ export declare const ListConnectorsResponseFilterSensitiveLog: (
1921
+ obj: ListConnectorsResponse
1922
+ ) => any;
1923
+ export declare const ListFlowsRequestFilterSensitiveLog: (
1924
+ obj: ListFlowsRequest
1925
+ ) => any;
1926
+ export declare const ListFlowsResponseFilterSensitiveLog: (
1927
+ obj: ListFlowsResponse
1928
+ ) => any;
1929
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
1930
+ obj: ListTagsForResourceRequest
1931
+ ) => any;
1932
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
1933
+ obj: ListTagsForResourceResponse
1934
+ ) => any;
1935
+ export declare const RegisterConnectorRequestFilterSensitiveLog: (
1936
+ obj: RegisterConnectorRequest
1937
+ ) => any;
1938
+ export declare const RegisterConnectorResponseFilterSensitiveLog: (
1939
+ obj: RegisterConnectorResponse
1940
+ ) => any;
1941
+ export declare const StartFlowRequestFilterSensitiveLog: (
1942
+ obj: StartFlowRequest
1943
+ ) => any;
1944
+ export declare const StartFlowResponseFilterSensitiveLog: (
1945
+ obj: StartFlowResponse
1946
+ ) => any;
1947
+ export declare const StopFlowRequestFilterSensitiveLog: (
1948
+ obj: StopFlowRequest
1949
+ ) => any;
1950
+ export declare const StopFlowResponseFilterSensitiveLog: (
1951
+ obj: StopFlowResponse
1952
+ ) => any;
1953
+ export declare const TagResourceRequestFilterSensitiveLog: (
1954
+ obj: TagResourceRequest
1955
+ ) => any;
1956
+ export declare const TagResourceResponseFilterSensitiveLog: (
1957
+ obj: TagResourceResponse
1958
+ ) => any;
1959
+ export declare const UnregisterConnectorRequestFilterSensitiveLog: (
1960
+ obj: UnregisterConnectorRequest
1961
+ ) => any;
1962
+ export declare const UnregisterConnectorResponseFilterSensitiveLog: (
1963
+ obj: UnregisterConnectorResponse
1964
+ ) => any;
1965
+ export declare const UntagResourceRequestFilterSensitiveLog: (
1966
+ obj: UntagResourceRequest
1967
+ ) => any;
1968
+ export declare const UntagResourceResponseFilterSensitiveLog: (
1969
+ obj: UntagResourceResponse
1970
+ ) => any;
1971
+ export declare const UpdateConnectorProfileRequestFilterSensitiveLog: (
1972
+ obj: UpdateConnectorProfileRequest
1973
+ ) => any;
1974
+ export declare const UpdateConnectorProfileResponseFilterSensitiveLog: (
1975
+ obj: UpdateConnectorProfileResponse
1976
+ ) => any;
1977
+ export declare const UpdateFlowRequestFilterSensitiveLog: (
1978
+ obj: UpdateFlowRequest
1979
+ ) => any;
1980
+ export declare const UpdateFlowResponseFilterSensitiveLog: (
1981
+ obj: UpdateFlowResponse
1982
+ ) => any;