@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,12 @@
1
1
  import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
2
+ /**
3
+ * <p>AppFlow/Requester has invalid or missing permissions.</p>
4
+ */
5
+ export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
6
+ name: "AccessDeniedException";
7
+ $fault: "client";
8
+ message?: string;
9
+ }
2
10
  export declare enum AggregationType {
3
11
  NONE = "None",
4
12
  SINGLE_FILE = "SingleFile"
@@ -80,6 +88,152 @@ export declare namespace AmplitudeSourceProperties {
80
88
  */
81
89
  const filterSensitiveLog: (obj: AmplitudeSourceProperties) => any;
82
90
  }
91
+ /**
92
+ * <p>The API key credentials required for API key authentication.</p>
93
+ */
94
+ export interface ApiKeyCredentials {
95
+ /**
96
+ * <p>The API key required for API key authentication.</p>
97
+ */
98
+ apiKey: string | undefined;
99
+ /**
100
+ * <p>The API secret key required for API key authentication.</p>
101
+ */
102
+ apiSecretKey?: string;
103
+ }
104
+ export declare namespace ApiKeyCredentials {
105
+ /**
106
+ * @internal
107
+ */
108
+ const filterSensitiveLog: (obj: ApiKeyCredentials) => any;
109
+ }
110
+ /**
111
+ * <p>Information about required authentication parameters.</p>
112
+ */
113
+ export interface AuthParameter {
114
+ /**
115
+ * <p>The authentication key required to authenticate with the connector.</p>
116
+ */
117
+ key?: string;
118
+ /**
119
+ * <p>Indicates whether this authentication parameter is required.</p>
120
+ */
121
+ isRequired?: boolean;
122
+ /**
123
+ * <p>Label used for authentication parameter.</p>
124
+ */
125
+ label?: string;
126
+ /**
127
+ * <p>A description about the authentication parameter.</p>
128
+ */
129
+ description?: string;
130
+ /**
131
+ * <p>Indicates whether this authentication parameter is a sensitive field.</p>
132
+ */
133
+ isSensitiveField?: boolean;
134
+ /**
135
+ * <p>Contains default values for this authentication parameter that are supplied by the
136
+ * connector.</p>
137
+ */
138
+ connectorSuppliedValues?: string[];
139
+ }
140
+ export declare namespace AuthParameter {
141
+ /**
142
+ * @internal
143
+ */
144
+ const filterSensitiveLog: (obj: AuthParameter) => any;
145
+ }
146
+ /**
147
+ * <p>Configuration information required for custom authentication.</p>
148
+ */
149
+ export interface CustomAuthConfig {
150
+ /**
151
+ * <p>The authentication type that the custom connector uses.</p>
152
+ */
153
+ customAuthenticationType?: string;
154
+ /**
155
+ * <p>Information about authentication parameters required for authentication.</p>
156
+ */
157
+ authParameters?: AuthParameter[];
158
+ }
159
+ export declare namespace CustomAuthConfig {
160
+ /**
161
+ * @internal
162
+ */
163
+ const filterSensitiveLog: (obj: CustomAuthConfig) => any;
164
+ }
165
+ export declare enum OAuth2GrantType {
166
+ AUTHORIZATION_CODE = "AUTHORIZATION_CODE",
167
+ CLIENT_CREDENTIALS = "CLIENT_CREDENTIALS"
168
+ }
169
+ /**
170
+ * <p>Contains the default values required for OAuth 2.0 authentication.</p>
171
+ */
172
+ export interface OAuth2Defaults {
173
+ /**
174
+ * <p>OAuth 2.0 scopes that the connector supports.</p>
175
+ */
176
+ oauthScopes?: string[];
177
+ /**
178
+ * <p>Token URLs that can be used for OAuth 2.0 authentication.</p>
179
+ */
180
+ tokenUrls?: string[];
181
+ /**
182
+ * <p>Auth code URLs that can be used for OAuth 2.0 authentication.</p>
183
+ */
184
+ authCodeUrls?: string[];
185
+ /**
186
+ * <p>OAuth 2.0 grant types supported by the connector.</p>
187
+ */
188
+ oauth2GrantTypesSupported?: (OAuth2GrantType | string)[];
189
+ }
190
+ export declare namespace OAuth2Defaults {
191
+ /**
192
+ * @internal
193
+ */
194
+ const filterSensitiveLog: (obj: OAuth2Defaults) => any;
195
+ }
196
+ /**
197
+ * <p>Contains information about the authentication config that the connector supports.</p>
198
+ */
199
+ export interface AuthenticationConfig {
200
+ /**
201
+ * <p>Indicates whether basic authentication is supported by the connector.</p>
202
+ */
203
+ isBasicAuthSupported?: boolean;
204
+ /**
205
+ * <p>Indicates whether API key authentication is supported by the connector</p>
206
+ */
207
+ isApiKeyAuthSupported?: boolean;
208
+ /**
209
+ * <p>Indicates whether OAuth 2.0 authentication is supported by the connector.</p>
210
+ */
211
+ isOAuth2Supported?: boolean;
212
+ /**
213
+ * <p>Indicates whether custom authentication is supported by the connector</p>
214
+ */
215
+ isCustomAuthSupported?: boolean;
216
+ /**
217
+ * <p>Contains the default values required for OAuth 2.0 authentication.</p>
218
+ */
219
+ oAuth2Defaults?: OAuth2Defaults;
220
+ /**
221
+ * <p>Contains information required for custom authentication.</p>
222
+ */
223
+ customAuthConfigs?: CustomAuthConfig[];
224
+ }
225
+ export declare namespace AuthenticationConfig {
226
+ /**
227
+ * @internal
228
+ */
229
+ const filterSensitiveLog: (obj: AuthenticationConfig) => any;
230
+ }
231
+ export declare enum AuthenticationType {
232
+ APIKEY = "APIKEY",
233
+ BASIC = "BASIC",
234
+ CUSTOM = "CUSTOM",
235
+ OAUTH2 = "OAUTH2"
236
+ }
83
237
  /**
84
238
  * <p> The basic auth credentials required for basic authentication. </p>
85
239
  */
@@ -460,8 +614,85 @@ export declare namespace ConnectorMetadata {
460
614
  */
461
615
  const filterSensitiveLog: (obj: ConnectorMetadata) => any;
462
616
  }
617
+ /**
618
+ * <p>Contains information about the configuration of the lambda which is being registered as
619
+ * the connector.</p>
620
+ */
621
+ export interface LambdaConnectorProvisioningConfig {
622
+ /**
623
+ * <p>Lambda ARN of the connector being registered.</p>
624
+ */
625
+ lambdaArn: string | undefined;
626
+ }
627
+ export declare namespace LambdaConnectorProvisioningConfig {
628
+ /**
629
+ * @internal
630
+ */
631
+ const filterSensitiveLog: (obj: LambdaConnectorProvisioningConfig) => any;
632
+ }
633
+ /**
634
+ * <p>Contains information about the configuration of the connector being registered.</p>
635
+ */
636
+ export interface ConnectorProvisioningConfig {
637
+ /**
638
+ * <p>Contains information about the configuration of the lambda which is being registered as
639
+ * the connector.</p>
640
+ */
641
+ lambda?: LambdaConnectorProvisioningConfig;
642
+ }
643
+ export declare namespace ConnectorProvisioningConfig {
644
+ /**
645
+ * @internal
646
+ */
647
+ const filterSensitiveLog: (obj: ConnectorProvisioningConfig) => any;
648
+ }
649
+ export declare enum ConnectorProvisioningType {
650
+ LAMBDA = "LAMBDA"
651
+ }
652
+ /**
653
+ * <p>Contains information about the connector runtime settings that are required for flow
654
+ * execution.</p>
655
+ */
656
+ export interface ConnectorRuntimeSetting {
657
+ /**
658
+ * <p>Contains value information about the connector runtime setting.</p>
659
+ */
660
+ key?: string;
661
+ /**
662
+ * <p>Data type of the connector runtime setting.</p>
663
+ */
664
+ dataType?: string;
665
+ /**
666
+ * <p>Indicates whether this connector runtime setting is required.</p>
667
+ */
668
+ isRequired?: boolean;
669
+ /**
670
+ * <p>A label used for connector runtime setting.</p>
671
+ */
672
+ label?: string;
673
+ /**
674
+ * <p>A description about the connector runtime setting.</p>
675
+ */
676
+ description?: string;
677
+ /**
678
+ * <p>Indicates the scope of the connector runtime setting.</p>
679
+ */
680
+ scope?: string;
681
+ /**
682
+ * <p>Contains default values for the connector runtime setting that are supplied by the
683
+ * connector.</p>
684
+ */
685
+ connectorSuppliedValueOptions?: string[];
686
+ }
687
+ export declare namespace ConnectorRuntimeSetting {
688
+ /**
689
+ * @internal
690
+ */
691
+ const filterSensitiveLog: (obj: ConnectorRuntimeSetting) => any;
692
+ }
463
693
  export declare enum ConnectorType {
464
694
  AMPLITUDE = "Amplitude",
695
+ CUSTOMCONNECTOR = "CustomConnector",
465
696
  CUSTOMERPROFILES = "CustomerProfiles",
466
697
  DATADOG = "Datadog",
467
698
  DYNATRACE = "Dynatrace",
@@ -484,6 +715,29 @@ export declare enum ConnectorType {
484
715
  VEEVA = "Veeva",
485
716
  ZENDESK = "Zendesk"
486
717
  }
718
+ export declare enum Operators {
719
+ ADDITION = "ADDITION",
720
+ BETWEEN = "BETWEEN",
721
+ CONTAINS = "CONTAINS",
722
+ DIVISION = "DIVISION",
723
+ EQUAL_TO = "EQUAL_TO",
724
+ GREATER_THAN = "GREATER_THAN",
725
+ GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
726
+ LESS_THAN = "LESS_THAN",
727
+ LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
728
+ MASK_ALL = "MASK_ALL",
729
+ MASK_FIRST_N = "MASK_FIRST_N",
730
+ MASK_LAST_N = "MASK_LAST_N",
731
+ MULTIPLICATION = "MULTIPLICATION",
732
+ NOT_EQUAL_TO = "NOT_EQUAL_TO",
733
+ NO_OP = "NO_OP",
734
+ PROJECTION = "PROJECTION",
735
+ SUBTRACTION = "SUBTRACTION",
736
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
737
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
738
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
739
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC"
740
+ }
487
741
  export declare enum ScheduleFrequencyType {
488
742
  BYMINUTE = "BYMINUTE",
489
743
  DAILY = "DAILY",
@@ -497,6 +751,12 @@ export declare enum TriggerType {
497
751
  ONDEMAND = "OnDemand",
498
752
  SCHEDULED = "Scheduled"
499
753
  }
754
+ export declare enum WriteOperationType {
755
+ DELETE = "DELETE",
756
+ INSERT = "INSERT",
757
+ UPDATE = "UPDATE",
758
+ UPSERT = "UPSERT"
759
+ }
500
760
  /**
501
761
  * <p> The configuration settings related to a given connector. </p>
502
762
  */
@@ -534,6 +794,78 @@ export interface ConnectorConfiguration {
534
794
  * <code>supportedRegions</code>, <code>privateLinkServiceUrl</code>, and so on. </p>
535
795
  */
536
796
  connectorMetadata?: ConnectorMetadata;
797
+ /**
798
+ * <p>The connector type.</p>
799
+ */
800
+ connectorType?: ConnectorType | string;
801
+ /**
802
+ * <p>The label used for registering the connector.</p>
803
+ */
804
+ connectorLabel?: string;
805
+ /**
806
+ * <p>A description about the connector.</p>
807
+ */
808
+ connectorDescription?: string;
809
+ /**
810
+ * <p>The owner who developed the connector.</p>
811
+ */
812
+ connectorOwner?: string;
813
+ /**
814
+ * <p>The connector name.</p>
815
+ */
816
+ connectorName?: string;
817
+ /**
818
+ * <p>The connector version.</p>
819
+ */
820
+ connectorVersion?: string;
821
+ /**
822
+ * <p>The Amazon Resource Name (ARN) for the registered connector.</p>
823
+ */
824
+ connectorArn?: string;
825
+ /**
826
+ * <p>The connection modes that the connector supports.</p>
827
+ */
828
+ connectorModes?: string[];
829
+ /**
830
+ * <p>The authentication config required for the connector.</p>
831
+ */
832
+ authenticationConfig?: AuthenticationConfig;
833
+ /**
834
+ * <p>The required connector runtime settings.</p>
835
+ */
836
+ connectorRuntimeSettings?: ConnectorRuntimeSetting[];
837
+ /**
838
+ * <p>A list of API versions that are supported by the connector.</p>
839
+ */
840
+ supportedApiVersions?: string[];
841
+ /**
842
+ * <p>A list of operators supported by the connector.</p>
843
+ */
844
+ supportedOperators?: (Operators | string)[];
845
+ /**
846
+ * <p>A list of write operations supported by the connector.</p>
847
+ */
848
+ supportedWriteOperations?: (WriteOperationType | string)[];
849
+ /**
850
+ * <p>The provisioning type used to register the connector.</p>
851
+ */
852
+ connectorProvisioningType?: ConnectorProvisioningType | string;
853
+ /**
854
+ * <p>The configuration required for registering the connector.</p>
855
+ */
856
+ connectorProvisioningConfig?: ConnectorProvisioningConfig;
857
+ /**
858
+ * <p>Logo URL of the connector.</p>
859
+ */
860
+ logoURL?: string;
861
+ /**
862
+ * <p>The date on which the connector was registered.</p>
863
+ */
864
+ registeredAt?: Date;
865
+ /**
866
+ * <p>Information about who registered the connector.</p>
867
+ */
868
+ registeredBy?: string;
537
869
  }
538
870
  export declare namespace ConnectorConfiguration {
539
871
  /**
@@ -541,6 +873,61 @@ export declare namespace ConnectorConfiguration {
541
873
  */
542
874
  const filterSensitiveLog: (obj: ConnectorConfiguration) => any;
543
875
  }
876
+ /**
877
+ * <p>Information about the registered connector.</p>
878
+ */
879
+ export interface ConnectorDetail {
880
+ /**
881
+ * <p>A description about the registered connector.</p>
882
+ */
883
+ connectorDescription?: string;
884
+ /**
885
+ * <p>The name of the connector.</p>
886
+ */
887
+ connectorName?: string;
888
+ /**
889
+ * <p>The owner of the connector.</p>
890
+ */
891
+ connectorOwner?: string;
892
+ /**
893
+ * <p>The connector version.</p>
894
+ */
895
+ connectorVersion?: string;
896
+ /**
897
+ * <p>The application type of the connector.</p>
898
+ */
899
+ applicationType?: string;
900
+ /**
901
+ * <p>The connector type.</p>
902
+ */
903
+ connectorType?: ConnectorType | string;
904
+ /**
905
+ * <p>A label used for the connector.</p>
906
+ */
907
+ connectorLabel?: string;
908
+ /**
909
+ * <p>The time at which the connector was registered.</p>
910
+ */
911
+ registeredAt?: Date;
912
+ /**
913
+ * <p>The user who registered the connector.</p>
914
+ */
915
+ registeredBy?: string;
916
+ /**
917
+ * <p>The provisioning type that the connector uses.</p>
918
+ */
919
+ connectorProvisioningType?: ConnectorProvisioningType | string;
920
+ /**
921
+ * <p>The connection mode that the connector supports.</p>
922
+ */
923
+ connectorModes?: string[];
924
+ }
925
+ export declare namespace ConnectorDetail {
926
+ /**
927
+ * @internal
928
+ */
929
+ const filterSensitiveLog: (obj: ConnectorDetail) => any;
930
+ }
544
931
  /**
545
932
  * <p> The high-level entity that can be queried in Amazon AppFlow. For example, a Salesforce
546
933
  * entity might be an <i>Account</i> or <i>Opportunity</i>, whereas a
@@ -570,11 +957,6 @@ export declare namespace ConnectorEntity {
570
957
  */
571
958
  const filterSensitiveLog: (obj: ConnectorEntity) => any;
572
959
  }
573
- export declare enum WriteOperationType {
574
- INSERT = "INSERT",
575
- UPDATE = "UPDATE",
576
- UPSERT = "UPSERT"
577
- }
578
960
  /**
579
961
  * <p> The properties that can be applied to a field when connector is being used as a
580
962
  * destination. </p>
@@ -598,6 +980,10 @@ export interface DestinationFieldProperties {
598
980
  * <code>UPSERT</code> write operation. </p>
599
981
  */
600
982
  isUpdatable?: boolean;
983
+ /**
984
+ * <p>Specifies whether the field can use the default value during a Create operation.</p>
985
+ */
986
+ isDefaultedOnCreate?: boolean;
601
987
  /**
602
988
  * <p> A list of supported write operations. For each write operation listed, this field can be
603
989
  * used in <code>idFieldNames</code> when that write operation is present as a destination
@@ -624,6 +1010,10 @@ export interface SourceFieldProperties {
624
1010
  * <p> Indicates if the field can be queried. </p>
625
1011
  */
626
1012
  isQueryable?: boolean;
1013
+ /**
1014
+ * <p>Indicates if this timestamp field can be used for incremental queries.</p>
1015
+ */
1016
+ isTimestampFieldForIncrementalQueries?: boolean;
627
1017
  }
628
1018
  export declare namespace SourceFieldProperties {
629
1019
  /**
@@ -631,6 +1021,25 @@ export declare namespace SourceFieldProperties {
631
1021
  */
632
1022
  const filterSensitiveLog: (obj: SourceFieldProperties) => any;
633
1023
  }
1024
+ /**
1025
+ * <p>The range of values that the property supports.</p>
1026
+ */
1027
+ export interface Range {
1028
+ /**
1029
+ * <p>Maximum value supported by the field.</p>
1030
+ */
1031
+ maximum?: number;
1032
+ /**
1033
+ * <p>Minimum value supported by the field.</p>
1034
+ */
1035
+ minimum?: number;
1036
+ }
1037
+ export declare namespace Range {
1038
+ /**
1039
+ * @internal
1040
+ */
1041
+ const filterSensitiveLog: (obj: Range) => any;
1042
+ }
634
1043
  export declare enum Operator {
635
1044
  ADDITION = "ADDITION",
636
1045
  BETWEEN = "BETWEEN",
@@ -672,6 +1081,22 @@ export interface FieldTypeDetails {
672
1081
  * <code>fieldType</code> can have two values: "true" and "false". </p>
673
1082
  */
674
1083
  supportedValues?: string[];
1084
+ /**
1085
+ * <p>The regular expression pattern for the field name.</p>
1086
+ */
1087
+ valueRegexPattern?: string;
1088
+ /**
1089
+ * <p>The date format that the field supports.</p>
1090
+ */
1091
+ supportedDateFormat?: string;
1092
+ /**
1093
+ * <p>The range of values this field can hold.</p>
1094
+ */
1095
+ fieldValueRange?: Range;
1096
+ /**
1097
+ * <p>This is the allowable length range for this field's value.</p>
1098
+ */
1099
+ fieldLengthRange?: Range;
675
1100
  }
676
1101
  export declare namespace FieldTypeDetails {
677
1102
  /**
@@ -706,10 +1131,26 @@ export interface ConnectorEntityField {
706
1131
  * <p> The unique identifier of the connector field. </p>
707
1132
  */
708
1133
  identifier: string | undefined;
1134
+ /**
1135
+ * <p>The parent identifier of the connector field.</p>
1136
+ */
1137
+ parentIdentifier?: string;
709
1138
  /**
710
1139
  * <p> The label applied to a connector entity field. </p>
711
1140
  */
712
1141
  label?: string;
1142
+ /**
1143
+ * <p>Booelan value that indicates whether this field can be used as a primary key.</p>
1144
+ */
1145
+ isPrimaryKey?: boolean;
1146
+ /**
1147
+ * <p>Default value that can be assigned to this field.</p>
1148
+ */
1149
+ defaultValue?: string;
1150
+ /**
1151
+ * <p>Booelan value that indicates whether this field is deprecated or not.</p>
1152
+ */
1153
+ isDeprecated?: boolean;
713
1154
  /**
714
1155
  * <p> Contains details regarding the supported <code>FieldType</code>, including the
715
1156
  * corresponding <code>filterOperators</code> and <code>supportedValues</code>. </p>
@@ -729,6 +1170,12 @@ export interface ConnectorEntityField {
729
1170
  * </p>
730
1171
  */
731
1172
  destinationProperties?: DestinationFieldProperties;
1173
+ /**
1174
+ * <p>A map that has specific properties related to the ConnectorEntityField.</p>
1175
+ */
1176
+ customProperties?: {
1177
+ [key: string]: string;
1178
+ };
732
1179
  }
733
1180
  export declare namespace ConnectorEntityField {
734
1181
  /**
@@ -1065,25 +1512,69 @@ export interface ConnectorOperator {
1065
1512
  /**
1066
1513
  * <p> The operation to be performed on the provided Trend Micro source fields. </p>
1067
1514
  */
1068
- Trendmicro?: TrendmicroConnectorOperator | string;
1515
+ Trendmicro?: TrendmicroConnectorOperator | string;
1516
+ /**
1517
+ * <p> The operation to be performed on the provided Veeva source fields. </p>
1518
+ */
1519
+ Veeva?: VeevaConnectorOperator | string;
1520
+ /**
1521
+ * <p> The operation to be performed on the provided Zendesk source fields. </p>
1522
+ */
1523
+ Zendesk?: ZendeskConnectorOperator | string;
1524
+ /**
1525
+ * <p> The operation to be performed on the provided SAPOData source fields. </p>
1526
+ */
1527
+ SAPOData?: SAPODataConnectorOperator | string;
1528
+ /**
1529
+ * <p>Operators supported by the custom connector.</p>
1530
+ */
1531
+ CustomConnector?: Operator | string;
1532
+ }
1533
+ export declare namespace ConnectorOperator {
1534
+ /**
1535
+ * @internal
1536
+ */
1537
+ const filterSensitiveLog: (obj: ConnectorOperator) => any;
1538
+ }
1539
+ /**
1540
+ * <p>The OAuth 2.0 properties required for OAuth 2.0 authentication.</p>
1541
+ */
1542
+ export interface OAuth2Properties {
1543
+ /**
1544
+ * <p>The token URL required for OAuth 2.0 authentication.</p>
1545
+ */
1546
+ tokenUrl: string | undefined;
1547
+ /**
1548
+ * <p>The OAuth 2.0 grant type used by connector for OAuth 2.0 authentication.</p>
1549
+ */
1550
+ oAuth2GrantType: OAuth2GrantType | string | undefined;
1551
+ }
1552
+ export declare namespace OAuth2Properties {
1069
1553
  /**
1070
- * <p> The operation to be performed on the provided Veeva source fields. </p>
1554
+ * @internal
1071
1555
  */
1072
- Veeva?: VeevaConnectorOperator | string;
1556
+ const filterSensitiveLog: (obj: OAuth2Properties) => any;
1557
+ }
1558
+ /**
1559
+ * <p>The profile properties required by the custom connector.</p>
1560
+ */
1561
+ export interface CustomConnectorProfileProperties {
1073
1562
  /**
1074
- * <p> The operation to be performed on the provided Zendesk source fields. </p>
1563
+ * <p>A map of properties that are required to create a profile for the custom connector.</p>
1075
1564
  */
1076
- Zendesk?: ZendeskConnectorOperator | string;
1565
+ profileProperties?: {
1566
+ [key: string]: string;
1567
+ };
1077
1568
  /**
1078
- * <p> The operation to be performed on the provided SAPOData source fields. </p>
1569
+ * <p>The OAuth 2.0 properties required for OAuth 2.0 authentication.</p>
1079
1570
  */
1080
- SAPOData?: SAPODataConnectorOperator | string;
1571
+ oAuth2Properties?: OAuth2Properties;
1081
1572
  }
1082
- export declare namespace ConnectorOperator {
1573
+ export declare namespace CustomConnectorProfileProperties {
1083
1574
  /**
1084
1575
  * @internal
1085
1576
  */
1086
- const filterSensitiveLog: (obj: ConnectorOperator) => any;
1577
+ const filterSensitiveLog: (obj: CustomConnectorProfileProperties) => any;
1087
1578
  }
1088
1579
  /**
1089
1580
  * <p> The connector-specific profile properties required by Datadog. </p>
@@ -1220,13 +1711,13 @@ export declare namespace SalesforceConnectorProfileProperties {
1220
1711
  */
1221
1712
  export interface OAuthProperties {
1222
1713
  /**
1223
- * <p> The token url required to fetch access/refresh tokens using authorization code and also to refresh expired
1224
- * access token using refresh token.</p>
1714
+ * <p> The token url required to fetch access/refresh tokens using authorization code and also
1715
+ * to refresh expired access token using refresh token.</p>
1225
1716
  */
1226
1717
  tokenUrl: string | undefined;
1227
1718
  /**
1228
- * <p> The authorization code url required to redirect to SAP Login Page to fetch authorization code for OAuth type
1229
- * authentication. </p>
1719
+ * <p> The authorization code url required to redirect to SAP Login Page to fetch authorization
1720
+ * code for OAuth type authentication. </p>
1230
1721
  */
1231
1722
  authCodeUrl: string | undefined;
1232
1723
  /**
@@ -1474,6 +1965,10 @@ export interface ConnectorProfileProperties {
1474
1965
  * <p> The connector-specific profile properties required when using SAPOData. </p>
1475
1966
  */
1476
1967
  SAPOData?: SAPODataConnectorProfileProperties;
1968
+ /**
1969
+ * <p>The properties required by the custom connector.</p>
1970
+ */
1971
+ CustomConnector?: CustomConnectorProfileProperties;
1477
1972
  }
1478
1973
  export declare namespace ConnectorProfileProperties {
1479
1974
  /**
@@ -1537,6 +2032,10 @@ export interface ConnectorProfile {
1537
2032
  * <p> The type of connector, such as Salesforce, Amplitude, and so on. </p>
1538
2033
  */
1539
2034
  connectorType?: ConnectorType | string;
2035
+ /**
2036
+ * <p>The label for the connector profile being created.</p>
2037
+ */
2038
+ connectorLabel?: string;
1540
2039
  /**
1541
2040
  * <p> Indicates the connection mode and if it is public or private. </p>
1542
2041
  */
@@ -1568,6 +2067,94 @@ export declare namespace ConnectorProfile {
1568
2067
  */
1569
2068
  const filterSensitiveLog: (obj: ConnectorProfile) => any;
1570
2069
  }
2070
+ /**
2071
+ * <p>The custom credentials required for custom authentication.</p>
2072
+ */
2073
+ export interface CustomAuthCredentials {
2074
+ /**
2075
+ * <p>The custom authentication type that the connector uses.</p>
2076
+ */
2077
+ customAuthenticationType: string | undefined;
2078
+ /**
2079
+ * <p>A map that holds custom authentication credentials.</p>
2080
+ */
2081
+ credentialsMap?: {
2082
+ [key: string]: string;
2083
+ };
2084
+ }
2085
+ export declare namespace CustomAuthCredentials {
2086
+ /**
2087
+ * @internal
2088
+ */
2089
+ const filterSensitiveLog: (obj: CustomAuthCredentials) => any;
2090
+ }
2091
+ /**
2092
+ * <p>The OAuth 2.0 credentials required for OAuth 2.0 authentication.</p>
2093
+ */
2094
+ export interface OAuth2Credentials {
2095
+ /**
2096
+ * <p>The identifier for the desired client.</p>
2097
+ */
2098
+ clientId?: string;
2099
+ /**
2100
+ * <p>The client secret used by the OAuth client to authenticate to the authorization
2101
+ * server.</p>
2102
+ */
2103
+ clientSecret?: string;
2104
+ /**
2105
+ * <p>The access token used to access the connector on your behalf.</p>
2106
+ */
2107
+ accessToken?: string;
2108
+ /**
2109
+ * <p>The refresh token used to refresh an expired access token.</p>
2110
+ */
2111
+ refreshToken?: string;
2112
+ /**
2113
+ * <p> Used by select connectors for which the OAuth workflow is supported, such as Salesforce,
2114
+ * Google Analytics, Marketo, Zendesk, and Slack. </p>
2115
+ */
2116
+ oAuthRequest?: ConnectorOAuthRequest;
2117
+ }
2118
+ export declare namespace OAuth2Credentials {
2119
+ /**
2120
+ * @internal
2121
+ */
2122
+ const filterSensitiveLog: (obj: OAuth2Credentials) => any;
2123
+ }
2124
+ /**
2125
+ * <p>The connector-specific profile credentials that are required when using the custom
2126
+ * connector.</p>
2127
+ */
2128
+ export interface CustomConnectorProfileCredentials {
2129
+ /**
2130
+ * <p>The authentication type that the custom connector uses for authenticating while creating a
2131
+ * connector profile.</p>
2132
+ */
2133
+ authenticationType: AuthenticationType | string | undefined;
2134
+ /**
2135
+ * <p>The basic credentials that are required for the authentication of the user.</p>
2136
+ */
2137
+ basic?: BasicAuthCredentials;
2138
+ /**
2139
+ * <p>The OAuth 2.0 credentials required for the authentication of the user.</p>
2140
+ */
2141
+ oauth2?: OAuth2Credentials;
2142
+ /**
2143
+ * <p>The API keys required for the authentication of the user.</p>
2144
+ */
2145
+ apiKey?: ApiKeyCredentials;
2146
+ /**
2147
+ * <p>If the connector uses the custom authentication mechanism, this holds the required
2148
+ * credentials.</p>
2149
+ */
2150
+ custom?: CustomAuthCredentials;
2151
+ }
2152
+ export declare namespace CustomConnectorProfileCredentials {
2153
+ /**
2154
+ * @internal
2155
+ */
2156
+ const filterSensitiveLog: (obj: CustomConnectorProfileCredentials) => any;
2157
+ }
1571
2158
  /**
1572
2159
  * <p> The connector-specific credentials required by Datadog. </p>
1573
2160
  */
@@ -2037,6 +2624,11 @@ export interface ConnectorProfileCredentials {
2037
2624
  * <p> The connector-specific profile credentials required when using SAPOData. </p>
2038
2625
  */
2039
2626
  SAPOData?: SAPODataConnectorProfileCredentials;
2627
+ /**
2628
+ * <p>The connector-specific profile credentials that are required when using the custom
2629
+ * connector.</p>
2630
+ */
2631
+ CustomConnector?: CustomConnectorProfileCredentials;
2040
2632
  }
2041
2633
  export declare namespace ConnectorProfileCredentials {
2042
2634
  /**
@@ -2089,10 +2681,16 @@ export interface CreateConnectorProfileRequest {
2089
2681
  * <p> The type of connector, such as Salesforce, Amplitude, and so on. </p>
2090
2682
  */
2091
2683
  connectorType: ConnectorType | string | undefined;
2684
+ /**
2685
+ * <p>The label of the connector. The label is unique for each
2686
+ * <code>ConnectorRegistration</code> in your Amazon Web Services account. Only needed if
2687
+ * calling for CUSTOMCONNECTOR connector type/.</p>
2688
+ */
2689
+ connectorLabel?: string;
2092
2690
  /**
2093
2691
  * <p> Indicates the connection mode and specifies whether it is public or private. Private
2094
- * flows use Amazon Web Services PrivateLink to route data over Amazon Web Services infrastructure without exposing it to the
2095
- * public internet. </p>
2692
+ * flows use Amazon Web Services PrivateLink to route data over Amazon Web Services infrastructure
2693
+ * without exposing it to the public internet. </p>
2096
2694
  */
2097
2695
  connectionMode: ConnectionMode | string | undefined;
2098
2696
  /**
@@ -2144,26 +2742,6 @@ export interface ValidationException extends __SmithyException, $MetadataBearer
2144
2742
  $fault: "client";
2145
2743
  message?: string;
2146
2744
  }
2147
- /**
2148
- * <p> The properties that are applied when Amazon Connect Customer Profiles is used as a
2149
- * destination. </p>
2150
- */
2151
- export interface CustomerProfilesDestinationProperties {
2152
- /**
2153
- * <p> The unique name of the Amazon Connect Customer Profiles domain. </p>
2154
- */
2155
- domainName: string | undefined;
2156
- /**
2157
- * <p> The object specified in the Amazon Connect Customer Profiles flow destination. </p>
2158
- */
2159
- objectTypeName?: string;
2160
- }
2161
- export declare namespace CustomerProfilesDestinationProperties {
2162
- /**
2163
- * @internal
2164
- */
2165
- const filterSensitiveLog: (obj: CustomerProfilesDestinationProperties) => any;
2166
- }
2167
2745
  /**
2168
2746
  * <p> The settings that determine how Amazon AppFlow handles an error when placing data in the
2169
2747
  * destination. For example, this setting would determine if the flow should fail after one
@@ -2192,6 +2770,64 @@ export declare namespace ErrorHandlingConfig {
2192
2770
  */
2193
2771
  const filterSensitiveLog: (obj: ErrorHandlingConfig) => any;
2194
2772
  }
2773
+ /**
2774
+ * <p>The properties that are applied when the custom connector is being used as a
2775
+ * destination.</p>
2776
+ */
2777
+ export interface CustomConnectorDestinationProperties {
2778
+ /**
2779
+ * <p>The entity specified in the custom connector as a destination in the flow.</p>
2780
+ */
2781
+ entityName: string | undefined;
2782
+ /**
2783
+ * <p>The settings that determine how Amazon AppFlow handles an error when placing data in the
2784
+ * custom connector as destination.</p>
2785
+ */
2786
+ errorHandlingConfig?: ErrorHandlingConfig;
2787
+ /**
2788
+ * <p>Specifies the type of write operation to be performed in the custom connector when it's
2789
+ * used as destination.</p>
2790
+ */
2791
+ writeOperationType?: WriteOperationType | string;
2792
+ /**
2793
+ * <p>The name of the field that Amazon AppFlow uses as an ID when performing a write operation
2794
+ * such as update, delete, or upsert.</p>
2795
+ */
2796
+ idFieldNames?: string[];
2797
+ /**
2798
+ * <p>The custom properties that are specific to the connector when it's used as a destination
2799
+ * in the flow.</p>
2800
+ */
2801
+ customProperties?: {
2802
+ [key: string]: string;
2803
+ };
2804
+ }
2805
+ export declare namespace CustomConnectorDestinationProperties {
2806
+ /**
2807
+ * @internal
2808
+ */
2809
+ const filterSensitiveLog: (obj: CustomConnectorDestinationProperties) => any;
2810
+ }
2811
+ /**
2812
+ * <p> The properties that are applied when Amazon Connect Customer Profiles is used as a
2813
+ * destination. </p>
2814
+ */
2815
+ export interface CustomerProfilesDestinationProperties {
2816
+ /**
2817
+ * <p> The unique name of the Amazon Connect Customer Profiles domain. </p>
2818
+ */
2819
+ domainName: string | undefined;
2820
+ /**
2821
+ * <p> The object specified in the Amazon Connect Customer Profiles flow destination. </p>
2822
+ */
2823
+ objectTypeName?: string;
2824
+ }
2825
+ export declare namespace CustomerProfilesDestinationProperties {
2826
+ /**
2827
+ * @internal
2828
+ */
2829
+ const filterSensitiveLog: (obj: CustomerProfilesDestinationProperties) => any;
2830
+ }
2195
2831
  /**
2196
2832
  * <p> The properties that are applied when Amazon EventBridge is being used as a destination.
2197
2833
  * </p>
@@ -2569,6 +3205,10 @@ export interface DestinationConnectorProperties {
2569
3205
  * <p>The properties required to query Zendesk.</p>
2570
3206
  */
2571
3207
  Zendesk?: ZendeskDestinationProperties;
3208
+ /**
3209
+ * <p>The properties that are required to query the custom Connector.</p>
3210
+ */
3211
+ CustomConnector?: CustomConnectorDestinationProperties;
2572
3212
  }
2573
3213
  export declare namespace DestinationConnectorProperties {
2574
3214
  /**
@@ -2585,6 +3225,10 @@ export interface DestinationFlowConfig {
2585
3225
  * <p> The type of connector, such as Salesforce, Amplitude, and so on. </p>
2586
3226
  */
2587
3227
  connectorType: ConnectorType | string | undefined;
3228
+ /**
3229
+ * <p>The API version that the destination connector uses.</p>
3230
+ */
3231
+ apiVersion?: string;
2588
3232
  /**
2589
3233
  * <p> The name of the connector profile. This name must be unique for each connector profile in
2590
3234
  * the Amazon Web Services account. </p>
@@ -2618,6 +3262,28 @@ export declare namespace IncrementalPullConfig {
2618
3262
  */
2619
3263
  const filterSensitiveLog: (obj: IncrementalPullConfig) => any;
2620
3264
  }
3265
+ /**
3266
+ * <p>The properties that are applied when the custom connector is being used as a
3267
+ * source.</p>
3268
+ */
3269
+ export interface CustomConnectorSourceProperties {
3270
+ /**
3271
+ * <p>The entity specified in the custom connector as a source in the flow.</p>
3272
+ */
3273
+ entityName: string | undefined;
3274
+ /**
3275
+ * <p>Custom properties that are required to use the custom connector as a source.</p>
3276
+ */
3277
+ customProperties?: {
3278
+ [key: string]: string;
3279
+ };
3280
+ }
3281
+ export declare namespace CustomConnectorSourceProperties {
3282
+ /**
3283
+ * @internal
3284
+ */
3285
+ const filterSensitiveLog: (obj: CustomConnectorSourceProperties) => any;
3286
+ }
2621
3287
  /**
2622
3288
  * <p> The properties that are applied when Datadog is being used as a source. </p>
2623
3289
  */
@@ -2944,6 +3610,11 @@ export interface SourceConnectorProperties {
2944
3610
  * <p> The properties that are applied when using SAPOData as a flow source. </p>
2945
3611
  */
2946
3612
  SAPOData?: SAPODataSourceProperties;
3613
+ /**
3614
+ * <p>The properties that are applied when the custom connector is being used as a
3615
+ * source.</p>
3616
+ */
3617
+ CustomConnector?: CustomConnectorSourceProperties;
2947
3618
  }
2948
3619
  export declare namespace SourceConnectorProperties {
2949
3620
  /**
@@ -2960,6 +3631,10 @@ export interface SourceFlowConfig {
2960
3631
  * <p> The type of connector, such as Salesforce, Amplitude, and so on. </p>
2961
3632
  */
2962
3633
  connectorType: ConnectorType | string | undefined;
3634
+ /**
3635
+ * <p>The API version of the connector when it's used as a source in the flow.</p>
3636
+ */
3637
+ apiVersion?: string;
2963
3638
  /**
2964
3639
  * <p> The name of the connector profile. This name must be unique for each connector profile in
2965
3640
  * the Amazon Web Services account. </p>
@@ -3268,6 +3943,37 @@ export declare namespace DeleteFlowResponse {
3268
3943
  */
3269
3944
  const filterSensitiveLog: (obj: DeleteFlowResponse) => any;
3270
3945
  }
3946
+ export interface DescribeConnectorRequest {
3947
+ /**
3948
+ * <p>The connector type, such as CUSTOMCONNECTOR, Saleforce, Marketo. Please choose
3949
+ * CUSTOMCONNECTOR for Lambda based custom connectors.</p>
3950
+ */
3951
+ connectorType: ConnectorType | string | undefined;
3952
+ /**
3953
+ * <p>The label of the connector. The label is unique for each
3954
+ * <code>ConnectorRegistration</code> in your Amazon Web Services account. Only needed if
3955
+ * calling for CUSTOMCONNECTOR connector type/.</p>
3956
+ */
3957
+ connectorLabel?: string;
3958
+ }
3959
+ export declare namespace DescribeConnectorRequest {
3960
+ /**
3961
+ * @internal
3962
+ */
3963
+ const filterSensitiveLog: (obj: DescribeConnectorRequest) => any;
3964
+ }
3965
+ export interface DescribeConnectorResponse {
3966
+ /**
3967
+ * <p>Configuration info of all the connectors that the user requested.</p>
3968
+ */
3969
+ connectorConfiguration?: ConnectorConfiguration;
3970
+ }
3971
+ export declare namespace DescribeConnectorResponse {
3972
+ /**
3973
+ * @internal
3974
+ */
3975
+ const filterSensitiveLog: (obj: DescribeConnectorResponse) => any;
3976
+ }
3271
3977
  export interface DescribeConnectorEntityRequest {
3272
3978
  /**
3273
3979
  * <p> The entity name for that connector. </p>
@@ -3282,6 +3988,10 @@ export interface DescribeConnectorEntityRequest {
3282
3988
  * <code>ConnectorProfile</code> in the Amazon Web Services account. </p>
3283
3989
  */
3284
3990
  connectorProfileName?: string;
3991
+ /**
3992
+ * <p>The version of the API that's used by the connector.</p>
3993
+ */
3994
+ apiVersion?: string;
3285
3995
  }
3286
3996
  export declare namespace DescribeConnectorEntityRequest {
3287
3997
  /**
@@ -3313,6 +4023,12 @@ export interface DescribeConnectorProfilesRequest {
3313
4023
  * <p> The type of connector, such as Salesforce, Amplitude, and so on. </p>
3314
4024
  */
3315
4025
  connectorType?: ConnectorType | string;
4026
+ /**
4027
+ * <p>The name of the connector. The name is unique for each <code>ConnectorRegistration</code>
4028
+ * in your Amazon Web Services account. Only needed if calling for CUSTOMCONNECTOR connector
4029
+ * type/.</p>
4030
+ */
4031
+ connectorLabel?: string;
3316
4032
  /**
3317
4033
  * <p> Specifies the maximum number of items that should be returned in the result set. The
3318
4034
  * default for <code>maxResults</code> is 20 (for all paginated API operations). </p>
@@ -3351,6 +4067,11 @@ export interface DescribeConnectorsRequest {
3351
4067
  * <p> The type of connector, such as Salesforce, Amplitude, and so on. </p>
3352
4068
  */
3353
4069
  connectorTypes?: (ConnectorType | string)[];
4070
+ /**
4071
+ * <p>The maximum number of items that should be returned in the result set. The default is
4072
+ * 20.</p>
4073
+ */
4074
+ maxResults?: number;
3354
4075
  /**
3355
4076
  * <p> The pagination token for the next page of data. </p>
3356
4077
  */
@@ -3369,6 +4090,10 @@ export interface DescribeConnectorsResponse {
3369
4090
  connectorConfigurations?: {
3370
4091
  [key: string]: ConnectorConfiguration;
3371
4092
  };
4093
+ /**
4094
+ * <p>Information about the connectors supported in Amazon AppFlow.</p>
4095
+ */
4096
+ connectors?: ConnectorDetail[];
3372
4097
  /**
3373
4098
  * <p> The pagination token for the next page of data. </p>
3374
4099
  */
@@ -3658,11 +4383,19 @@ export interface FlowDefinition {
3658
4383
  * </p>
3659
4384
  */
3660
4385
  sourceConnectorType?: ConnectorType | string;
4386
+ /**
4387
+ * <p>The label of the source connector in the flow.</p>
4388
+ */
4389
+ sourceConnectorLabel?: string;
3661
4390
  /**
3662
4391
  * <p> Specifies the destination connector type, such as Salesforce, Amazon S3, Amplitude, and
3663
4392
  * so on. </p>
3664
4393
  */
3665
4394
  destinationConnectorType?: ConnectorType | string;
4395
+ /**
4396
+ * <p>The label of the destination connector in the flow.</p>
4397
+ */
4398
+ destinationConnectorLabel?: string;
3666
4399
  /**
3667
4400
  * <p> Specifies the type of flow trigger. This can be <code>OnDemand</code>,
3668
4401
  * <code>Scheduled</code>, or <code>Event</code>. </p>
@@ -3704,8 +4437,8 @@ export declare namespace FlowDefinition {
3704
4437
  export interface ListConnectorEntitiesRequest {
3705
4438
  /**
3706
4439
  * <p> The name of the connector profile. The name is unique for each
3707
- * <code>ConnectorProfile</code> in the Amazon Web Services account, and is used to query the downstream
3708
- * connector. </p>
4440
+ * <code>ConnectorProfile</code> in the Amazon Web Services account, and is used to query the
4441
+ * downstream connector. </p>
3709
4442
  */
3710
4443
  connectorProfileName?: string;
3711
4444
  /**
@@ -3720,6 +4453,10 @@ export interface ListConnectorEntitiesRequest {
3720
4453
  * roots. Otherwise, this request returns all entities supported by the provider. </p>
3721
4454
  */
3722
4455
  entitiesPath?: string;
4456
+ /**
4457
+ * <p>The version of the API that's used by the connector.</p>
4458
+ */
4459
+ apiVersion?: string;
3723
4460
  }
3724
4461
  export declare namespace ListConnectorEntitiesRequest {
3725
4462
  /**
@@ -3743,6 +4480,40 @@ export declare namespace ListConnectorEntitiesResponse {
3743
4480
  */
3744
4481
  const filterSensitiveLog: (obj: ListConnectorEntitiesResponse) => any;
3745
4482
  }
4483
+ export interface ListConnectorsRequest {
4484
+ /**
4485
+ * <p>Specifies the maximum number of items that should be returned in the result set. The
4486
+ * default for <code>maxResults</code> is 20 (for all paginated API operations).</p>
4487
+ */
4488
+ maxResults?: number;
4489
+ /**
4490
+ * <p>The pagination token for the next page of data.</p>
4491
+ */
4492
+ nextToken?: string;
4493
+ }
4494
+ export declare namespace ListConnectorsRequest {
4495
+ /**
4496
+ * @internal
4497
+ */
4498
+ const filterSensitiveLog: (obj: ListConnectorsRequest) => any;
4499
+ }
4500
+ export interface ListConnectorsResponse {
4501
+ /**
4502
+ * <p>Contains information about the connectors supported by Amazon AppFlow.</p>
4503
+ */
4504
+ connectors?: ConnectorDetail[];
4505
+ /**
4506
+ * <p>The pagination token for the next page of data. If nextToken=null, this means that all
4507
+ * records have been fetched.</p>
4508
+ */
4509
+ nextToken?: string;
4510
+ }
4511
+ export declare namespace ListConnectorsResponse {
4512
+ /**
4513
+ * @internal
4514
+ */
4515
+ const filterSensitiveLog: (obj: ListConnectorsResponse) => any;
4516
+ }
3746
4517
  export interface ListFlowsRequest {
3747
4518
  /**
3748
4519
  * <p> Specifies the maximum number of items that should be returned in the result set. </p>
@@ -3801,6 +4572,54 @@ export declare namespace ListTagsForResourceResponse {
3801
4572
  */
3802
4573
  const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
3803
4574
  }
4575
+ export interface RegisterConnectorRequest {
4576
+ /**
4577
+ * <p> The name of the connector. The name is unique for each <code>ConnectorRegistration</code>
4578
+ * in your Amazon Web Services account.</p>
4579
+ */
4580
+ connectorLabel?: string;
4581
+ /**
4582
+ * <p>A description about the connector that's being registered.</p>
4583
+ */
4584
+ description?: string;
4585
+ /**
4586
+ * <p>The provisioning type of the connector. Currently the only supported value is LAMBDA.
4587
+ * </p>
4588
+ */
4589
+ connectorProvisioningType?: ConnectorProvisioningType | string;
4590
+ /**
4591
+ * <p>The provisioning type of the connector. Currently the only supported value is
4592
+ * LAMBDA.</p>
4593
+ */
4594
+ connectorProvisioningConfig?: ConnectorProvisioningConfig;
4595
+ }
4596
+ export declare namespace RegisterConnectorRequest {
4597
+ /**
4598
+ * @internal
4599
+ */
4600
+ const filterSensitiveLog: (obj: RegisterConnectorRequest) => any;
4601
+ }
4602
+ export interface RegisterConnectorResponse {
4603
+ /**
4604
+ * <p>The ARN of the connector being registered.</p>
4605
+ */
4606
+ connectorArn?: string;
4607
+ }
4608
+ export declare namespace RegisterConnectorResponse {
4609
+ /**
4610
+ * @internal
4611
+ */
4612
+ const filterSensitiveLog: (obj: RegisterConnectorResponse) => any;
4613
+ }
4614
+ /**
4615
+ * <p>API calls have exceeded the maximum allowed API request rate per account and per Region.
4616
+ * </p>
4617
+ */
4618
+ export interface ThrottlingException extends __SmithyException, $MetadataBearer {
4619
+ name: "ThrottlingException";
4620
+ $fault: "client";
4621
+ message?: string;
4622
+ }
3804
4623
  export interface StartFlowRequest {
3805
4624
  /**
3806
4625
  * <p> The specified name of the flow. Spaces are not allowed. Use underscores (_) or hyphens
@@ -3898,6 +4717,32 @@ export declare namespace TagResourceResponse {
3898
4717
  */
3899
4718
  const filterSensitiveLog: (obj: TagResourceResponse) => any;
3900
4719
  }
4720
+ export interface UnregisterConnectorRequest {
4721
+ /**
4722
+ * <p>The label of the connector. The label is unique for each
4723
+ * <code>ConnectorRegistration</code> in your Amazon Web Services account.</p>
4724
+ */
4725
+ connectorLabel: string | undefined;
4726
+ /**
4727
+ * <p>Indicates whether Amazon AppFlow should unregister the connector, even if it is currently
4728
+ * in use in one or more connector profiles. The default value is false.</p>
4729
+ */
4730
+ forceDelete?: boolean;
4731
+ }
4732
+ export declare namespace UnregisterConnectorRequest {
4733
+ /**
4734
+ * @internal
4735
+ */
4736
+ const filterSensitiveLog: (obj: UnregisterConnectorRequest) => any;
4737
+ }
4738
+ export interface UnregisterConnectorResponse {
4739
+ }
4740
+ export declare namespace UnregisterConnectorResponse {
4741
+ /**
4742
+ * @internal
4743
+ */
4744
+ const filterSensitiveLog: (obj: UnregisterConnectorResponse) => any;
4745
+ }
3901
4746
  export interface UntagResourceRequest {
3902
4747
  /**
3903
4748
  * <p> The Amazon Resource Name (ARN) of the flow that you want to untag. </p>