@aws-sdk/client-appflow 3.52.0 → 3.54.1
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 +30 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/AppflowServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +142 -5
- package/dist-cjs/protocols/Aws_restJson1.js +317 -829
- package/dist-es/index.js +1 -0
- package/dist-es/models/AppflowServiceException.js +12 -0
- package/dist-es/models/models_0.js +126 -1
- package/dist-es/protocols/Aws_restJson1.js +556 -929
- 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 +99 -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 +65 -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 +27 -27
|
@@ -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>
|
|
@@ -3268,6 +3313,10 @@ export interface DestinationConnectorProperties {
|
|
|
3268
3313
|
* <p>The properties required to query Zendesk.</p>
|
|
3269
3314
|
*/
|
|
3270
3315
|
Zendesk?: ZendeskDestinationProperties;
|
|
3316
|
+
/**
|
|
3317
|
+
* <p>The properties required to query Marketo.</p>
|
|
3318
|
+
*/
|
|
3319
|
+
Marketo?: MarketoDestinationProperties;
|
|
3271
3320
|
/**
|
|
3272
3321
|
* <p>The properties that are required to query the custom Connector.</p>
|
|
3273
3322
|
*/
|
|
@@ -3954,10 +4003,13 @@ export declare namespace CreateFlowResponse {
|
|
|
3954
4003
|
* <p> The resource specified in the request (such as the source or destination connector
|
|
3955
4004
|
* profile) is not found. </p>
|
|
3956
4005
|
*/
|
|
3957
|
-
export
|
|
3958
|
-
name: "ResourceNotFoundException";
|
|
3959
|
-
$fault: "client";
|
|
3960
|
-
|
|
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>);
|
|
3961
4013
|
}
|
|
3962
4014
|
export interface DeleteConnectorProfileRequest {
|
|
3963
4015
|
/**
|
|
@@ -4683,10 +4735,13 @@ export declare namespace RegisterConnectorResponse {
|
|
|
4683
4735
|
* <p>API calls have exceeded the maximum allowed API request rate per account and per Region.
|
|
4684
4736
|
* </p>
|
|
4685
4737
|
*/
|
|
4686
|
-
export
|
|
4687
|
-
name: "ThrottlingException";
|
|
4688
|
-
$fault: "client";
|
|
4689
|
-
|
|
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>);
|
|
4690
4745
|
}
|
|
4691
4746
|
export interface StartFlowRequest {
|
|
4692
4747
|
/**
|
|
@@ -4754,10 +4809,13 @@ export declare namespace StopFlowResponse {
|
|
|
4754
4809
|
/**
|
|
4755
4810
|
* <p> The requested operation is not supported for the current flow. </p>
|
|
4756
4811
|
*/
|
|
4757
|
-
export
|
|
4758
|
-
name: "UnsupportedOperationException";
|
|
4759
|
-
$fault: "client";
|
|
4760
|
-
|
|
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>);
|
|
4761
4819
|
}
|
|
4762
4820
|
export interface TagResourceRequest {
|
|
4763
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;
|
|
@@ -1940,6 +1959,8 @@ export interface DestinationConnectorProperties {
|
|
|
1940
1959
|
|
|
1941
1960
|
Zendesk?: ZendeskDestinationProperties;
|
|
1942
1961
|
|
|
1962
|
+
Marketo?: MarketoDestinationProperties;
|
|
1963
|
+
|
|
1943
1964
|
CustomConnector?: CustomConnectorDestinationProperties;
|
|
1944
1965
|
|
|
1945
1966
|
SAPOData?: SAPODataDestinationProperties;
|
|
@@ -2331,10 +2352,11 @@ export declare namespace CreateFlowResponse {
|
|
|
2331
2352
|
const filterSensitiveLog: (obj: CreateFlowResponse) => any;
|
|
2332
2353
|
}
|
|
2333
2354
|
|
|
2334
|
-
export
|
|
2335
|
-
name: "ResourceNotFoundException";
|
|
2336
|
-
$fault: "client";
|
|
2337
|
-
|
|
2355
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
2356
|
+
readonly name: "ResourceNotFoundException";
|
|
2357
|
+
readonly $fault: "client";
|
|
2358
|
+
|
|
2359
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
2338
2360
|
}
|
|
2339
2361
|
export interface DeleteConnectorProfileRequest {
|
|
2340
2362
|
|
|
@@ -2739,10 +2761,11 @@ export declare namespace RegisterConnectorResponse {
|
|
|
2739
2761
|
const filterSensitiveLog: (obj: RegisterConnectorResponse) => any;
|
|
2740
2762
|
}
|
|
2741
2763
|
|
|
2742
|
-
export
|
|
2743
|
-
name: "ThrottlingException";
|
|
2744
|
-
$fault: "client";
|
|
2745
|
-
|
|
2764
|
+
export declare class ThrottlingException extends __BaseException {
|
|
2765
|
+
readonly name: "ThrottlingException";
|
|
2766
|
+
readonly $fault: "client";
|
|
2767
|
+
|
|
2768
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
2746
2769
|
}
|
|
2747
2770
|
export interface StartFlowRequest {
|
|
2748
2771
|
|
|
@@ -2783,10 +2806,11 @@ export declare namespace StopFlowResponse {
|
|
|
2783
2806
|
const filterSensitiveLog: (obj: StopFlowResponse) => any;
|
|
2784
2807
|
}
|
|
2785
2808
|
|
|
2786
|
-
export
|
|
2787
|
-
name: "UnsupportedOperationException";
|
|
2788
|
-
$fault: "client";
|
|
2789
|
-
|
|
2809
|
+
export declare class UnsupportedOperationException extends __BaseException {
|
|
2810
|
+
readonly name: "UnsupportedOperationException";
|
|
2811
|
+
readonly $fault: "client";
|
|
2812
|
+
|
|
2813
|
+
constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
|
|
2790
2814
|
}
|
|
2791
2815
|
export interface TagResourceRequest {
|
|
2792
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;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appflow",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appflow Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.54.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,34 +18,34 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.1",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.1",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.1",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.1",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.1",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.1",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.1",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.1",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.1",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.1",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.1",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.1",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.1",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.1",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.1",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.1",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.1",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.1",
|
|
39
|
+
"@aws-sdk/types": "3.54.1",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.1",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.1",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.1",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.1",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.1",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|