@aws-sdk/client-appflow 3.51.0 → 3.54.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 +33 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/AppflowServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +155 -5
- package/dist-cjs/protocols/Aws_restJson1.js +370 -829
- package/dist-es/index.js +1 -0
- package/dist-es/models/AppflowServiceException.js +12 -0
- package/dist-es/models/models_0.js +135 -1
- package/dist-es/protocols/Aws_restJson1.js +600 -930
- package/dist-types/AppflowClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/AppflowServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +167 -41
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/AppflowClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/AppflowServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +96 -41
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { CreateConnectorProfileCommandInput, CreateConnectorProfileCommandOutput } from "./commands/CreateConnectorProfileCommand";
|
|
10
10
|
import { CreateFlowCommandInput, CreateFlowCommandOutput } from "./commands/CreateFlowCommand";
|
|
11
11
|
import { DeleteConnectorProfileCommandInput, DeleteConnectorProfileCommandOutput } from "./commands/DeleteConnectorProfileCommand";
|
|
@@ -50,7 +50,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
50
50
|
* A function that can calculate the length of a request body.
|
|
51
51
|
* @internal
|
|
52
52
|
*/
|
|
53
|
-
bodyLengthChecker?:
|
|
53
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
54
54
|
/**
|
|
55
55
|
* A function that converts a stream into an array of bytes.
|
|
56
56
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from Appflow service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class AppflowServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,11 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { AppflowServiceException as __BaseException } from "./AppflowServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>AppFlow/Requester has invalid or missing permissions.</p>
|
|
4
5
|
*/
|
|
5
|
-
export
|
|
6
|
-
name: "AccessDeniedException";
|
|
7
|
-
$fault: "client";
|
|
8
|
-
|
|
6
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
7
|
+
readonly name: "AccessDeniedException";
|
|
8
|
+
readonly $fault: "client";
|
|
9
|
+
/**
|
|
10
|
+
* @internal
|
|
11
|
+
*/
|
|
12
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
9
13
|
}
|
|
10
14
|
export declare enum AggregationType {
|
|
11
15
|
NONE = "None",
|
|
@@ -257,10 +261,13 @@ export declare namespace BasicAuthCredentials {
|
|
|
257
261
|
* <p> There was a conflict when processing the request (for example, a flow with the given name
|
|
258
262
|
* already exists within the account. Check for conflicting resource names and try again. </p>
|
|
259
263
|
*/
|
|
260
|
-
export
|
|
261
|
-
name: "ConflictException";
|
|
262
|
-
$fault: "client";
|
|
263
|
-
|
|
264
|
+
export declare class ConflictException extends __BaseException {
|
|
265
|
+
readonly name: "ConflictException";
|
|
266
|
+
readonly $fault: "client";
|
|
267
|
+
/**
|
|
268
|
+
* @internal
|
|
269
|
+
*/
|
|
270
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
264
271
|
}
|
|
265
272
|
export declare enum ConnectionMode {
|
|
266
273
|
PRIVATE = "Private",
|
|
@@ -269,10 +276,13 @@ export declare enum ConnectionMode {
|
|
|
269
276
|
/**
|
|
270
277
|
* <p> An error occurred when authenticating with the connector endpoint. </p>
|
|
271
278
|
*/
|
|
272
|
-
export
|
|
273
|
-
name: "ConnectorAuthenticationException";
|
|
274
|
-
$fault: "client";
|
|
275
|
-
|
|
279
|
+
export declare class ConnectorAuthenticationException extends __BaseException {
|
|
280
|
+
readonly name: "ConnectorAuthenticationException";
|
|
281
|
+
readonly $fault: "client";
|
|
282
|
+
/**
|
|
283
|
+
* @internal
|
|
284
|
+
*/
|
|
285
|
+
constructor(opts: __ExceptionOptionType<ConnectorAuthenticationException, __BaseException>);
|
|
276
286
|
}
|
|
277
287
|
/**
|
|
278
288
|
* <p> The connector metadata specific to Amazon Connect Customer Profiles. </p>
|
|
@@ -2659,10 +2669,13 @@ export declare namespace ConnectorProfileConfig {
|
|
|
2659
2669
|
/**
|
|
2660
2670
|
* <p> An error occurred when retrieving data from the connector endpoint. </p>
|
|
2661
2671
|
*/
|
|
2662
|
-
export
|
|
2663
|
-
name: "ConnectorServerException";
|
|
2664
|
-
$fault: "client";
|
|
2665
|
-
|
|
2672
|
+
export declare class ConnectorServerException extends __BaseException {
|
|
2673
|
+
readonly name: "ConnectorServerException";
|
|
2674
|
+
readonly $fault: "client";
|
|
2675
|
+
/**
|
|
2676
|
+
* @internal
|
|
2677
|
+
*/
|
|
2678
|
+
constructor(opts: __ExceptionOptionType<ConnectorServerException, __BaseException>);
|
|
2666
2679
|
}
|
|
2667
2680
|
export interface CreateConnectorProfileRequest {
|
|
2668
2681
|
/**
|
|
@@ -2720,27 +2733,36 @@ export declare namespace CreateConnectorProfileResponse {
|
|
|
2720
2733
|
* <p> An internal service error occurred during the processing of your request. Try again
|
|
2721
2734
|
* later. </p>
|
|
2722
2735
|
*/
|
|
2723
|
-
export
|
|
2724
|
-
name: "InternalServerException";
|
|
2725
|
-
$fault: "server";
|
|
2726
|
-
|
|
2736
|
+
export declare class InternalServerException extends __BaseException {
|
|
2737
|
+
readonly name: "InternalServerException";
|
|
2738
|
+
readonly $fault: "server";
|
|
2739
|
+
/**
|
|
2740
|
+
* @internal
|
|
2741
|
+
*/
|
|
2742
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
2727
2743
|
}
|
|
2728
2744
|
/**
|
|
2729
2745
|
* <p> The request would cause a service quota (such as the number of flows) to be exceeded.
|
|
2730
2746
|
* </p>
|
|
2731
2747
|
*/
|
|
2732
|
-
export
|
|
2733
|
-
name: "ServiceQuotaExceededException";
|
|
2734
|
-
$fault: "client";
|
|
2735
|
-
|
|
2748
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
2749
|
+
readonly name: "ServiceQuotaExceededException";
|
|
2750
|
+
readonly $fault: "client";
|
|
2751
|
+
/**
|
|
2752
|
+
* @internal
|
|
2753
|
+
*/
|
|
2754
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
2736
2755
|
}
|
|
2737
2756
|
/**
|
|
2738
2757
|
* <p> The request has invalid or missing parameters. </p>
|
|
2739
2758
|
*/
|
|
2740
|
-
export
|
|
2741
|
-
name: "ValidationException";
|
|
2742
|
-
$fault: "client";
|
|
2743
|
-
|
|
2759
|
+
export declare class ValidationException extends __BaseException {
|
|
2760
|
+
readonly name: "ValidationException";
|
|
2761
|
+
readonly $fault: "client";
|
|
2762
|
+
/**
|
|
2763
|
+
* @internal
|
|
2764
|
+
*/
|
|
2765
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
2744
2766
|
}
|
|
2745
2767
|
/**
|
|
2746
2768
|
* <p> The settings that determine how Amazon AppFlow handles an error when placing data in the
|
|
@@ -2887,6 +2909,29 @@ export declare namespace LookoutMetricsDestinationProperties {
|
|
|
2887
2909
|
*/
|
|
2888
2910
|
const filterSensitiveLog: (obj: LookoutMetricsDestinationProperties) => any;
|
|
2889
2911
|
}
|
|
2912
|
+
/**
|
|
2913
|
+
* <p>The properties that Amazon AppFlow applies when you use Marketo as a flow destination.</p>
|
|
2914
|
+
*/
|
|
2915
|
+
export interface MarketoDestinationProperties {
|
|
2916
|
+
/**
|
|
2917
|
+
* <p>The object specified in the Marketo flow destination.</p>
|
|
2918
|
+
*/
|
|
2919
|
+
object: string | undefined;
|
|
2920
|
+
/**
|
|
2921
|
+
* <p> The settings that determine how Amazon AppFlow handles an error when placing data in the
|
|
2922
|
+
* destination. For example, this setting would determine if the flow should fail after one
|
|
2923
|
+
* insertion error, or continue and attempt to insert every record regardless of the initial
|
|
2924
|
+
* failure. <code>ErrorHandlingConfig</code> is a part of the destination connector details.
|
|
2925
|
+
* </p>
|
|
2926
|
+
*/
|
|
2927
|
+
errorHandlingConfig?: ErrorHandlingConfig;
|
|
2928
|
+
}
|
|
2929
|
+
export declare namespace MarketoDestinationProperties {
|
|
2930
|
+
/**
|
|
2931
|
+
* @internal
|
|
2932
|
+
*/
|
|
2933
|
+
const filterSensitiveLog: (obj: MarketoDestinationProperties) => any;
|
|
2934
|
+
}
|
|
2890
2935
|
/**
|
|
2891
2936
|
* <p> The properties that are applied when Amazon Redshift is being used as a destination.
|
|
2892
2937
|
* </p>
|
|
@@ -3043,6 +3088,69 @@ export declare namespace SalesforceDestinationProperties {
|
|
|
3043
3088
|
*/
|
|
3044
3089
|
const filterSensitiveLog: (obj: SalesforceDestinationProperties) => any;
|
|
3045
3090
|
}
|
|
3091
|
+
/**
|
|
3092
|
+
* <p>Determines how Amazon AppFlow handles the success response that it gets
|
|
3093
|
+
* from the connector after placing data.</p>
|
|
3094
|
+
* <p>For example, this setting would determine
|
|
3095
|
+
* where to write the response from the destination connector upon a successful insert
|
|
3096
|
+
* operation.</p>
|
|
3097
|
+
*/
|
|
3098
|
+
export interface SuccessResponseHandlingConfig {
|
|
3099
|
+
/**
|
|
3100
|
+
* <p>The Amazon S3 bucket prefix.</p>
|
|
3101
|
+
*/
|
|
3102
|
+
bucketPrefix?: string;
|
|
3103
|
+
/**
|
|
3104
|
+
* <p>The name of the Amazon S3 bucket.</p>
|
|
3105
|
+
*/
|
|
3106
|
+
bucketName?: string;
|
|
3107
|
+
}
|
|
3108
|
+
export declare namespace SuccessResponseHandlingConfig {
|
|
3109
|
+
/**
|
|
3110
|
+
* @internal
|
|
3111
|
+
*/
|
|
3112
|
+
const filterSensitiveLog: (obj: SuccessResponseHandlingConfig) => any;
|
|
3113
|
+
}
|
|
3114
|
+
/**
|
|
3115
|
+
* <p>The properties that are applied when using SAPOData as a flow destination</p>
|
|
3116
|
+
*/
|
|
3117
|
+
export interface SAPODataDestinationProperties {
|
|
3118
|
+
/**
|
|
3119
|
+
* <p>The object path specified in the SAPOData flow destination.</p>
|
|
3120
|
+
*/
|
|
3121
|
+
objectPath: string | undefined;
|
|
3122
|
+
/**
|
|
3123
|
+
* <p>Determines how Amazon AppFlow handles the success response that it gets
|
|
3124
|
+
* from the connector after placing data.</p>
|
|
3125
|
+
* <p>For example, this setting would determine where to write the response from a destination
|
|
3126
|
+
* connector upon a successful insert operation.</p>
|
|
3127
|
+
*/
|
|
3128
|
+
successResponseHandlingConfig?: SuccessResponseHandlingConfig;
|
|
3129
|
+
/**
|
|
3130
|
+
* <p> A list of field names that can be used as an ID field when performing a write operation.
|
|
3131
|
+
* </p>
|
|
3132
|
+
*/
|
|
3133
|
+
idFieldNames?: string[];
|
|
3134
|
+
/**
|
|
3135
|
+
* <p> The settings that determine how Amazon AppFlow handles an error when placing data in the
|
|
3136
|
+
* destination. For example, this setting would determine if the flow should fail after one
|
|
3137
|
+
* insertion error, or continue and attempt to insert every record regardless of the initial
|
|
3138
|
+
* failure. <code>ErrorHandlingConfig</code> is a part of the destination connector details.
|
|
3139
|
+
* </p>
|
|
3140
|
+
*/
|
|
3141
|
+
errorHandlingConfig?: ErrorHandlingConfig;
|
|
3142
|
+
/**
|
|
3143
|
+
* <p> The possible write operations in the destination connector. When this value is not
|
|
3144
|
+
* provided, this defaults to the <code>INSERT</code> operation. </p>
|
|
3145
|
+
*/
|
|
3146
|
+
writeOperationType?: WriteOperationType | string;
|
|
3147
|
+
}
|
|
3148
|
+
export declare namespace SAPODataDestinationProperties {
|
|
3149
|
+
/**
|
|
3150
|
+
* @internal
|
|
3151
|
+
*/
|
|
3152
|
+
const filterSensitiveLog: (obj: SAPODataDestinationProperties) => any;
|
|
3153
|
+
}
|
|
3046
3154
|
/**
|
|
3047
3155
|
* <p> The properties that are applied when Snowflake is being used as a destination. </p>
|
|
3048
3156
|
*/
|
|
@@ -3205,10 +3313,18 @@ export interface DestinationConnectorProperties {
|
|
|
3205
3313
|
* <p>The properties required to query Zendesk.</p>
|
|
3206
3314
|
*/
|
|
3207
3315
|
Zendesk?: ZendeskDestinationProperties;
|
|
3316
|
+
/**
|
|
3317
|
+
* <p>The properties required to query Marketo.</p>
|
|
3318
|
+
*/
|
|
3319
|
+
Marketo?: MarketoDestinationProperties;
|
|
3208
3320
|
/**
|
|
3209
3321
|
* <p>The properties that are required to query the custom Connector.</p>
|
|
3210
3322
|
*/
|
|
3211
3323
|
CustomConnector?: CustomConnectorDestinationProperties;
|
|
3324
|
+
/**
|
|
3325
|
+
* <p>The properties required to query SAPOData.</p>
|
|
3326
|
+
*/
|
|
3327
|
+
SAPOData?: SAPODataDestinationProperties;
|
|
3212
3328
|
}
|
|
3213
3329
|
export declare namespace DestinationConnectorProperties {
|
|
3214
3330
|
/**
|
|
@@ -3682,6 +3798,7 @@ export declare enum TaskType {
|
|
|
3682
3798
|
MAP_ALL = "Map_all",
|
|
3683
3799
|
MASK = "Mask",
|
|
3684
3800
|
MERGE = "Merge",
|
|
3801
|
+
PASSTHROUGH = "Passthrough",
|
|
3685
3802
|
TRUNCATE = "Truncate",
|
|
3686
3803
|
VALIDATE = "Validate"
|
|
3687
3804
|
}
|
|
@@ -3886,10 +4003,13 @@ export declare namespace CreateFlowResponse {
|
|
|
3886
4003
|
* <p> The resource specified in the request (such as the source or destination connector
|
|
3887
4004
|
* profile) is not found. </p>
|
|
3888
4005
|
*/
|
|
3889
|
-
export
|
|
3890
|
-
name: "ResourceNotFoundException";
|
|
3891
|
-
$fault: "client";
|
|
3892
|
-
|
|
4006
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
4007
|
+
readonly name: "ResourceNotFoundException";
|
|
4008
|
+
readonly $fault: "client";
|
|
4009
|
+
/**
|
|
4010
|
+
* @internal
|
|
4011
|
+
*/
|
|
4012
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
3893
4013
|
}
|
|
3894
4014
|
export interface DeleteConnectorProfileRequest {
|
|
3895
4015
|
/**
|
|
@@ -4615,10 +4735,13 @@ export declare namespace RegisterConnectorResponse {
|
|
|
4615
4735
|
* <p>API calls have exceeded the maximum allowed API request rate per account and per Region.
|
|
4616
4736
|
* </p>
|
|
4617
4737
|
*/
|
|
4618
|
-
export
|
|
4619
|
-
name: "ThrottlingException";
|
|
4620
|
-
$fault: "client";
|
|
4621
|
-
|
|
4738
|
+
export declare class ThrottlingException extends __BaseException {
|
|
4739
|
+
readonly name: "ThrottlingException";
|
|
4740
|
+
readonly $fault: "client";
|
|
4741
|
+
/**
|
|
4742
|
+
* @internal
|
|
4743
|
+
*/
|
|
4744
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
4622
4745
|
}
|
|
4623
4746
|
export interface StartFlowRequest {
|
|
4624
4747
|
/**
|
|
@@ -4686,10 +4809,13 @@ export declare namespace StopFlowResponse {
|
|
|
4686
4809
|
/**
|
|
4687
4810
|
* <p> The requested operation is not supported for the current flow. </p>
|
|
4688
4811
|
*/
|
|
4689
|
-
export
|
|
4690
|
-
name: "UnsupportedOperationException";
|
|
4691
|
-
$fault: "client";
|
|
4692
|
-
|
|
4812
|
+
export declare class UnsupportedOperationException extends __BaseException {
|
|
4813
|
+
readonly name: "UnsupportedOperationException";
|
|
4814
|
+
readonly $fault: "client";
|
|
4815
|
+
/**
|
|
4816
|
+
* @internal
|
|
4817
|
+
*/
|
|
4818
|
+
constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
|
|
4693
4819
|
}
|
|
4694
4820
|
export interface TagResourceRequest {
|
|
4695
4821
|
/**
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: AppflowClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: AppflowClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: AppflowClientConfig) => {
|
|
|
8
8
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
14
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { CreateConnectorProfileCommandInput, CreateConnectorProfileCommandOutput } from "./commands/CreateConnectorProfileCommand";
|
|
10
10
|
import { CreateFlowCommandInput, CreateFlowCommandOutput } from "./commands/CreateFlowCommand";
|
|
11
11
|
import { DeleteConnectorProfileCommandInput, DeleteConnectorProfileCommandOutput } from "./commands/DeleteConnectorProfileCommand";
|
|
@@ -38,7 +38,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
38
38
|
|
|
39
39
|
urlParser?: __UrlParser;
|
|
40
40
|
|
|
41
|
-
bodyLengthChecker?:
|
|
41
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
42
42
|
|
|
43
43
|
streamCollector?: __StreamCollector;
|
|
44
44
|
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { AppflowServiceException as __BaseException } from "./AppflowServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "AccessDeniedException";
|
|
5
|
-
$fault: "client";
|
|
6
|
-
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
|
|
8
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
7
9
|
}
|
|
8
10
|
export declare enum AggregationType {
|
|
9
11
|
NONE = "None",
|
|
@@ -152,20 +154,22 @@ export declare namespace BasicAuthCredentials {
|
|
|
152
154
|
const filterSensitiveLog: (obj: BasicAuthCredentials) => any;
|
|
153
155
|
}
|
|
154
156
|
|
|
155
|
-
export
|
|
156
|
-
name: "ConflictException";
|
|
157
|
-
$fault: "client";
|
|
158
|
-
|
|
157
|
+
export declare class ConflictException extends __BaseException {
|
|
158
|
+
readonly name: "ConflictException";
|
|
159
|
+
readonly $fault: "client";
|
|
160
|
+
|
|
161
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
159
162
|
}
|
|
160
163
|
export declare enum ConnectionMode {
|
|
161
164
|
PRIVATE = "Private",
|
|
162
165
|
PUBLIC = "Public"
|
|
163
166
|
}
|
|
164
167
|
|
|
165
|
-
export
|
|
166
|
-
name: "ConnectorAuthenticationException";
|
|
167
|
-
$fault: "client";
|
|
168
|
-
|
|
168
|
+
export declare class ConnectorAuthenticationException extends __BaseException {
|
|
169
|
+
readonly name: "ConnectorAuthenticationException";
|
|
170
|
+
readonly $fault: "client";
|
|
171
|
+
|
|
172
|
+
constructor(opts: __ExceptionOptionType<ConnectorAuthenticationException, __BaseException>);
|
|
169
173
|
}
|
|
170
174
|
|
|
171
175
|
export interface CustomerProfilesMetadata {
|
|
@@ -1628,10 +1632,11 @@ export declare namespace ConnectorProfileConfig {
|
|
|
1628
1632
|
const filterSensitiveLog: (obj: ConnectorProfileConfig) => any;
|
|
1629
1633
|
}
|
|
1630
1634
|
|
|
1631
|
-
export
|
|
1632
|
-
name: "ConnectorServerException";
|
|
1633
|
-
$fault: "client";
|
|
1634
|
-
|
|
1635
|
+
export declare class ConnectorServerException extends __BaseException {
|
|
1636
|
+
readonly name: "ConnectorServerException";
|
|
1637
|
+
readonly $fault: "client";
|
|
1638
|
+
|
|
1639
|
+
constructor(opts: __ExceptionOptionType<ConnectorServerException, __BaseException>);
|
|
1635
1640
|
}
|
|
1636
1641
|
export interface CreateConnectorProfileRequest {
|
|
1637
1642
|
|
|
@@ -1660,22 +1665,25 @@ export declare namespace CreateConnectorProfileResponse {
|
|
|
1660
1665
|
const filterSensitiveLog: (obj: CreateConnectorProfileResponse) => any;
|
|
1661
1666
|
}
|
|
1662
1667
|
|
|
1663
|
-
export
|
|
1664
|
-
name: "InternalServerException";
|
|
1665
|
-
$fault: "server";
|
|
1666
|
-
|
|
1668
|
+
export declare class InternalServerException extends __BaseException {
|
|
1669
|
+
readonly name: "InternalServerException";
|
|
1670
|
+
readonly $fault: "server";
|
|
1671
|
+
|
|
1672
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
1667
1673
|
}
|
|
1668
1674
|
|
|
1669
|
-
export
|
|
1670
|
-
name: "ServiceQuotaExceededException";
|
|
1671
|
-
$fault: "client";
|
|
1672
|
-
|
|
1675
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
1676
|
+
readonly name: "ServiceQuotaExceededException";
|
|
1677
|
+
readonly $fault: "client";
|
|
1678
|
+
|
|
1679
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
1673
1680
|
}
|
|
1674
1681
|
|
|
1675
|
-
export
|
|
1676
|
-
name: "ValidationException";
|
|
1677
|
-
$fault: "client";
|
|
1678
|
-
|
|
1682
|
+
export declare class ValidationException extends __BaseException {
|
|
1683
|
+
readonly name: "ValidationException";
|
|
1684
|
+
readonly $fault: "client";
|
|
1685
|
+
|
|
1686
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
1679
1687
|
}
|
|
1680
1688
|
|
|
1681
1689
|
export interface ErrorHandlingConfig {
|
|
@@ -1750,6 +1758,17 @@ export declare namespace LookoutMetricsDestinationProperties {
|
|
|
1750
1758
|
const filterSensitiveLog: (obj: LookoutMetricsDestinationProperties) => any;
|
|
1751
1759
|
}
|
|
1752
1760
|
|
|
1761
|
+
export interface MarketoDestinationProperties {
|
|
1762
|
+
|
|
1763
|
+
object: string | undefined;
|
|
1764
|
+
|
|
1765
|
+
errorHandlingConfig?: ErrorHandlingConfig;
|
|
1766
|
+
}
|
|
1767
|
+
export declare namespace MarketoDestinationProperties {
|
|
1768
|
+
|
|
1769
|
+
const filterSensitiveLog: (obj: MarketoDestinationProperties) => any;
|
|
1770
|
+
}
|
|
1771
|
+
|
|
1753
1772
|
export interface RedshiftDestinationProperties {
|
|
1754
1773
|
|
|
1755
1774
|
object: string | undefined;
|
|
@@ -1834,6 +1853,34 @@ export declare namespace SalesforceDestinationProperties {
|
|
|
1834
1853
|
const filterSensitiveLog: (obj: SalesforceDestinationProperties) => any;
|
|
1835
1854
|
}
|
|
1836
1855
|
|
|
1856
|
+
export interface SuccessResponseHandlingConfig {
|
|
1857
|
+
|
|
1858
|
+
bucketPrefix?: string;
|
|
1859
|
+
|
|
1860
|
+
bucketName?: string;
|
|
1861
|
+
}
|
|
1862
|
+
export declare namespace SuccessResponseHandlingConfig {
|
|
1863
|
+
|
|
1864
|
+
const filterSensitiveLog: (obj: SuccessResponseHandlingConfig) => any;
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1867
|
+
export interface SAPODataDestinationProperties {
|
|
1868
|
+
|
|
1869
|
+
objectPath: string | undefined;
|
|
1870
|
+
|
|
1871
|
+
successResponseHandlingConfig?: SuccessResponseHandlingConfig;
|
|
1872
|
+
|
|
1873
|
+
idFieldNames?: string[];
|
|
1874
|
+
|
|
1875
|
+
errorHandlingConfig?: ErrorHandlingConfig;
|
|
1876
|
+
|
|
1877
|
+
writeOperationType?: WriteOperationType | string;
|
|
1878
|
+
}
|
|
1879
|
+
export declare namespace SAPODataDestinationProperties {
|
|
1880
|
+
|
|
1881
|
+
const filterSensitiveLog: (obj: SAPODataDestinationProperties) => any;
|
|
1882
|
+
}
|
|
1883
|
+
|
|
1837
1884
|
export interface SnowflakeDestinationProperties {
|
|
1838
1885
|
|
|
1839
1886
|
object: string | undefined;
|
|
@@ -1912,7 +1959,11 @@ export interface DestinationConnectorProperties {
|
|
|
1912
1959
|
|
|
1913
1960
|
Zendesk?: ZendeskDestinationProperties;
|
|
1914
1961
|
|
|
1962
|
+
Marketo?: MarketoDestinationProperties;
|
|
1963
|
+
|
|
1915
1964
|
CustomConnector?: CustomConnectorDestinationProperties;
|
|
1965
|
+
|
|
1966
|
+
SAPOData?: SAPODataDestinationProperties;
|
|
1916
1967
|
}
|
|
1917
1968
|
export declare namespace DestinationConnectorProperties {
|
|
1918
1969
|
|
|
@@ -2190,6 +2241,7 @@ export declare enum TaskType {
|
|
|
2190
2241
|
MAP_ALL = "Map_all",
|
|
2191
2242
|
MASK = "Mask",
|
|
2192
2243
|
MERGE = "Merge",
|
|
2244
|
+
PASSTHROUGH = "Passthrough",
|
|
2193
2245
|
TRUNCATE = "Truncate",
|
|
2194
2246
|
VALIDATE = "Validate"
|
|
2195
2247
|
}
|
|
@@ -2300,10 +2352,11 @@ export declare namespace CreateFlowResponse {
|
|
|
2300
2352
|
const filterSensitiveLog: (obj: CreateFlowResponse) => any;
|
|
2301
2353
|
}
|
|
2302
2354
|
|
|
2303
|
-
export
|
|
2304
|
-
name: "ResourceNotFoundException";
|
|
2305
|
-
$fault: "client";
|
|
2306
|
-
|
|
2355
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
2356
|
+
readonly name: "ResourceNotFoundException";
|
|
2357
|
+
readonly $fault: "client";
|
|
2358
|
+
|
|
2359
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
2307
2360
|
}
|
|
2308
2361
|
export interface DeleteConnectorProfileRequest {
|
|
2309
2362
|
|
|
@@ -2708,10 +2761,11 @@ export declare namespace RegisterConnectorResponse {
|
|
|
2708
2761
|
const filterSensitiveLog: (obj: RegisterConnectorResponse) => any;
|
|
2709
2762
|
}
|
|
2710
2763
|
|
|
2711
|
-
export
|
|
2712
|
-
name: "ThrottlingException";
|
|
2713
|
-
$fault: "client";
|
|
2714
|
-
|
|
2764
|
+
export declare class ThrottlingException extends __BaseException {
|
|
2765
|
+
readonly name: "ThrottlingException";
|
|
2766
|
+
readonly $fault: "client";
|
|
2767
|
+
|
|
2768
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
2715
2769
|
}
|
|
2716
2770
|
export interface StartFlowRequest {
|
|
2717
2771
|
|
|
@@ -2752,10 +2806,11 @@ export declare namespace StopFlowResponse {
|
|
|
2752
2806
|
const filterSensitiveLog: (obj: StopFlowResponse) => any;
|
|
2753
2807
|
}
|
|
2754
2808
|
|
|
2755
|
-
export
|
|
2756
|
-
name: "UnsupportedOperationException";
|
|
2757
|
-
$fault: "client";
|
|
2758
|
-
|
|
2809
|
+
export declare class UnsupportedOperationException extends __BaseException {
|
|
2810
|
+
readonly name: "UnsupportedOperationException";
|
|
2811
|
+
readonly $fault: "client";
|
|
2812
|
+
|
|
2813
|
+
constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
|
|
2759
2814
|
}
|
|
2760
2815
|
export interface TagResourceRequest {
|
|
2761
2816
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: AppflowClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: AppflowClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: AppflowClientConfig) => {
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|