@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,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
|
/**
|
|
@@ -1078,6 +1525,10 @@ export interface ConnectorOperator {
|
|
|
1078
1525
|
* <p> The operation to be performed on the provided SAPOData source fields. </p>
|
|
1079
1526
|
*/
|
|
1080
1527
|
SAPOData?: SAPODataConnectorOperator | string;
|
|
1528
|
+
/**
|
|
1529
|
+
* <p>Operators supported by the custom connector.</p>
|
|
1530
|
+
*/
|
|
1531
|
+
CustomConnector?: Operator | string;
|
|
1081
1532
|
}
|
|
1082
1533
|
export declare namespace ConnectorOperator {
|
|
1083
1534
|
/**
|
|
@@ -1085,6 +1536,46 @@ export declare namespace ConnectorOperator {
|
|
|
1085
1536
|
*/
|
|
1086
1537
|
const filterSensitiveLog: (obj: ConnectorOperator) => any;
|
|
1087
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 {
|
|
1553
|
+
/**
|
|
1554
|
+
* @internal
|
|
1555
|
+
*/
|
|
1556
|
+
const filterSensitiveLog: (obj: OAuth2Properties) => any;
|
|
1557
|
+
}
|
|
1558
|
+
/**
|
|
1559
|
+
* <p>The profile properties required by the custom connector.</p>
|
|
1560
|
+
*/
|
|
1561
|
+
export interface CustomConnectorProfileProperties {
|
|
1562
|
+
/**
|
|
1563
|
+
* <p>A map of properties that are required to create a profile for the custom connector.</p>
|
|
1564
|
+
*/
|
|
1565
|
+
profileProperties?: {
|
|
1566
|
+
[key: string]: string;
|
|
1567
|
+
};
|
|
1568
|
+
/**
|
|
1569
|
+
* <p>The OAuth 2.0 properties required for OAuth 2.0 authentication.</p>
|
|
1570
|
+
*/
|
|
1571
|
+
oAuth2Properties?: OAuth2Properties;
|
|
1572
|
+
}
|
|
1573
|
+
export declare namespace CustomConnectorProfileProperties {
|
|
1574
|
+
/**
|
|
1575
|
+
* @internal
|
|
1576
|
+
*/
|
|
1577
|
+
const filterSensitiveLog: (obj: CustomConnectorProfileProperties) => any;
|
|
1578
|
+
}
|
|
1088
1579
|
/**
|
|
1089
1580
|
* <p> The connector-specific profile properties required by Datadog. </p>
|
|
1090
1581
|
*/
|
|
@@ -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
|
|
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
|
|
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
|
/**
|
|
@@ -1529,44 +2024,136 @@ export interface ConnectorProfile {
|
|
|
1529
2024
|
*/
|
|
1530
2025
|
connectorProfileArn?: string;
|
|
1531
2026
|
/**
|
|
1532
|
-
* <p> The name of the connector profile. The name is unique for each
|
|
1533
|
-
* <code>ConnectorProfile</code> in the Amazon Web Services account. </p>
|
|
2027
|
+
* <p> The name of the connector profile. The name is unique for each
|
|
2028
|
+
* <code>ConnectorProfile</code> in the Amazon Web Services account. </p>
|
|
2029
|
+
*/
|
|
2030
|
+
connectorProfileName?: string;
|
|
2031
|
+
/**
|
|
2032
|
+
* <p> The type of connector, such as Salesforce, Amplitude, and so on. </p>
|
|
2033
|
+
*/
|
|
2034
|
+
connectorType?: ConnectorType | string;
|
|
2035
|
+
/**
|
|
2036
|
+
* <p>The label for the connector profile being created.</p>
|
|
2037
|
+
*/
|
|
2038
|
+
connectorLabel?: string;
|
|
2039
|
+
/**
|
|
2040
|
+
* <p> Indicates the connection mode and if it is public or private. </p>
|
|
2041
|
+
*/
|
|
2042
|
+
connectionMode?: ConnectionMode | string;
|
|
2043
|
+
/**
|
|
2044
|
+
* <p> The Amazon Resource Name (ARN) of the connector profile credentials. </p>
|
|
2045
|
+
*/
|
|
2046
|
+
credentialsArn?: string;
|
|
2047
|
+
/**
|
|
2048
|
+
* <p> The connector-specific properties of the profile configuration. </p>
|
|
2049
|
+
*/
|
|
2050
|
+
connectorProfileProperties?: ConnectorProfileProperties;
|
|
2051
|
+
/**
|
|
2052
|
+
* <p> Specifies when the connector profile was created. </p>
|
|
2053
|
+
*/
|
|
2054
|
+
createdAt?: Date;
|
|
2055
|
+
/**
|
|
2056
|
+
* <p> Specifies when the connector profile was last updated. </p>
|
|
2057
|
+
*/
|
|
2058
|
+
lastUpdatedAt?: Date;
|
|
2059
|
+
/**
|
|
2060
|
+
* <p> Specifies the private connection provisioning state. </p>
|
|
2061
|
+
*/
|
|
2062
|
+
privateConnectionProvisioningState?: PrivateConnectionProvisioningState;
|
|
2063
|
+
}
|
|
2064
|
+
export declare namespace ConnectorProfile {
|
|
2065
|
+
/**
|
|
2066
|
+
* @internal
|
|
2067
|
+
*/
|
|
2068
|
+
const filterSensitiveLog: (obj: ConnectorProfile) => any;
|
|
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>
|
|
1534
2110
|
*/
|
|
1535
|
-
|
|
2111
|
+
refreshToken?: string;
|
|
1536
2112
|
/**
|
|
1537
|
-
* <p>
|
|
2113
|
+
* <p> Used by select connectors for which the OAuth workflow is supported, such as Salesforce,
|
|
2114
|
+
* Google Analytics, Marketo, Zendesk, and Slack. </p>
|
|
1538
2115
|
*/
|
|
1539
|
-
|
|
2116
|
+
oAuthRequest?: ConnectorOAuthRequest;
|
|
2117
|
+
}
|
|
2118
|
+
export declare namespace OAuth2Credentials {
|
|
1540
2119
|
/**
|
|
1541
|
-
*
|
|
2120
|
+
* @internal
|
|
1542
2121
|
*/
|
|
1543
|
-
|
|
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 {
|
|
1544
2129
|
/**
|
|
1545
|
-
* <p>
|
|
2130
|
+
* <p>The authentication type that the custom connector uses for authenticating while creating a
|
|
2131
|
+
* connector profile.</p>
|
|
1546
2132
|
*/
|
|
1547
|
-
|
|
2133
|
+
authenticationType: AuthenticationType | string | undefined;
|
|
1548
2134
|
/**
|
|
1549
|
-
* <p>
|
|
2135
|
+
* <p>The basic credentials that are required for the authentication of the user.</p>
|
|
1550
2136
|
*/
|
|
1551
|
-
|
|
2137
|
+
basic?: BasicAuthCredentials;
|
|
1552
2138
|
/**
|
|
1553
|
-
* <p>
|
|
2139
|
+
* <p>The OAuth 2.0 credentials required for the authentication of the user.</p>
|
|
1554
2140
|
*/
|
|
1555
|
-
|
|
2141
|
+
oauth2?: OAuth2Credentials;
|
|
1556
2142
|
/**
|
|
1557
|
-
* <p>
|
|
2143
|
+
* <p>The API keys required for the authentication of the user.</p>
|
|
1558
2144
|
*/
|
|
1559
|
-
|
|
2145
|
+
apiKey?: ApiKeyCredentials;
|
|
1560
2146
|
/**
|
|
1561
|
-
* <p>
|
|
2147
|
+
* <p>If the connector uses the custom authentication mechanism, this holds the required
|
|
2148
|
+
* credentials.</p>
|
|
1562
2149
|
*/
|
|
1563
|
-
|
|
2150
|
+
custom?: CustomAuthCredentials;
|
|
1564
2151
|
}
|
|
1565
|
-
export declare namespace
|
|
2152
|
+
export declare namespace CustomConnectorProfileCredentials {
|
|
1566
2153
|
/**
|
|
1567
2154
|
* @internal
|
|
1568
2155
|
*/
|
|
1569
|
-
const filterSensitiveLog: (obj:
|
|
2156
|
+
const filterSensitiveLog: (obj: CustomConnectorProfileCredentials) => any;
|
|
1570
2157
|
}
|
|
1571
2158
|
/**
|
|
1572
2159
|
* <p> The connector-specific credentials required by Datadog. </p>
|
|
@@ -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
|
|
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>
|
|
@@ -2407,6 +3043,69 @@ export declare namespace SalesforceDestinationProperties {
|
|
|
2407
3043
|
*/
|
|
2408
3044
|
const filterSensitiveLog: (obj: SalesforceDestinationProperties) => any;
|
|
2409
3045
|
}
|
|
3046
|
+
/**
|
|
3047
|
+
* <p>Determines how Amazon AppFlow handles the success response that it gets
|
|
3048
|
+
* from the connector after placing data.</p>
|
|
3049
|
+
* <p>For example, this setting would determine
|
|
3050
|
+
* where to write the response from the destination connector upon a successful insert
|
|
3051
|
+
* operation.</p>
|
|
3052
|
+
*/
|
|
3053
|
+
export interface SuccessResponseHandlingConfig {
|
|
3054
|
+
/**
|
|
3055
|
+
* <p>The Amazon S3 bucket prefix.</p>
|
|
3056
|
+
*/
|
|
3057
|
+
bucketPrefix?: string;
|
|
3058
|
+
/**
|
|
3059
|
+
* <p>The name of the Amazon S3 bucket.</p>
|
|
3060
|
+
*/
|
|
3061
|
+
bucketName?: string;
|
|
3062
|
+
}
|
|
3063
|
+
export declare namespace SuccessResponseHandlingConfig {
|
|
3064
|
+
/**
|
|
3065
|
+
* @internal
|
|
3066
|
+
*/
|
|
3067
|
+
const filterSensitiveLog: (obj: SuccessResponseHandlingConfig) => any;
|
|
3068
|
+
}
|
|
3069
|
+
/**
|
|
3070
|
+
* <p>The properties that are applied when using SAPOData as a flow destination</p>
|
|
3071
|
+
*/
|
|
3072
|
+
export interface SAPODataDestinationProperties {
|
|
3073
|
+
/**
|
|
3074
|
+
* <p>The object path specified in the SAPOData flow destination.</p>
|
|
3075
|
+
*/
|
|
3076
|
+
objectPath: string | undefined;
|
|
3077
|
+
/**
|
|
3078
|
+
* <p>Determines how Amazon AppFlow handles the success response that it gets
|
|
3079
|
+
* from the connector after placing data.</p>
|
|
3080
|
+
* <p>For example, this setting would determine where to write the response from a destination
|
|
3081
|
+
* connector upon a successful insert operation.</p>
|
|
3082
|
+
*/
|
|
3083
|
+
successResponseHandlingConfig?: SuccessResponseHandlingConfig;
|
|
3084
|
+
/**
|
|
3085
|
+
* <p> A list of field names that can be used as an ID field when performing a write operation.
|
|
3086
|
+
* </p>
|
|
3087
|
+
*/
|
|
3088
|
+
idFieldNames?: string[];
|
|
3089
|
+
/**
|
|
3090
|
+
* <p> The settings that determine how Amazon AppFlow handles an error when placing data in the
|
|
3091
|
+
* destination. For example, this setting would determine if the flow should fail after one
|
|
3092
|
+
* insertion error, or continue and attempt to insert every record regardless of the initial
|
|
3093
|
+
* failure. <code>ErrorHandlingConfig</code> is a part of the destination connector details.
|
|
3094
|
+
* </p>
|
|
3095
|
+
*/
|
|
3096
|
+
errorHandlingConfig?: ErrorHandlingConfig;
|
|
3097
|
+
/**
|
|
3098
|
+
* <p> The possible write operations in the destination connector. When this value is not
|
|
3099
|
+
* provided, this defaults to the <code>INSERT</code> operation. </p>
|
|
3100
|
+
*/
|
|
3101
|
+
writeOperationType?: WriteOperationType | string;
|
|
3102
|
+
}
|
|
3103
|
+
export declare namespace SAPODataDestinationProperties {
|
|
3104
|
+
/**
|
|
3105
|
+
* @internal
|
|
3106
|
+
*/
|
|
3107
|
+
const filterSensitiveLog: (obj: SAPODataDestinationProperties) => any;
|
|
3108
|
+
}
|
|
2410
3109
|
/**
|
|
2411
3110
|
* <p> The properties that are applied when Snowflake is being used as a destination. </p>
|
|
2412
3111
|
*/
|
|
@@ -2569,6 +3268,14 @@ export interface DestinationConnectorProperties {
|
|
|
2569
3268
|
* <p>The properties required to query Zendesk.</p>
|
|
2570
3269
|
*/
|
|
2571
3270
|
Zendesk?: ZendeskDestinationProperties;
|
|
3271
|
+
/**
|
|
3272
|
+
* <p>The properties that are required to query the custom Connector.</p>
|
|
3273
|
+
*/
|
|
3274
|
+
CustomConnector?: CustomConnectorDestinationProperties;
|
|
3275
|
+
/**
|
|
3276
|
+
* <p>The properties required to query SAPOData.</p>
|
|
3277
|
+
*/
|
|
3278
|
+
SAPOData?: SAPODataDestinationProperties;
|
|
2572
3279
|
}
|
|
2573
3280
|
export declare namespace DestinationConnectorProperties {
|
|
2574
3281
|
/**
|
|
@@ -2585,6 +3292,10 @@ export interface DestinationFlowConfig {
|
|
|
2585
3292
|
* <p> The type of connector, such as Salesforce, Amplitude, and so on. </p>
|
|
2586
3293
|
*/
|
|
2587
3294
|
connectorType: ConnectorType | string | undefined;
|
|
3295
|
+
/**
|
|
3296
|
+
* <p>The API version that the destination connector uses.</p>
|
|
3297
|
+
*/
|
|
3298
|
+
apiVersion?: string;
|
|
2588
3299
|
/**
|
|
2589
3300
|
* <p> The name of the connector profile. This name must be unique for each connector profile in
|
|
2590
3301
|
* the Amazon Web Services account. </p>
|
|
@@ -2618,6 +3329,28 @@ export declare namespace IncrementalPullConfig {
|
|
|
2618
3329
|
*/
|
|
2619
3330
|
const filterSensitiveLog: (obj: IncrementalPullConfig) => any;
|
|
2620
3331
|
}
|
|
3332
|
+
/**
|
|
3333
|
+
* <p>The properties that are applied when the custom connector is being used as a
|
|
3334
|
+
* source.</p>
|
|
3335
|
+
*/
|
|
3336
|
+
export interface CustomConnectorSourceProperties {
|
|
3337
|
+
/**
|
|
3338
|
+
* <p>The entity specified in the custom connector as a source in the flow.</p>
|
|
3339
|
+
*/
|
|
3340
|
+
entityName: string | undefined;
|
|
3341
|
+
/**
|
|
3342
|
+
* <p>Custom properties that are required to use the custom connector as a source.</p>
|
|
3343
|
+
*/
|
|
3344
|
+
customProperties?: {
|
|
3345
|
+
[key: string]: string;
|
|
3346
|
+
};
|
|
3347
|
+
}
|
|
3348
|
+
export declare namespace CustomConnectorSourceProperties {
|
|
3349
|
+
/**
|
|
3350
|
+
* @internal
|
|
3351
|
+
*/
|
|
3352
|
+
const filterSensitiveLog: (obj: CustomConnectorSourceProperties) => any;
|
|
3353
|
+
}
|
|
2621
3354
|
/**
|
|
2622
3355
|
* <p> The properties that are applied when Datadog is being used as a source. </p>
|
|
2623
3356
|
*/
|
|
@@ -2944,6 +3677,11 @@ export interface SourceConnectorProperties {
|
|
|
2944
3677
|
* <p> The properties that are applied when using SAPOData as a flow source. </p>
|
|
2945
3678
|
*/
|
|
2946
3679
|
SAPOData?: SAPODataSourceProperties;
|
|
3680
|
+
/**
|
|
3681
|
+
* <p>The properties that are applied when the custom connector is being used as a
|
|
3682
|
+
* source.</p>
|
|
3683
|
+
*/
|
|
3684
|
+
CustomConnector?: CustomConnectorSourceProperties;
|
|
2947
3685
|
}
|
|
2948
3686
|
export declare namespace SourceConnectorProperties {
|
|
2949
3687
|
/**
|
|
@@ -2960,6 +3698,10 @@ export interface SourceFlowConfig {
|
|
|
2960
3698
|
* <p> The type of connector, such as Salesforce, Amplitude, and so on. </p>
|
|
2961
3699
|
*/
|
|
2962
3700
|
connectorType: ConnectorType | string | undefined;
|
|
3701
|
+
/**
|
|
3702
|
+
* <p>The API version of the connector when it's used as a source in the flow.</p>
|
|
3703
|
+
*/
|
|
3704
|
+
apiVersion?: string;
|
|
2963
3705
|
/**
|
|
2964
3706
|
* <p> The name of the connector profile. This name must be unique for each connector profile in
|
|
2965
3707
|
* the Amazon Web Services account. </p>
|
|
@@ -3007,6 +3749,7 @@ export declare enum TaskType {
|
|
|
3007
3749
|
MAP_ALL = "Map_all",
|
|
3008
3750
|
MASK = "Mask",
|
|
3009
3751
|
MERGE = "Merge",
|
|
3752
|
+
PASSTHROUGH = "Passthrough",
|
|
3010
3753
|
TRUNCATE = "Truncate",
|
|
3011
3754
|
VALIDATE = "Validate"
|
|
3012
3755
|
}
|
|
@@ -3268,6 +4011,37 @@ export declare namespace DeleteFlowResponse {
|
|
|
3268
4011
|
*/
|
|
3269
4012
|
const filterSensitiveLog: (obj: DeleteFlowResponse) => any;
|
|
3270
4013
|
}
|
|
4014
|
+
export interface DescribeConnectorRequest {
|
|
4015
|
+
/**
|
|
4016
|
+
* <p>The connector type, such as CUSTOMCONNECTOR, Saleforce, Marketo. Please choose
|
|
4017
|
+
* CUSTOMCONNECTOR for Lambda based custom connectors.</p>
|
|
4018
|
+
*/
|
|
4019
|
+
connectorType: ConnectorType | string | undefined;
|
|
4020
|
+
/**
|
|
4021
|
+
* <p>The label of the connector. The label is unique for each
|
|
4022
|
+
* <code>ConnectorRegistration</code> in your Amazon Web Services account. Only needed if
|
|
4023
|
+
* calling for CUSTOMCONNECTOR connector type/.</p>
|
|
4024
|
+
*/
|
|
4025
|
+
connectorLabel?: string;
|
|
4026
|
+
}
|
|
4027
|
+
export declare namespace DescribeConnectorRequest {
|
|
4028
|
+
/**
|
|
4029
|
+
* @internal
|
|
4030
|
+
*/
|
|
4031
|
+
const filterSensitiveLog: (obj: DescribeConnectorRequest) => any;
|
|
4032
|
+
}
|
|
4033
|
+
export interface DescribeConnectorResponse {
|
|
4034
|
+
/**
|
|
4035
|
+
* <p>Configuration info of all the connectors that the user requested.</p>
|
|
4036
|
+
*/
|
|
4037
|
+
connectorConfiguration?: ConnectorConfiguration;
|
|
4038
|
+
}
|
|
4039
|
+
export declare namespace DescribeConnectorResponse {
|
|
4040
|
+
/**
|
|
4041
|
+
* @internal
|
|
4042
|
+
*/
|
|
4043
|
+
const filterSensitiveLog: (obj: DescribeConnectorResponse) => any;
|
|
4044
|
+
}
|
|
3271
4045
|
export interface DescribeConnectorEntityRequest {
|
|
3272
4046
|
/**
|
|
3273
4047
|
* <p> The entity name for that connector. </p>
|
|
@@ -3282,6 +4056,10 @@ export interface DescribeConnectorEntityRequest {
|
|
|
3282
4056
|
* <code>ConnectorProfile</code> in the Amazon Web Services account. </p>
|
|
3283
4057
|
*/
|
|
3284
4058
|
connectorProfileName?: string;
|
|
4059
|
+
/**
|
|
4060
|
+
* <p>The version of the API that's used by the connector.</p>
|
|
4061
|
+
*/
|
|
4062
|
+
apiVersion?: string;
|
|
3285
4063
|
}
|
|
3286
4064
|
export declare namespace DescribeConnectorEntityRequest {
|
|
3287
4065
|
/**
|
|
@@ -3313,6 +4091,12 @@ export interface DescribeConnectorProfilesRequest {
|
|
|
3313
4091
|
* <p> The type of connector, such as Salesforce, Amplitude, and so on. </p>
|
|
3314
4092
|
*/
|
|
3315
4093
|
connectorType?: ConnectorType | string;
|
|
4094
|
+
/**
|
|
4095
|
+
* <p>The name of the connector. The name is unique for each <code>ConnectorRegistration</code>
|
|
4096
|
+
* in your Amazon Web Services account. Only needed if calling for CUSTOMCONNECTOR connector
|
|
4097
|
+
* type/.</p>
|
|
4098
|
+
*/
|
|
4099
|
+
connectorLabel?: string;
|
|
3316
4100
|
/**
|
|
3317
4101
|
* <p> Specifies the maximum number of items that should be returned in the result set. The
|
|
3318
4102
|
* default for <code>maxResults</code> is 20 (for all paginated API operations). </p>
|
|
@@ -3351,6 +4135,11 @@ export interface DescribeConnectorsRequest {
|
|
|
3351
4135
|
* <p> The type of connector, such as Salesforce, Amplitude, and so on. </p>
|
|
3352
4136
|
*/
|
|
3353
4137
|
connectorTypes?: (ConnectorType | string)[];
|
|
4138
|
+
/**
|
|
4139
|
+
* <p>The maximum number of items that should be returned in the result set. The default is
|
|
4140
|
+
* 20.</p>
|
|
4141
|
+
*/
|
|
4142
|
+
maxResults?: number;
|
|
3354
4143
|
/**
|
|
3355
4144
|
* <p> The pagination token for the next page of data. </p>
|
|
3356
4145
|
*/
|
|
@@ -3369,6 +4158,10 @@ export interface DescribeConnectorsResponse {
|
|
|
3369
4158
|
connectorConfigurations?: {
|
|
3370
4159
|
[key: string]: ConnectorConfiguration;
|
|
3371
4160
|
};
|
|
4161
|
+
/**
|
|
4162
|
+
* <p>Information about the connectors supported in Amazon AppFlow.</p>
|
|
4163
|
+
*/
|
|
4164
|
+
connectors?: ConnectorDetail[];
|
|
3372
4165
|
/**
|
|
3373
4166
|
* <p> The pagination token for the next page of data. </p>
|
|
3374
4167
|
*/
|
|
@@ -3658,11 +4451,19 @@ export interface FlowDefinition {
|
|
|
3658
4451
|
* </p>
|
|
3659
4452
|
*/
|
|
3660
4453
|
sourceConnectorType?: ConnectorType | string;
|
|
4454
|
+
/**
|
|
4455
|
+
* <p>The label of the source connector in the flow.</p>
|
|
4456
|
+
*/
|
|
4457
|
+
sourceConnectorLabel?: string;
|
|
3661
4458
|
/**
|
|
3662
4459
|
* <p> Specifies the destination connector type, such as Salesforce, Amazon S3, Amplitude, and
|
|
3663
4460
|
* so on. </p>
|
|
3664
4461
|
*/
|
|
3665
4462
|
destinationConnectorType?: ConnectorType | string;
|
|
4463
|
+
/**
|
|
4464
|
+
* <p>The label of the destination connector in the flow.</p>
|
|
4465
|
+
*/
|
|
4466
|
+
destinationConnectorLabel?: string;
|
|
3666
4467
|
/**
|
|
3667
4468
|
* <p> Specifies the type of flow trigger. This can be <code>OnDemand</code>,
|
|
3668
4469
|
* <code>Scheduled</code>, or <code>Event</code>. </p>
|
|
@@ -3704,8 +4505,8 @@ export declare namespace FlowDefinition {
|
|
|
3704
4505
|
export interface ListConnectorEntitiesRequest {
|
|
3705
4506
|
/**
|
|
3706
4507
|
* <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
|
|
3708
|
-
* connector. </p>
|
|
4508
|
+
* <code>ConnectorProfile</code> in the Amazon Web Services account, and is used to query the
|
|
4509
|
+
* downstream connector. </p>
|
|
3709
4510
|
*/
|
|
3710
4511
|
connectorProfileName?: string;
|
|
3711
4512
|
/**
|
|
@@ -3720,6 +4521,10 @@ export interface ListConnectorEntitiesRequest {
|
|
|
3720
4521
|
* roots. Otherwise, this request returns all entities supported by the provider. </p>
|
|
3721
4522
|
*/
|
|
3722
4523
|
entitiesPath?: string;
|
|
4524
|
+
/**
|
|
4525
|
+
* <p>The version of the API that's used by the connector.</p>
|
|
4526
|
+
*/
|
|
4527
|
+
apiVersion?: string;
|
|
3723
4528
|
}
|
|
3724
4529
|
export declare namespace ListConnectorEntitiesRequest {
|
|
3725
4530
|
/**
|
|
@@ -3743,6 +4548,40 @@ export declare namespace ListConnectorEntitiesResponse {
|
|
|
3743
4548
|
*/
|
|
3744
4549
|
const filterSensitiveLog: (obj: ListConnectorEntitiesResponse) => any;
|
|
3745
4550
|
}
|
|
4551
|
+
export interface ListConnectorsRequest {
|
|
4552
|
+
/**
|
|
4553
|
+
* <p>Specifies the maximum number of items that should be returned in the result set. The
|
|
4554
|
+
* default for <code>maxResults</code> is 20 (for all paginated API operations).</p>
|
|
4555
|
+
*/
|
|
4556
|
+
maxResults?: number;
|
|
4557
|
+
/**
|
|
4558
|
+
* <p>The pagination token for the next page of data.</p>
|
|
4559
|
+
*/
|
|
4560
|
+
nextToken?: string;
|
|
4561
|
+
}
|
|
4562
|
+
export declare namespace ListConnectorsRequest {
|
|
4563
|
+
/**
|
|
4564
|
+
* @internal
|
|
4565
|
+
*/
|
|
4566
|
+
const filterSensitiveLog: (obj: ListConnectorsRequest) => any;
|
|
4567
|
+
}
|
|
4568
|
+
export interface ListConnectorsResponse {
|
|
4569
|
+
/**
|
|
4570
|
+
* <p>Contains information about the connectors supported by Amazon AppFlow.</p>
|
|
4571
|
+
*/
|
|
4572
|
+
connectors?: ConnectorDetail[];
|
|
4573
|
+
/**
|
|
4574
|
+
* <p>The pagination token for the next page of data. If nextToken=null, this means that all
|
|
4575
|
+
* records have been fetched.</p>
|
|
4576
|
+
*/
|
|
4577
|
+
nextToken?: string;
|
|
4578
|
+
}
|
|
4579
|
+
export declare namespace ListConnectorsResponse {
|
|
4580
|
+
/**
|
|
4581
|
+
* @internal
|
|
4582
|
+
*/
|
|
4583
|
+
const filterSensitiveLog: (obj: ListConnectorsResponse) => any;
|
|
4584
|
+
}
|
|
3746
4585
|
export interface ListFlowsRequest {
|
|
3747
4586
|
/**
|
|
3748
4587
|
* <p> Specifies the maximum number of items that should be returned in the result set. </p>
|
|
@@ -3801,6 +4640,54 @@ export declare namespace ListTagsForResourceResponse {
|
|
|
3801
4640
|
*/
|
|
3802
4641
|
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
3803
4642
|
}
|
|
4643
|
+
export interface RegisterConnectorRequest {
|
|
4644
|
+
/**
|
|
4645
|
+
* <p> The name of the connector. The name is unique for each <code>ConnectorRegistration</code>
|
|
4646
|
+
* in your Amazon Web Services account.</p>
|
|
4647
|
+
*/
|
|
4648
|
+
connectorLabel?: string;
|
|
4649
|
+
/**
|
|
4650
|
+
* <p>A description about the connector that's being registered.</p>
|
|
4651
|
+
*/
|
|
4652
|
+
description?: string;
|
|
4653
|
+
/**
|
|
4654
|
+
* <p>The provisioning type of the connector. Currently the only supported value is LAMBDA.
|
|
4655
|
+
* </p>
|
|
4656
|
+
*/
|
|
4657
|
+
connectorProvisioningType?: ConnectorProvisioningType | string;
|
|
4658
|
+
/**
|
|
4659
|
+
* <p>The provisioning type of the connector. Currently the only supported value is
|
|
4660
|
+
* LAMBDA.</p>
|
|
4661
|
+
*/
|
|
4662
|
+
connectorProvisioningConfig?: ConnectorProvisioningConfig;
|
|
4663
|
+
}
|
|
4664
|
+
export declare namespace RegisterConnectorRequest {
|
|
4665
|
+
/**
|
|
4666
|
+
* @internal
|
|
4667
|
+
*/
|
|
4668
|
+
const filterSensitiveLog: (obj: RegisterConnectorRequest) => any;
|
|
4669
|
+
}
|
|
4670
|
+
export interface RegisterConnectorResponse {
|
|
4671
|
+
/**
|
|
4672
|
+
* <p>The ARN of the connector being registered.</p>
|
|
4673
|
+
*/
|
|
4674
|
+
connectorArn?: string;
|
|
4675
|
+
}
|
|
4676
|
+
export declare namespace RegisterConnectorResponse {
|
|
4677
|
+
/**
|
|
4678
|
+
* @internal
|
|
4679
|
+
*/
|
|
4680
|
+
const filterSensitiveLog: (obj: RegisterConnectorResponse) => any;
|
|
4681
|
+
}
|
|
4682
|
+
/**
|
|
4683
|
+
* <p>API calls have exceeded the maximum allowed API request rate per account and per Region.
|
|
4684
|
+
* </p>
|
|
4685
|
+
*/
|
|
4686
|
+
export interface ThrottlingException extends __SmithyException, $MetadataBearer {
|
|
4687
|
+
name: "ThrottlingException";
|
|
4688
|
+
$fault: "client";
|
|
4689
|
+
message?: string;
|
|
4690
|
+
}
|
|
3804
4691
|
export interface StartFlowRequest {
|
|
3805
4692
|
/**
|
|
3806
4693
|
* <p> The specified name of the flow. Spaces are not allowed. Use underscores (_) or hyphens
|
|
@@ -3898,6 +4785,32 @@ export declare namespace TagResourceResponse {
|
|
|
3898
4785
|
*/
|
|
3899
4786
|
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
3900
4787
|
}
|
|
4788
|
+
export interface UnregisterConnectorRequest {
|
|
4789
|
+
/**
|
|
4790
|
+
* <p>The label of the connector. The label is unique for each
|
|
4791
|
+
* <code>ConnectorRegistration</code> in your Amazon Web Services account.</p>
|
|
4792
|
+
*/
|
|
4793
|
+
connectorLabel: string | undefined;
|
|
4794
|
+
/**
|
|
4795
|
+
* <p>Indicates whether Amazon AppFlow should unregister the connector, even if it is currently
|
|
4796
|
+
* in use in one or more connector profiles. The default value is false.</p>
|
|
4797
|
+
*/
|
|
4798
|
+
forceDelete?: boolean;
|
|
4799
|
+
}
|
|
4800
|
+
export declare namespace UnregisterConnectorRequest {
|
|
4801
|
+
/**
|
|
4802
|
+
* @internal
|
|
4803
|
+
*/
|
|
4804
|
+
const filterSensitiveLog: (obj: UnregisterConnectorRequest) => any;
|
|
4805
|
+
}
|
|
4806
|
+
export interface UnregisterConnectorResponse {
|
|
4807
|
+
}
|
|
4808
|
+
export declare namespace UnregisterConnectorResponse {
|
|
4809
|
+
/**
|
|
4810
|
+
* @internal
|
|
4811
|
+
*/
|
|
4812
|
+
const filterSensitiveLog: (obj: UnregisterConnectorResponse) => any;
|
|
4813
|
+
}
|
|
3901
4814
|
export interface UntagResourceRequest {
|
|
3902
4815
|
/**
|
|
3903
4816
|
* <p> The Amazon Resource Name (ARN) of the flow that you want to untag. </p>
|