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