@aws-sdk/client-appflow 3.47.2 → 3.51.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 (47) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/dist-cjs/Appflow.js +60 -0
  3. package/dist-cjs/commands/DescribeConnectorCommand.js +36 -0
  4. package/dist-cjs/commands/ListConnectorsCommand.js +36 -0
  5. package/dist-cjs/commands/RegisterConnectorCommand.js +36 -0
  6. package/dist-cjs/commands/UnregisterConnectorCommand.js +36 -0
  7. package/dist-cjs/commands/index.js +4 -0
  8. package/dist-cjs/models/models_0.js +226 -16
  9. package/dist-cjs/pagination/DescribeConnectorsPaginator.js +1 -0
  10. package/dist-cjs/pagination/ListConnectorsPaginator.js +35 -0
  11. package/dist-cjs/pagination/index.js +1 -0
  12. package/dist-cjs/protocols/Aws_restJson1.js +933 -1
  13. package/dist-es/Appflow.js +60 -0
  14. package/dist-es/commands/DescribeConnectorCommand.js +39 -0
  15. package/dist-es/commands/ListConnectorsCommand.js +39 -0
  16. package/dist-es/commands/RegisterConnectorCommand.js +39 -0
  17. package/dist-es/commands/UnregisterConnectorCommand.js +39 -0
  18. package/dist-es/commands/index.js +4 -0
  19. package/dist-es/models/models_0.js +159 -15
  20. package/dist-es/pagination/DescribeConnectorsPaginator.js +1 -0
  21. package/dist-es/pagination/ListConnectorsPaginator.js +74 -0
  22. package/dist-es/pagination/index.js +1 -0
  23. package/dist-es/protocols/Aws_restJson1.js +961 -17
  24. package/dist-types/Appflow.d.ts +38 -4
  25. package/dist-types/AppflowClient.d.ts +6 -2
  26. package/dist-types/commands/CreateConnectorProfileCommand.d.ts +4 -4
  27. package/dist-types/commands/DescribeConnectorCommand.d.ts +37 -0
  28. package/dist-types/commands/ListConnectorsCommand.d.ts +37 -0
  29. package/dist-types/commands/RegisterConnectorCommand.d.ts +36 -0
  30. package/dist-types/commands/UnregisterConnectorCommand.d.ts +36 -0
  31. package/dist-types/commands/index.d.ts +4 -0
  32. package/dist-types/models/models_0.d.ts +887 -42
  33. package/dist-types/pagination/ListConnectorsPaginator.d.ts +4 -0
  34. package/dist-types/pagination/index.d.ts +1 -0
  35. package/dist-types/protocols/Aws_restJson1.d.ts +12 -0
  36. package/dist-types/ts3.4/Appflow.d.ts +20 -0
  37. package/dist-types/ts3.4/AppflowClient.d.ts +6 -2
  38. package/dist-types/ts3.4/commands/DescribeConnectorCommand.d.ts +17 -0
  39. package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +17 -0
  40. package/dist-types/ts3.4/commands/RegisterConnectorCommand.d.ts +17 -0
  41. package/dist-types/ts3.4/commands/UnregisterConnectorCommand.d.ts +17 -0
  42. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  43. package/dist-types/ts3.4/models/models_0.d.ts +491 -16
  44. package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +4 -0
  45. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  46. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  47. package/package.json +39 -33
@@ -1,4 +1,10 @@
1
1
  import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
2
+
3
+ export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
4
+ name: "AccessDeniedException";
5
+ $fault: "client";
6
+ message?: string;
7
+ }
2
8
  export declare enum AggregationType {
3
9
  NONE = "None",
4
10
  SINGLE_FILE = "SingleFile"
@@ -50,6 +56,91 @@ export declare namespace AmplitudeSourceProperties {
50
56
  const filterSensitiveLog: (obj: AmplitudeSourceProperties) => any;
51
57
  }
52
58
 
59
+ export interface ApiKeyCredentials {
60
+
61
+ apiKey: string | undefined;
62
+
63
+ apiSecretKey?: string;
64
+ }
65
+ export declare namespace ApiKeyCredentials {
66
+
67
+ const filterSensitiveLog: (obj: ApiKeyCredentials) => any;
68
+ }
69
+
70
+ export interface AuthParameter {
71
+
72
+ key?: string;
73
+
74
+ isRequired?: boolean;
75
+
76
+ label?: string;
77
+
78
+ description?: string;
79
+
80
+ isSensitiveField?: boolean;
81
+
82
+ connectorSuppliedValues?: string[];
83
+ }
84
+ export declare namespace AuthParameter {
85
+
86
+ const filterSensitiveLog: (obj: AuthParameter) => any;
87
+ }
88
+
89
+ export interface CustomAuthConfig {
90
+
91
+ customAuthenticationType?: string;
92
+
93
+ authParameters?: AuthParameter[];
94
+ }
95
+ export declare namespace CustomAuthConfig {
96
+
97
+ const filterSensitiveLog: (obj: CustomAuthConfig) => any;
98
+ }
99
+ export declare enum OAuth2GrantType {
100
+ AUTHORIZATION_CODE = "AUTHORIZATION_CODE",
101
+ CLIENT_CREDENTIALS = "CLIENT_CREDENTIALS"
102
+ }
103
+
104
+ export interface OAuth2Defaults {
105
+
106
+ oauthScopes?: string[];
107
+
108
+ tokenUrls?: string[];
109
+
110
+ authCodeUrls?: string[];
111
+
112
+ oauth2GrantTypesSupported?: (OAuth2GrantType | string)[];
113
+ }
114
+ export declare namespace OAuth2Defaults {
115
+
116
+ const filterSensitiveLog: (obj: OAuth2Defaults) => any;
117
+ }
118
+
119
+ export interface AuthenticationConfig {
120
+
121
+ isBasicAuthSupported?: boolean;
122
+
123
+ isApiKeyAuthSupported?: boolean;
124
+
125
+ isOAuth2Supported?: boolean;
126
+
127
+ isCustomAuthSupported?: boolean;
128
+
129
+ oAuth2Defaults?: OAuth2Defaults;
130
+
131
+ customAuthConfigs?: CustomAuthConfig[];
132
+ }
133
+ export declare namespace AuthenticationConfig {
134
+
135
+ const filterSensitiveLog: (obj: AuthenticationConfig) => any;
136
+ }
137
+ export declare enum AuthenticationType {
138
+ APIKEY = "APIKEY",
139
+ BASIC = "BASIC",
140
+ CUSTOM = "CUSTOM",
141
+ OAUTH2 = "OAUTH2"
142
+ }
143
+
53
144
  export interface BasicAuthCredentials {
54
145
 
55
146
  username: string | undefined;
@@ -277,8 +368,51 @@ export declare namespace ConnectorMetadata {
277
368
 
278
369
  const filterSensitiveLog: (obj: ConnectorMetadata) => any;
279
370
  }
371
+
372
+ export interface LambdaConnectorProvisioningConfig {
373
+
374
+ lambdaArn: string | undefined;
375
+ }
376
+ export declare namespace LambdaConnectorProvisioningConfig {
377
+
378
+ const filterSensitiveLog: (obj: LambdaConnectorProvisioningConfig) => any;
379
+ }
380
+
381
+ export interface ConnectorProvisioningConfig {
382
+
383
+ lambda?: LambdaConnectorProvisioningConfig;
384
+ }
385
+ export declare namespace ConnectorProvisioningConfig {
386
+
387
+ const filterSensitiveLog: (obj: ConnectorProvisioningConfig) => any;
388
+ }
389
+ export declare enum ConnectorProvisioningType {
390
+ LAMBDA = "LAMBDA"
391
+ }
392
+
393
+ export interface ConnectorRuntimeSetting {
394
+
395
+ key?: string;
396
+
397
+ dataType?: string;
398
+
399
+ isRequired?: boolean;
400
+
401
+ label?: string;
402
+
403
+ description?: string;
404
+
405
+ scope?: string;
406
+
407
+ connectorSuppliedValueOptions?: string[];
408
+ }
409
+ export declare namespace ConnectorRuntimeSetting {
410
+
411
+ const filterSensitiveLog: (obj: ConnectorRuntimeSetting) => any;
412
+ }
280
413
  export declare enum ConnectorType {
281
414
  AMPLITUDE = "Amplitude",
415
+ CUSTOMCONNECTOR = "CustomConnector",
282
416
  CUSTOMERPROFILES = "CustomerProfiles",
283
417
  DATADOG = "Datadog",
284
418
  DYNATRACE = "Dynatrace",
@@ -301,6 +435,29 @@ export declare enum ConnectorType {
301
435
  VEEVA = "Veeva",
302
436
  ZENDESK = "Zendesk"
303
437
  }
438
+ export declare enum Operators {
439
+ ADDITION = "ADDITION",
440
+ BETWEEN = "BETWEEN",
441
+ CONTAINS = "CONTAINS",
442
+ DIVISION = "DIVISION",
443
+ EQUAL_TO = "EQUAL_TO",
444
+ GREATER_THAN = "GREATER_THAN",
445
+ GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
446
+ LESS_THAN = "LESS_THAN",
447
+ LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
448
+ MASK_ALL = "MASK_ALL",
449
+ MASK_FIRST_N = "MASK_FIRST_N",
450
+ MASK_LAST_N = "MASK_LAST_N",
451
+ MULTIPLICATION = "MULTIPLICATION",
452
+ NOT_EQUAL_TO = "NOT_EQUAL_TO",
453
+ NO_OP = "NO_OP",
454
+ PROJECTION = "PROJECTION",
455
+ SUBTRACTION = "SUBTRACTION",
456
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
457
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
458
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
459
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC"
460
+ }
304
461
  export declare enum ScheduleFrequencyType {
305
462
  BYMINUTE = "BYMINUTE",
306
463
  DAILY = "DAILY",
@@ -314,6 +471,12 @@ export declare enum TriggerType {
314
471
  ONDEMAND = "OnDemand",
315
472
  SCHEDULED = "Scheduled"
316
473
  }
474
+ export declare enum WriteOperationType {
475
+ DELETE = "DELETE",
476
+ INSERT = "INSERT",
477
+ UPDATE = "UPDATE",
478
+ UPSERT = "UPSERT"
479
+ }
317
480
 
318
481
  export interface ConnectorConfiguration {
319
482
 
@@ -332,12 +495,77 @@ export interface ConnectorConfiguration {
332
495
  supportedTriggerTypes?: (TriggerType | string)[];
333
496
 
334
497
  connectorMetadata?: ConnectorMetadata;
498
+
499
+ connectorType?: ConnectorType | string;
500
+
501
+ connectorLabel?: string;
502
+
503
+ connectorDescription?: string;
504
+
505
+ connectorOwner?: string;
506
+
507
+ connectorName?: string;
508
+
509
+ connectorVersion?: string;
510
+
511
+ connectorArn?: string;
512
+
513
+ connectorModes?: string[];
514
+
515
+ authenticationConfig?: AuthenticationConfig;
516
+
517
+ connectorRuntimeSettings?: ConnectorRuntimeSetting[];
518
+
519
+ supportedApiVersions?: string[];
520
+
521
+ supportedOperators?: (Operators | string)[];
522
+
523
+ supportedWriteOperations?: (WriteOperationType | string)[];
524
+
525
+ connectorProvisioningType?: ConnectorProvisioningType | string;
526
+
527
+ connectorProvisioningConfig?: ConnectorProvisioningConfig;
528
+
529
+ logoURL?: string;
530
+
531
+ registeredAt?: Date;
532
+
533
+ registeredBy?: string;
335
534
  }
336
535
  export declare namespace ConnectorConfiguration {
337
536
 
338
537
  const filterSensitiveLog: (obj: ConnectorConfiguration) => any;
339
538
  }
340
539
 
540
+ export interface ConnectorDetail {
541
+
542
+ connectorDescription?: string;
543
+
544
+ connectorName?: string;
545
+
546
+ connectorOwner?: string;
547
+
548
+ connectorVersion?: string;
549
+
550
+ applicationType?: string;
551
+
552
+ connectorType?: ConnectorType | string;
553
+
554
+ connectorLabel?: string;
555
+
556
+ registeredAt?: Date;
557
+
558
+ registeredBy?: string;
559
+
560
+ connectorProvisioningType?: ConnectorProvisioningType | string;
561
+
562
+ connectorModes?: string[];
563
+ }
564
+ export declare namespace ConnectorDetail {
565
+
566
+ const filterSensitiveLog: (obj: ConnectorDetail) => any;
567
+ }
568
+
341
569
  export interface ConnectorEntity {
342
570
 
343
571
  name: string | undefined;
@@ -350,11 +578,6 @@ export declare namespace ConnectorEntity {
350
578
 
351
579
  const filterSensitiveLog: (obj: ConnectorEntity) => any;
352
580
  }
353
- export declare enum WriteOperationType {
354
- INSERT = "INSERT",
355
- UPDATE = "UPDATE",
356
- UPSERT = "UPSERT"
357
- }
358
581
 
359
582
  export interface DestinationFieldProperties {
360
583
 
@@ -366,6 +589,8 @@ export interface DestinationFieldProperties {
366
589
 
367
590
  isUpdatable?: boolean;
368
591
 
592
+ isDefaultedOnCreate?: boolean;
593
+
369
594
  supportedWriteOperations?: (WriteOperationType | string)[];
370
595
  }
371
596
  export declare namespace DestinationFieldProperties {
@@ -378,11 +603,24 @@ export interface SourceFieldProperties {
378
603
  isRetrievable?: boolean;
379
604
 
380
605
  isQueryable?: boolean;
606
+
607
+ isTimestampFieldForIncrementalQueries?: boolean;
381
608
  }
382
609
  export declare namespace SourceFieldProperties {
383
610
 
384
611
  const filterSensitiveLog: (obj: SourceFieldProperties) => any;
385
612
  }
613
+
614
+ export interface Range {
615
+
616
+ maximum?: number;
617
+
618
+ minimum?: number;
619
+ }
620
+ export declare namespace Range {
621
+
622
+ const filterSensitiveLog: (obj: Range) => any;
623
+ }
386
624
  export declare enum Operator {
387
625
  ADDITION = "ADDITION",
388
626
  BETWEEN = "BETWEEN",
@@ -414,6 +652,14 @@ export interface FieldTypeDetails {
414
652
  filterOperators: (Operator | string)[] | undefined;
415
653
 
416
654
  supportedValues?: string[];
655
+
656
+ valueRegexPattern?: string;
657
+
658
+ supportedDateFormat?: string;
659
+
660
+ fieldValueRange?: Range;
661
+
662
+ fieldLengthRange?: Range;
417
663
  }
418
664
  export declare namespace FieldTypeDetails {
419
665
 
@@ -433,8 +679,16 @@ export interface ConnectorEntityField {
433
679
 
434
680
  identifier: string | undefined;
435
681
 
682
+ parentIdentifier?: string;
683
+
436
684
  label?: string;
437
685
 
686
+ isPrimaryKey?: boolean;
687
+
688
+ defaultValue?: string;
689
+
690
+ isDeprecated?: boolean;
691
+
438
692
  supportedFieldTypeDetails?: SupportedFieldTypeDetails;
439
693
 
440
694
  description?: string;
@@ -442,6 +696,10 @@ export interface ConnectorEntityField {
442
696
  sourceProperties?: SourceFieldProperties;
443
697
 
444
698
  destinationProperties?: DestinationFieldProperties;
699
+
700
+ customProperties?: {
701
+ [key: string]: string;
702
+ };
445
703
  }
446
704
  export declare namespace ConnectorEntityField {
447
705
 
@@ -746,12 +1004,38 @@ export interface ConnectorOperator {
746
1004
  Zendesk?: ZendeskConnectorOperator | string;
747
1005
 
748
1006
  SAPOData?: SAPODataConnectorOperator | string;
1007
+
1008
+ CustomConnector?: Operator | string;
749
1009
  }
750
1010
  export declare namespace ConnectorOperator {
751
1011
 
752
1012
  const filterSensitiveLog: (obj: ConnectorOperator) => any;
753
1013
  }
754
1014
 
1015
+ export interface OAuth2Properties {
1016
+
1017
+ tokenUrl: string | undefined;
1018
+
1019
+ oAuth2GrantType: OAuth2GrantType | string | undefined;
1020
+ }
1021
+ export declare namespace OAuth2Properties {
1022
+
1023
+ const filterSensitiveLog: (obj: OAuth2Properties) => any;
1024
+ }
1025
+
1026
+ export interface CustomConnectorProfileProperties {
1027
+
1028
+ profileProperties?: {
1029
+ [key: string]: string;
1030
+ };
1031
+
1032
+ oAuth2Properties?: OAuth2Properties;
1033
+ }
1034
+ export declare namespace CustomConnectorProfileProperties {
1035
+
1036
+ const filterSensitiveLog: (obj: CustomConnectorProfileProperties) => any;
1037
+ }
1038
+
755
1039
  export interface DatadogConnectorProfileProperties {
756
1040
 
757
1041
  instanceUrl: string | undefined;
@@ -968,6 +1252,8 @@ export interface ConnectorProfileProperties {
968
1252
  Zendesk?: ZendeskConnectorProfileProperties;
969
1253
 
970
1254
  SAPOData?: SAPODataConnectorProfileProperties;
1255
+
1256
+ CustomConnector?: CustomConnectorProfileProperties;
971
1257
  }
972
1258
  export declare namespace ConnectorProfileProperties {
973
1259
 
@@ -1007,6 +1293,8 @@ export interface ConnectorProfile {
1007
1293
 
1008
1294
  connectorType?: ConnectorType | string;
1009
1295
 
1296
+ connectorLabel?: string;
1297
+
1010
1298
  connectionMode?: ConnectionMode | string;
1011
1299
 
1012
1300
  credentialsArn?: string;
@@ -1024,6 +1312,53 @@ export declare namespace ConnectorProfile {
1024
1312
  const filterSensitiveLog: (obj: ConnectorProfile) => any;
1025
1313
  }
1026
1314
 
1315
+ export interface CustomAuthCredentials {
1316
+
1317
+ customAuthenticationType: string | undefined;
1318
+
1319
+ credentialsMap?: {
1320
+ [key: string]: string;
1321
+ };
1322
+ }
1323
+ export declare namespace CustomAuthCredentials {
1324
+
1325
+ const filterSensitiveLog: (obj: CustomAuthCredentials) => any;
1326
+ }
1327
+
1328
+ export interface OAuth2Credentials {
1329
+
1330
+ clientId?: string;
1331
+
1332
+ clientSecret?: string;
1333
+
1334
+ accessToken?: string;
1335
+
1336
+ refreshToken?: string;
1337
+
1338
+ oAuthRequest?: ConnectorOAuthRequest;
1339
+ }
1340
+ export declare namespace OAuth2Credentials {
1341
+
1342
+ const filterSensitiveLog: (obj: OAuth2Credentials) => any;
1343
+ }
1344
+
1345
+ export interface CustomConnectorProfileCredentials {
1346
+
1347
+ authenticationType: AuthenticationType | string | undefined;
1348
+
1349
+ basic?: BasicAuthCredentials;
1350
+
1351
+ oauth2?: OAuth2Credentials;
1352
+
1353
+ apiKey?: ApiKeyCredentials;
1354
+
1355
+ custom?: CustomAuthCredentials;
1356
+ }
1357
+ export declare namespace CustomConnectorProfileCredentials {
1358
+
1359
+ const filterSensitiveLog: (obj: CustomConnectorProfileCredentials) => any;
1360
+ }
1361
+
1027
1362
  export interface DatadogConnectorProfileCredentials {
1028
1363
 
1029
1364
  apiKey: string | undefined;
@@ -1274,6 +1609,8 @@ export interface ConnectorProfileCredentials {
1274
1609
  Zendesk?: ZendeskConnectorProfileCredentials;
1275
1610
 
1276
1611
  SAPOData?: SAPODataConnectorProfileCredentials;
1612
+
1613
+ CustomConnector?: CustomConnectorProfileCredentials;
1277
1614
  }
1278
1615
  export declare namespace ConnectorProfileCredentials {
1279
1616
 
@@ -1304,6 +1641,8 @@ export interface CreateConnectorProfileRequest {
1304
1641
 
1305
1642
  connectorType: ConnectorType | string | undefined;
1306
1643
 
1644
+ connectorLabel?: string;
1645
+
1307
1646
  connectionMode: ConnectionMode | string | undefined;
1308
1647
 
1309
1648
  connectorProfileConfig: ConnectorProfileConfig | undefined;
@@ -1339,17 +1678,6 @@ export interface ValidationException extends __SmithyException, $MetadataBearer
1339
1678
  message?: string;
1340
1679
  }
1341
1680
 
1342
- export interface CustomerProfilesDestinationProperties {
1343
-
1344
- domainName: string | undefined;
1345
-
1346
- objectTypeName?: string;
1347
- }
1348
- export declare namespace CustomerProfilesDestinationProperties {
1349
-
1350
- const filterSensitiveLog: (obj: CustomerProfilesDestinationProperties) => any;
1351
- }
1352
-
1353
1681
  export interface ErrorHandlingConfig {
1354
1682
 
1355
1683
  failOnFirstDestinationError?: boolean;
@@ -1363,6 +1691,36 @@ export declare namespace ErrorHandlingConfig {
1363
1691
  const filterSensitiveLog: (obj: ErrorHandlingConfig) => any;
1364
1692
  }
1365
1693
 
1694
+ export interface CustomConnectorDestinationProperties {
1695
+
1696
+ entityName: string | undefined;
1697
+
1698
+ errorHandlingConfig?: ErrorHandlingConfig;
1699
+
1700
+ writeOperationType?: WriteOperationType | string;
1701
+
1702
+ idFieldNames?: string[];
1703
+
1704
+ customProperties?: {
1705
+ [key: string]: string;
1706
+ };
1707
+ }
1708
+ export declare namespace CustomConnectorDestinationProperties {
1709
+
1710
+ const filterSensitiveLog: (obj: CustomConnectorDestinationProperties) => any;
1711
+ }
1712
+
1713
+ export interface CustomerProfilesDestinationProperties {
1714
+
1715
+ domainName: string | undefined;
1716
+
1717
+ objectTypeName?: string;
1718
+ }
1719
+ export declare namespace CustomerProfilesDestinationProperties {
1720
+
1721
+ const filterSensitiveLog: (obj: CustomerProfilesDestinationProperties) => any;
1722
+ }
1723
+
1366
1724
  export interface EventBridgeDestinationProperties {
1367
1725
 
1368
1726
  object: string | undefined;
@@ -1553,6 +1911,8 @@ export interface DestinationConnectorProperties {
1553
1911
  CustomerProfiles?: CustomerProfilesDestinationProperties;
1554
1912
 
1555
1913
  Zendesk?: ZendeskDestinationProperties;
1914
+
1915
+ CustomConnector?: CustomConnectorDestinationProperties;
1556
1916
  }
1557
1917
  export declare namespace DestinationConnectorProperties {
1558
1918
 
@@ -1563,6 +1923,8 @@ export interface DestinationFlowConfig {
1563
1923
 
1564
1924
  connectorType: ConnectorType | string | undefined;
1565
1925
 
1926
+ apiVersion?: string;
1927
+
1566
1928
  connectorProfileName?: string;
1567
1929
 
1568
1930
  destinationConnectorProperties: DestinationConnectorProperties | undefined;
@@ -1581,6 +1943,19 @@ export declare namespace IncrementalPullConfig {
1581
1943
  const filterSensitiveLog: (obj: IncrementalPullConfig) => any;
1582
1944
  }
1583
1945
 
1946
+ export interface CustomConnectorSourceProperties {
1947
+
1948
+ entityName: string | undefined;
1949
+
1950
+ customProperties?: {
1951
+ [key: string]: string;
1952
+ };
1953
+ }
1954
+ export declare namespace CustomConnectorSourceProperties {
1955
+
1956
+ const filterSensitiveLog: (obj: CustomConnectorSourceProperties) => any;
1957
+ }
1958
+
1584
1959
  export interface DatadogSourceProperties {
1585
1960
 
1586
1961
  object: string | undefined;
@@ -1767,6 +2142,8 @@ export interface SourceConnectorProperties {
1767
2142
  Zendesk?: ZendeskSourceProperties;
1768
2143
 
1769
2144
  SAPOData?: SAPODataSourceProperties;
2145
+
2146
+ CustomConnector?: CustomConnectorSourceProperties;
1770
2147
  }
1771
2148
  export declare namespace SourceConnectorProperties {
1772
2149
 
@@ -1777,6 +2154,8 @@ export interface SourceFlowConfig {
1777
2154
 
1778
2155
  connectorType: ConnectorType | string | undefined;
1779
2156
 
2157
+ apiVersion?: string;
2158
+
1780
2159
  connectorProfileName?: string;
1781
2160
 
1782
2161
  sourceConnectorProperties: SourceConnectorProperties | undefined;
@@ -1958,6 +2337,24 @@ export declare namespace DeleteFlowResponse {
1958
2337
 
1959
2338
  const filterSensitiveLog: (obj: DeleteFlowResponse) => any;
1960
2339
  }
2340
+ export interface DescribeConnectorRequest {
2341
+
2342
+ connectorType: ConnectorType | string | undefined;
2343
+
2344
+ connectorLabel?: string;
2345
+ }
2346
+ export declare namespace DescribeConnectorRequest {
2347
+
2348
+ const filterSensitiveLog: (obj: DescribeConnectorRequest) => any;
2349
+ }
2350
+ export interface DescribeConnectorResponse {
2351
+
2352
+ connectorConfiguration?: ConnectorConfiguration;
2353
+ }
2354
+ export declare namespace DescribeConnectorResponse {
2355
+
2356
+ const filterSensitiveLog: (obj: DescribeConnectorResponse) => any;
2357
+ }
1961
2358
  export interface DescribeConnectorEntityRequest {
1962
2359
 
1963
2360
  connectorEntityName: string | undefined;
@@ -1965,6 +2362,8 @@ export interface DescribeConnectorEntityRequest {
1965
2362
  connectorType?: ConnectorType | string;
1966
2363
 
1967
2364
  connectorProfileName?: string;
2365
+
2366
+ apiVersion?: string;
1968
2367
  }
1969
2368
  export declare namespace DescribeConnectorEntityRequest {
1970
2369
 
@@ -1984,6 +2383,8 @@ export interface DescribeConnectorProfilesRequest {
1984
2383
 
1985
2384
  connectorType?: ConnectorType | string;
1986
2385
 
2386
+ connectorLabel?: string;
2387
+
1987
2388
  maxResults?: number;
1988
2389
 
1989
2390
  nextToken?: string;
@@ -2006,6 +2407,8 @@ export interface DescribeConnectorsRequest {
2006
2407
 
2007
2408
  connectorTypes?: (ConnectorType | string)[];
2008
2409
 
2410
+ maxResults?: number;
2411
+
2009
2412
  nextToken?: string;
2010
2413
  }
2011
2414
  export declare namespace DescribeConnectorsRequest {
@@ -2018,6 +2421,8 @@ export interface DescribeConnectorsResponse {
2018
2421
  [key: string]: ConnectorConfiguration;
2019
2422
  };
2020
2423
 
2424
+ connectors?: ConnectorDetail[];
2425
+
2021
2426
  nextToken?: string;
2022
2427
  }
2023
2428
  export declare namespace DescribeConnectorsResponse {
@@ -2172,8 +2577,12 @@ export interface FlowDefinition {
2172
2577
 
2173
2578
  sourceConnectorType?: ConnectorType | string;
2174
2579
 
2580
+ sourceConnectorLabel?: string;
2581
+
2175
2582
  destinationConnectorType?: ConnectorType | string;
2176
2583
 
2584
+ destinationConnectorLabel?: string;
2585
+
2177
2586
  triggerType?: TriggerType | string;
2178
2587
 
2179
2588
  createdAt?: Date;
@@ -2201,6 +2610,8 @@ export interface ListConnectorEntitiesRequest {
2201
2610
  connectorType?: ConnectorType | string;
2202
2611
 
2203
2612
  entitiesPath?: string;
2613
+
2614
+ apiVersion?: string;
2204
2615
  }
2205
2616
  export declare namespace ListConnectorEntitiesRequest {
2206
2617
 
@@ -2216,6 +2627,26 @@ export declare namespace ListConnectorEntitiesResponse {
2216
2627
 
2217
2628
  const filterSensitiveLog: (obj: ListConnectorEntitiesResponse) => any;
2218
2629
  }
2630
+ export interface ListConnectorsRequest {
2631
+
2632
+ maxResults?: number;
2633
+
2634
+ nextToken?: string;
2635
+ }
2636
+ export declare namespace ListConnectorsRequest {
2637
+
2638
+ const filterSensitiveLog: (obj: ListConnectorsRequest) => any;
2639
+ }
2640
+ export interface ListConnectorsResponse {
2641
+
2642
+ connectors?: ConnectorDetail[];
2643
+
2644
+ nextToken?: string;
2645
+ }
2646
+ export declare namespace ListConnectorsResponse {
2647
+
2648
+ const filterSensitiveLog: (obj: ListConnectorsResponse) => any;
2649
+ }
2219
2650
  export interface ListFlowsRequest {
2220
2651
 
2221
2652
  maxResults?: number;
@@ -2254,6 +2685,34 @@ export declare namespace ListTagsForResourceResponse {
2254
2685
 
2255
2686
  const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
2256
2687
  }
2688
+ export interface RegisterConnectorRequest {
2689
+
2690
+ connectorLabel?: string;
2691
+
2692
+ description?: string;
2693
+
2694
+ connectorProvisioningType?: ConnectorProvisioningType | string;
2695
+
2696
+ connectorProvisioningConfig?: ConnectorProvisioningConfig;
2697
+ }
2698
+ export declare namespace RegisterConnectorRequest {
2699
+
2700
+ const filterSensitiveLog: (obj: RegisterConnectorRequest) => any;
2701
+ }
2702
+ export interface RegisterConnectorResponse {
2703
+
2704
+ connectorArn?: string;
2705
+ }
2706
+ export declare namespace RegisterConnectorResponse {
2707
+
2708
+ const filterSensitiveLog: (obj: RegisterConnectorResponse) => any;
2709
+ }
2710
+
2711
+ export interface ThrottlingException extends __SmithyException, $MetadataBearer {
2712
+ name: "ThrottlingException";
2713
+ $fault: "client";
2714
+ message?: string;
2715
+ }
2257
2716
  export interface StartFlowRequest {
2258
2717
 
2259
2718
  flowName: string | undefined;
@@ -2316,6 +2775,22 @@ export declare namespace TagResourceResponse {
2316
2775
 
2317
2776
  const filterSensitiveLog: (obj: TagResourceResponse) => any;
2318
2777
  }
2778
+ export interface UnregisterConnectorRequest {
2779
+
2780
+ connectorLabel: string | undefined;
2781
+
2782
+ forceDelete?: boolean;
2783
+ }
2784
+ export declare namespace UnregisterConnectorRequest {
2785
+
2786
+ const filterSensitiveLog: (obj: UnregisterConnectorRequest) => any;
2787
+ }
2788
+ export interface UnregisterConnectorResponse {
2789
+ }
2790
+ export declare namespace UnregisterConnectorResponse {
2791
+
2792
+ const filterSensitiveLog: (obj: UnregisterConnectorResponse) => any;
2793
+ }
2319
2794
  export interface UntagResourceRequest {
2320
2795
 
2321
2796
  resourceArn: string | undefined;