@aws-sdk/client-appflow 3.48.0 → 3.52.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.
- package/CHANGELOG.md +38 -0
- package/dist-cjs/Appflow.js +60 -0
- package/dist-cjs/commands/DescribeConnectorCommand.js +36 -0
- package/dist-cjs/commands/ListConnectorsCommand.js +36 -0
- package/dist-cjs/commands/RegisterConnectorCommand.js +36 -0
- package/dist-cjs/commands/UnregisterConnectorCommand.js +36 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +239 -16
- package/dist-cjs/pagination/DescribeConnectorsPaginator.js +1 -0
- package/dist-cjs/pagination/ListConnectorsPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +986 -1
- package/dist-es/Appflow.js +60 -0
- package/dist-es/commands/DescribeConnectorCommand.js +39 -0
- package/dist-es/commands/ListConnectorsCommand.js +39 -0
- package/dist-es/commands/RegisterConnectorCommand.js +39 -0
- package/dist-es/commands/UnregisterConnectorCommand.js +39 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +168 -15
- package/dist-es/pagination/DescribeConnectorsPaginator.js +1 -0
- package/dist-es/pagination/ListConnectorsPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +1032 -45
- package/dist-types/Appflow.d.ts +38 -4
- package/dist-types/AppflowClient.d.ts +6 -2
- package/dist-types/commands/CreateConnectorProfileCommand.d.ts +4 -4
- package/dist-types/commands/DescribeConnectorCommand.d.ts +37 -0
- package/dist-types/commands/ListConnectorsCommand.d.ts +37 -0
- package/dist-types/commands/RegisterConnectorCommand.d.ts +36 -0
- package/dist-types/commands/UnregisterConnectorCommand.d.ts +36 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +965 -52
- package/dist-types/pagination/ListConnectorsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +12 -0
- package/dist-types/ts3.4/Appflow.d.ts +20 -0
- package/dist-types/ts3.4/AppflowClient.d.ts +6 -2
- package/dist-types/ts3.4/commands/DescribeConnectorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RegisterConnectorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UnregisterConnectorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +522 -16
- package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +40 -34
|
@@ -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;
|
|
@@ -1476,6 +1834,34 @@ export declare namespace SalesforceDestinationProperties {
|
|
|
1476
1834
|
const filterSensitiveLog: (obj: SalesforceDestinationProperties) => any;
|
|
1477
1835
|
}
|
|
1478
1836
|
|
|
1837
|
+
export interface SuccessResponseHandlingConfig {
|
|
1838
|
+
|
|
1839
|
+
bucketPrefix?: string;
|
|
1840
|
+
|
|
1841
|
+
bucketName?: string;
|
|
1842
|
+
}
|
|
1843
|
+
export declare namespace SuccessResponseHandlingConfig {
|
|
1844
|
+
|
|
1845
|
+
const filterSensitiveLog: (obj: SuccessResponseHandlingConfig) => any;
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1848
|
+
export interface SAPODataDestinationProperties {
|
|
1849
|
+
|
|
1850
|
+
objectPath: string | undefined;
|
|
1851
|
+
|
|
1852
|
+
successResponseHandlingConfig?: SuccessResponseHandlingConfig;
|
|
1853
|
+
|
|
1854
|
+
idFieldNames?: string[];
|
|
1855
|
+
|
|
1856
|
+
errorHandlingConfig?: ErrorHandlingConfig;
|
|
1857
|
+
|
|
1858
|
+
writeOperationType?: WriteOperationType | string;
|
|
1859
|
+
}
|
|
1860
|
+
export declare namespace SAPODataDestinationProperties {
|
|
1861
|
+
|
|
1862
|
+
const filterSensitiveLog: (obj: SAPODataDestinationProperties) => any;
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1479
1865
|
export interface SnowflakeDestinationProperties {
|
|
1480
1866
|
|
|
1481
1867
|
object: string | undefined;
|
|
@@ -1553,6 +1939,10 @@ export interface DestinationConnectorProperties {
|
|
|
1553
1939
|
CustomerProfiles?: CustomerProfilesDestinationProperties;
|
|
1554
1940
|
|
|
1555
1941
|
Zendesk?: ZendeskDestinationProperties;
|
|
1942
|
+
|
|
1943
|
+
CustomConnector?: CustomConnectorDestinationProperties;
|
|
1944
|
+
|
|
1945
|
+
SAPOData?: SAPODataDestinationProperties;
|
|
1556
1946
|
}
|
|
1557
1947
|
export declare namespace DestinationConnectorProperties {
|
|
1558
1948
|
|
|
@@ -1563,6 +1953,8 @@ export interface DestinationFlowConfig {
|
|
|
1563
1953
|
|
|
1564
1954
|
connectorType: ConnectorType | string | undefined;
|
|
1565
1955
|
|
|
1956
|
+
apiVersion?: string;
|
|
1957
|
+
|
|
1566
1958
|
connectorProfileName?: string;
|
|
1567
1959
|
|
|
1568
1960
|
destinationConnectorProperties: DestinationConnectorProperties | undefined;
|
|
@@ -1581,6 +1973,19 @@ export declare namespace IncrementalPullConfig {
|
|
|
1581
1973
|
const filterSensitiveLog: (obj: IncrementalPullConfig) => any;
|
|
1582
1974
|
}
|
|
1583
1975
|
|
|
1976
|
+
export interface CustomConnectorSourceProperties {
|
|
1977
|
+
|
|
1978
|
+
entityName: string | undefined;
|
|
1979
|
+
|
|
1980
|
+
customProperties?: {
|
|
1981
|
+
[key: string]: string;
|
|
1982
|
+
};
|
|
1983
|
+
}
|
|
1984
|
+
export declare namespace CustomConnectorSourceProperties {
|
|
1985
|
+
|
|
1986
|
+
const filterSensitiveLog: (obj: CustomConnectorSourceProperties) => any;
|
|
1987
|
+
}
|
|
1988
|
+
|
|
1584
1989
|
export interface DatadogSourceProperties {
|
|
1585
1990
|
|
|
1586
1991
|
object: string | undefined;
|
|
@@ -1767,6 +2172,8 @@ export interface SourceConnectorProperties {
|
|
|
1767
2172
|
Zendesk?: ZendeskSourceProperties;
|
|
1768
2173
|
|
|
1769
2174
|
SAPOData?: SAPODataSourceProperties;
|
|
2175
|
+
|
|
2176
|
+
CustomConnector?: CustomConnectorSourceProperties;
|
|
1770
2177
|
}
|
|
1771
2178
|
export declare namespace SourceConnectorProperties {
|
|
1772
2179
|
|
|
@@ -1777,6 +2184,8 @@ export interface SourceFlowConfig {
|
|
|
1777
2184
|
|
|
1778
2185
|
connectorType: ConnectorType | string | undefined;
|
|
1779
2186
|
|
|
2187
|
+
apiVersion?: string;
|
|
2188
|
+
|
|
1780
2189
|
connectorProfileName?: string;
|
|
1781
2190
|
|
|
1782
2191
|
sourceConnectorProperties: SourceConnectorProperties | undefined;
|
|
@@ -1811,6 +2220,7 @@ export declare enum TaskType {
|
|
|
1811
2220
|
MAP_ALL = "Map_all",
|
|
1812
2221
|
MASK = "Mask",
|
|
1813
2222
|
MERGE = "Merge",
|
|
2223
|
+
PASSTHROUGH = "Passthrough",
|
|
1814
2224
|
TRUNCATE = "Truncate",
|
|
1815
2225
|
VALIDATE = "Validate"
|
|
1816
2226
|
}
|
|
@@ -1958,6 +2368,24 @@ export declare namespace DeleteFlowResponse {
|
|
|
1958
2368
|
|
|
1959
2369
|
const filterSensitiveLog: (obj: DeleteFlowResponse) => any;
|
|
1960
2370
|
}
|
|
2371
|
+
export interface DescribeConnectorRequest {
|
|
2372
|
+
|
|
2373
|
+
connectorType: ConnectorType | string | undefined;
|
|
2374
|
+
|
|
2375
|
+
connectorLabel?: string;
|
|
2376
|
+
}
|
|
2377
|
+
export declare namespace DescribeConnectorRequest {
|
|
2378
|
+
|
|
2379
|
+
const filterSensitiveLog: (obj: DescribeConnectorRequest) => any;
|
|
2380
|
+
}
|
|
2381
|
+
export interface DescribeConnectorResponse {
|
|
2382
|
+
|
|
2383
|
+
connectorConfiguration?: ConnectorConfiguration;
|
|
2384
|
+
}
|
|
2385
|
+
export declare namespace DescribeConnectorResponse {
|
|
2386
|
+
|
|
2387
|
+
const filterSensitiveLog: (obj: DescribeConnectorResponse) => any;
|
|
2388
|
+
}
|
|
1961
2389
|
export interface DescribeConnectorEntityRequest {
|
|
1962
2390
|
|
|
1963
2391
|
connectorEntityName: string | undefined;
|
|
@@ -1965,6 +2393,8 @@ export interface DescribeConnectorEntityRequest {
|
|
|
1965
2393
|
connectorType?: ConnectorType | string;
|
|
1966
2394
|
|
|
1967
2395
|
connectorProfileName?: string;
|
|
2396
|
+
|
|
2397
|
+
apiVersion?: string;
|
|
1968
2398
|
}
|
|
1969
2399
|
export declare namespace DescribeConnectorEntityRequest {
|
|
1970
2400
|
|
|
@@ -1984,6 +2414,8 @@ export interface DescribeConnectorProfilesRequest {
|
|
|
1984
2414
|
|
|
1985
2415
|
connectorType?: ConnectorType | string;
|
|
1986
2416
|
|
|
2417
|
+
connectorLabel?: string;
|
|
2418
|
+
|
|
1987
2419
|
maxResults?: number;
|
|
1988
2420
|
|
|
1989
2421
|
nextToken?: string;
|
|
@@ -2006,6 +2438,8 @@ export interface DescribeConnectorsRequest {
|
|
|
2006
2438
|
|
|
2007
2439
|
connectorTypes?: (ConnectorType | string)[];
|
|
2008
2440
|
|
|
2441
|
+
maxResults?: number;
|
|
2442
|
+
|
|
2009
2443
|
nextToken?: string;
|
|
2010
2444
|
}
|
|
2011
2445
|
export declare namespace DescribeConnectorsRequest {
|
|
@@ -2018,6 +2452,8 @@ export interface DescribeConnectorsResponse {
|
|
|
2018
2452
|
[key: string]: ConnectorConfiguration;
|
|
2019
2453
|
};
|
|
2020
2454
|
|
|
2455
|
+
connectors?: ConnectorDetail[];
|
|
2456
|
+
|
|
2021
2457
|
nextToken?: string;
|
|
2022
2458
|
}
|
|
2023
2459
|
export declare namespace DescribeConnectorsResponse {
|
|
@@ -2172,8 +2608,12 @@ export interface FlowDefinition {
|
|
|
2172
2608
|
|
|
2173
2609
|
sourceConnectorType?: ConnectorType | string;
|
|
2174
2610
|
|
|
2611
|
+
sourceConnectorLabel?: string;
|
|
2612
|
+
|
|
2175
2613
|
destinationConnectorType?: ConnectorType | string;
|
|
2176
2614
|
|
|
2615
|
+
destinationConnectorLabel?: string;
|
|
2616
|
+
|
|
2177
2617
|
triggerType?: TriggerType | string;
|
|
2178
2618
|
|
|
2179
2619
|
createdAt?: Date;
|
|
@@ -2201,6 +2641,8 @@ export interface ListConnectorEntitiesRequest {
|
|
|
2201
2641
|
connectorType?: ConnectorType | string;
|
|
2202
2642
|
|
|
2203
2643
|
entitiesPath?: string;
|
|
2644
|
+
|
|
2645
|
+
apiVersion?: string;
|
|
2204
2646
|
}
|
|
2205
2647
|
export declare namespace ListConnectorEntitiesRequest {
|
|
2206
2648
|
|
|
@@ -2216,6 +2658,26 @@ export declare namespace ListConnectorEntitiesResponse {
|
|
|
2216
2658
|
|
|
2217
2659
|
const filterSensitiveLog: (obj: ListConnectorEntitiesResponse) => any;
|
|
2218
2660
|
}
|
|
2661
|
+
export interface ListConnectorsRequest {
|
|
2662
|
+
|
|
2663
|
+
maxResults?: number;
|
|
2664
|
+
|
|
2665
|
+
nextToken?: string;
|
|
2666
|
+
}
|
|
2667
|
+
export declare namespace ListConnectorsRequest {
|
|
2668
|
+
|
|
2669
|
+
const filterSensitiveLog: (obj: ListConnectorsRequest) => any;
|
|
2670
|
+
}
|
|
2671
|
+
export interface ListConnectorsResponse {
|
|
2672
|
+
|
|
2673
|
+
connectors?: ConnectorDetail[];
|
|
2674
|
+
|
|
2675
|
+
nextToken?: string;
|
|
2676
|
+
}
|
|
2677
|
+
export declare namespace ListConnectorsResponse {
|
|
2678
|
+
|
|
2679
|
+
const filterSensitiveLog: (obj: ListConnectorsResponse) => any;
|
|
2680
|
+
}
|
|
2219
2681
|
export interface ListFlowsRequest {
|
|
2220
2682
|
|
|
2221
2683
|
maxResults?: number;
|
|
@@ -2254,6 +2716,34 @@ export declare namespace ListTagsForResourceResponse {
|
|
|
2254
2716
|
|
|
2255
2717
|
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
2256
2718
|
}
|
|
2719
|
+
export interface RegisterConnectorRequest {
|
|
2720
|
+
|
|
2721
|
+
connectorLabel?: string;
|
|
2722
|
+
|
|
2723
|
+
description?: string;
|
|
2724
|
+
|
|
2725
|
+
connectorProvisioningType?: ConnectorProvisioningType | string;
|
|
2726
|
+
|
|
2727
|
+
connectorProvisioningConfig?: ConnectorProvisioningConfig;
|
|
2728
|
+
}
|
|
2729
|
+
export declare namespace RegisterConnectorRequest {
|
|
2730
|
+
|
|
2731
|
+
const filterSensitiveLog: (obj: RegisterConnectorRequest) => any;
|
|
2732
|
+
}
|
|
2733
|
+
export interface RegisterConnectorResponse {
|
|
2734
|
+
|
|
2735
|
+
connectorArn?: string;
|
|
2736
|
+
}
|
|
2737
|
+
export declare namespace RegisterConnectorResponse {
|
|
2738
|
+
|
|
2739
|
+
const filterSensitiveLog: (obj: RegisterConnectorResponse) => any;
|
|
2740
|
+
}
|
|
2741
|
+
|
|
2742
|
+
export interface ThrottlingException extends __SmithyException, $MetadataBearer {
|
|
2743
|
+
name: "ThrottlingException";
|
|
2744
|
+
$fault: "client";
|
|
2745
|
+
message?: string;
|
|
2746
|
+
}
|
|
2257
2747
|
export interface StartFlowRequest {
|
|
2258
2748
|
|
|
2259
2749
|
flowName: string | undefined;
|
|
@@ -2316,6 +2806,22 @@ export declare namespace TagResourceResponse {
|
|
|
2316
2806
|
|
|
2317
2807
|
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
2318
2808
|
}
|
|
2809
|
+
export interface UnregisterConnectorRequest {
|
|
2810
|
+
|
|
2811
|
+
connectorLabel: string | undefined;
|
|
2812
|
+
|
|
2813
|
+
forceDelete?: boolean;
|
|
2814
|
+
}
|
|
2815
|
+
export declare namespace UnregisterConnectorRequest {
|
|
2816
|
+
|
|
2817
|
+
const filterSensitiveLog: (obj: UnregisterConnectorRequest) => any;
|
|
2818
|
+
}
|
|
2819
|
+
export interface UnregisterConnectorResponse {
|
|
2820
|
+
}
|
|
2821
|
+
export declare namespace UnregisterConnectorResponse {
|
|
2822
|
+
|
|
2823
|
+
const filterSensitiveLog: (obj: UnregisterConnectorResponse) => any;
|
|
2824
|
+
}
|
|
2319
2825
|
export interface UntagResourceRequest {
|
|
2320
2826
|
|
|
2321
2827
|
resourceArn: string | undefined;
|