@aws-sdk/client-appflow 3.101.0 → 3.110.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 CHANGED
@@ -3,6 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.110.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.109.0...v3.110.0) (2022-06-14)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-appflow
9
+
10
+
11
+
12
+
13
+
14
+ # [3.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-appflow
17
+
18
+
19
+
20
+
21
+
22
+ # [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
23
+
24
+
25
+ ### Features
26
+
27
+ * **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
28
+
29
+
30
+
31
+
32
+
6
33
  # [3.101.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.100.0...v3.101.0) (2022-05-27)
7
34
 
8
35
 
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
5
5
  const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
6
6
  const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
7
7
  const middleware_logger_1 = require("@aws-sdk/middleware-logger");
8
+ const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
8
9
  const middleware_retry_1 = require("@aws-sdk/middleware-retry");
9
10
  const middleware_signing_1 = require("@aws-sdk/middleware-signing");
10
11
  const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
@@ -25,6 +26,7 @@ class AppflowClient extends smithy_client_1.Client {
25
26
  this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
26
27
  this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
27
28
  this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
29
+ this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
28
30
  this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
29
31
  this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
30
32
  }
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
3
3
  import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
4
4
  import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
5
5
  import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
6
+ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
6
7
  import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
7
8
  import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
8
9
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
@@ -25,6 +26,7 @@ var AppflowClient = (function (_super) {
25
26
  _this.middlewareStack.use(getContentLengthPlugin(_this.config));
26
27
  _this.middlewareStack.use(getHostHeaderPlugin(_this.config));
27
28
  _this.middlewareStack.use(getLoggerPlugin(_this.config));
29
+ _this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
28
30
  _this.middlewareStack.use(getAwsAuthPlugin(_this.config));
29
31
  _this.middlewareStack.use(getUserAgentPlugin(_this.config));
30
32
  return _this;
@@ -1232,9 +1232,7 @@ export interface ConnectorEntityField {
1232
1232
  /**
1233
1233
  * <p>A map that has specific properties related to the ConnectorEntityField.</p>
1234
1234
  */
1235
- customProperties?: {
1236
- [key: string]: string;
1237
- };
1235
+ customProperties?: Record<string, string>;
1238
1236
  }
1239
1237
  export declare namespace ConnectorEntityField {
1240
1238
  /**
@@ -1612,9 +1610,7 @@ export interface OAuth2Properties {
1612
1610
  * provide any additional details that the connector requires to authenticate your
1613
1611
  * request.</p>
1614
1612
  */
1615
- tokenUrlCustomProperties?: {
1616
- [key: string]: string;
1617
- };
1613
+ tokenUrlCustomProperties?: Record<string, string>;
1618
1614
  }
1619
1615
  export declare namespace OAuth2Properties {
1620
1616
  /**
@@ -1629,9 +1625,7 @@ export interface CustomConnectorProfileProperties {
1629
1625
  /**
1630
1626
  * <p>A map of properties that are required to create a profile for the custom connector.</p>
1631
1627
  */
1632
- profileProperties?: {
1633
- [key: string]: string;
1634
- };
1628
+ profileProperties?: Record<string, string>;
1635
1629
  /**
1636
1630
  * <p>The OAuth 2.0 properties required for OAuth 2.0 authentication.</p>
1637
1631
  */
@@ -2145,9 +2139,7 @@ export interface CustomAuthCredentials {
2145
2139
  /**
2146
2140
  * <p>A map that holds custom authentication credentials.</p>
2147
2141
  */
2148
- credentialsMap?: {
2149
- [key: string]: string;
2150
- };
2142
+ credentialsMap?: Record<string, string>;
2151
2143
  }
2152
2144
  export declare namespace CustomAuthCredentials {
2153
2145
  /**
@@ -2877,9 +2869,7 @@ export interface CustomConnectorDestinationProperties {
2877
2869
  * <p>The custom properties that are specific to the connector when it's used as a destination
2878
2870
  * in the flow.</p>
2879
2871
  */
2880
- customProperties?: {
2881
- [key: string]: string;
2882
- };
2872
+ customProperties?: Record<string, string>;
2883
2873
  }
2884
2874
  export declare namespace CustomConnectorDestinationProperties {
2885
2875
  /**
@@ -3465,9 +3455,7 @@ export interface CustomConnectorSourceProperties {
3465
3455
  /**
3466
3456
  * <p>Custom properties that are required to use the custom connector as a source.</p>
3467
3457
  */
3468
- customProperties?: {
3469
- [key: string]: string;
3470
- };
3458
+ customProperties?: Record<string, string>;
3471
3459
  }
3472
3460
  export declare namespace CustomConnectorSourceProperties {
3473
3461
  /**
@@ -3907,9 +3895,7 @@ export interface Task {
3907
3895
  * <p> A map used to store task-related information. The execution service looks for particular
3908
3896
  * information based on the <code>TaskType</code>. </p>
3909
3897
  */
3910
- taskProperties?: {
3911
- [key: string]: string;
3912
- };
3898
+ taskProperties?: Record<string, string>;
3913
3899
  }
3914
3900
  export declare namespace Task {
3915
3901
  /**
@@ -4054,9 +4040,7 @@ export interface CreateFlowRequest {
4054
4040
  /**
4055
4041
  * <p> The tags used to organize, track, or control access for your flow. </p>
4056
4042
  */
4057
- tags?: {
4058
- [key: string]: string;
4059
- };
4043
+ tags?: Record<string, string>;
4060
4044
  }
4061
4045
  export declare namespace CreateFlowRequest {
4062
4046
  /**
@@ -4296,9 +4280,7 @@ export interface DescribeConnectorsResponse {
4296
4280
  /**
4297
4281
  * <p> The configuration that is applied to the connectors used in the flow. </p>
4298
4282
  */
4299
- connectorConfigurations?: {
4300
- [key: string]: ConnectorConfiguration;
4301
- };
4283
+ connectorConfigurations?: Record<string, ConnectorConfiguration>;
4302
4284
  /**
4303
4285
  * <p>Information about the connectors supported in Amazon AppFlow.</p>
4304
4286
  */
@@ -4427,9 +4409,7 @@ export interface DescribeFlowResponse {
4427
4409
  /**
4428
4410
  * <p> The tags used to organize, track, or control access for your flow. </p>
4429
4411
  */
4430
- tags?: {
4431
- [key: string]: string;
4432
- };
4412
+ tags?: Record<string, string>;
4433
4413
  }
4434
4414
  export declare namespace DescribeFlowResponse {
4435
4415
  /**
@@ -4628,9 +4608,7 @@ export interface FlowDefinition {
4628
4608
  /**
4629
4609
  * <p> The tags used to organize, track, or control access for your flow. </p>
4630
4610
  */
4631
- tags?: {
4632
- [key: string]: string;
4633
- };
4611
+ tags?: Record<string, string>;
4634
4612
  /**
4635
4613
  * <p> Describes the details of the most recent flow run. </p>
4636
4614
  */
@@ -4678,9 +4656,7 @@ export interface ListConnectorEntitiesResponse {
4678
4656
  * This map's key represents the group name, and its value contains the list of entities
4679
4657
  * belonging to that group. </p>
4680
4658
  */
4681
- connectorEntityMap: {
4682
- [key: string]: ConnectorEntity[];
4683
- } | undefined;
4659
+ connectorEntityMap: Record<string, ConnectorEntity[]> | undefined;
4684
4660
  }
4685
4661
  export declare namespace ListConnectorEntitiesResponse {
4686
4662
  /**
@@ -4770,9 +4746,7 @@ export interface ListTagsForResourceResponse {
4770
4746
  /**
4771
4747
  * <p> The tags used to organize, track, or control access for your flow. </p>
4772
4748
  */
4773
- tags?: {
4774
- [key: string]: string;
4775
- };
4749
+ tags?: Record<string, string>;
4776
4750
  }
4777
4751
  export declare namespace ListTagsForResourceResponse {
4778
4752
  /**
@@ -4913,9 +4887,7 @@ export interface TagResourceRequest {
4913
4887
  /**
4914
4888
  * <p> The tags used to organize, track, or control access for your flow. </p>
4915
4889
  */
4916
- tags: {
4917
- [key: string]: string;
4918
- } | undefined;
4890
+ tags: Record<string, string> | undefined;
4919
4891
  }
4920
4892
  export declare namespace TagResourceRequest {
4921
4893
  /**
@@ -728,9 +728,7 @@ export interface ConnectorEntityField {
728
728
 
729
729
  destinationProperties?: DestinationFieldProperties;
730
730
 
731
- customProperties?: {
732
- [key: string]: string;
733
- };
731
+ customProperties?: Record<string, string>;
734
732
  }
735
733
  export declare namespace ConnectorEntityField {
736
734
 
@@ -1049,9 +1047,7 @@ export interface OAuth2Properties {
1049
1047
 
1050
1048
  oAuth2GrantType: OAuth2GrantType | string | undefined;
1051
1049
 
1052
- tokenUrlCustomProperties?: {
1053
- [key: string]: string;
1054
- };
1050
+ tokenUrlCustomProperties?: Record<string, string>;
1055
1051
  }
1056
1052
  export declare namespace OAuth2Properties {
1057
1053
 
@@ -1060,9 +1056,7 @@ export declare namespace OAuth2Properties {
1060
1056
 
1061
1057
  export interface CustomConnectorProfileProperties {
1062
1058
 
1063
- profileProperties?: {
1064
- [key: string]: string;
1065
- };
1059
+ profileProperties?: Record<string, string>;
1066
1060
 
1067
1061
  oAuth2Properties?: OAuth2Properties;
1068
1062
  }
@@ -1351,9 +1345,7 @@ export interface CustomAuthCredentials {
1351
1345
 
1352
1346
  customAuthenticationType: string | undefined;
1353
1347
 
1354
- credentialsMap?: {
1355
- [key: string]: string;
1356
- };
1348
+ credentialsMap?: Record<string, string>;
1357
1349
  }
1358
1350
  export declare namespace CustomAuthCredentials {
1359
1351
 
@@ -1740,9 +1732,7 @@ export interface CustomConnectorDestinationProperties {
1740
1732
 
1741
1733
  idFieldNames?: string[];
1742
1734
 
1743
- customProperties?: {
1744
- [key: string]: string;
1745
- };
1735
+ customProperties?: Record<string, string>;
1746
1736
  }
1747
1737
  export declare namespace CustomConnectorDestinationProperties {
1748
1738
 
@@ -2031,9 +2021,7 @@ export interface CustomConnectorSourceProperties {
2031
2021
 
2032
2022
  entityName: string | undefined;
2033
2023
 
2034
- customProperties?: {
2035
- [key: string]: string;
2036
- };
2024
+ customProperties?: Record<string, string>;
2037
2025
  }
2038
2026
  export declare namespace CustomConnectorSourceProperties {
2039
2027
 
@@ -2289,9 +2277,7 @@ export interface Task {
2289
2277
 
2290
2278
  taskType: TaskType | string | undefined;
2291
2279
 
2292
- taskProperties?: {
2293
- [key: string]: string;
2294
- };
2280
+ taskProperties?: Record<string, string>;
2295
2281
  }
2296
2282
  export declare namespace Task {
2297
2283
 
@@ -2360,9 +2346,7 @@ export interface CreateFlowRequest {
2360
2346
 
2361
2347
  tasks: Task[] | undefined;
2362
2348
 
2363
- tags?: {
2364
- [key: string]: string;
2365
- };
2349
+ tags?: Record<string, string>;
2366
2350
  }
2367
2351
  export declare namespace CreateFlowRequest {
2368
2352
 
@@ -2505,9 +2489,7 @@ export declare namespace DescribeConnectorsRequest {
2505
2489
  }
2506
2490
  export interface DescribeConnectorsResponse {
2507
2491
 
2508
- connectorConfigurations?: {
2509
- [key: string]: ConnectorConfiguration;
2510
- };
2492
+ connectorConfigurations?: Record<string, ConnectorConfiguration>;
2511
2493
 
2512
2494
  connectors?: ConnectorDetail[];
2513
2495
 
@@ -2575,9 +2557,7 @@ export interface DescribeFlowResponse {
2575
2557
 
2576
2558
  lastUpdatedBy?: string;
2577
2559
 
2578
- tags?: {
2579
- [key: string]: string;
2580
- };
2560
+ tags?: Record<string, string>;
2581
2561
  }
2582
2562
  export declare namespace DescribeFlowResponse {
2583
2563
 
@@ -2681,9 +2661,7 @@ export interface FlowDefinition {
2681
2661
 
2682
2662
  lastUpdatedBy?: string;
2683
2663
 
2684
- tags?: {
2685
- [key: string]: string;
2686
- };
2664
+ tags?: Record<string, string>;
2687
2665
 
2688
2666
  lastRunExecutionDetails?: ExecutionDetails;
2689
2667
  }
@@ -2707,9 +2685,7 @@ export declare namespace ListConnectorEntitiesRequest {
2707
2685
  }
2708
2686
  export interface ListConnectorEntitiesResponse {
2709
2687
 
2710
- connectorEntityMap: {
2711
- [key: string]: ConnectorEntity[];
2712
- } | undefined;
2688
+ connectorEntityMap: Record<string, ConnectorEntity[]> | undefined;
2713
2689
  }
2714
2690
  export declare namespace ListConnectorEntitiesResponse {
2715
2691
 
@@ -2765,9 +2741,7 @@ export declare namespace ListTagsForResourceRequest {
2765
2741
  }
2766
2742
  export interface ListTagsForResourceResponse {
2767
2743
 
2768
- tags?: {
2769
- [key: string]: string;
2770
- };
2744
+ tags?: Record<string, string>;
2771
2745
  }
2772
2746
  export declare namespace ListTagsForResourceResponse {
2773
2747
 
@@ -2851,9 +2825,7 @@ export interface TagResourceRequest {
2851
2825
 
2852
2826
  resourceArn: string | undefined;
2853
2827
 
2854
- tags: {
2855
- [key: string]: string;
2856
- } | undefined;
2828
+ tags: Record<string, string> | undefined;
2857
2829
  }
2858
2830
  export declare namespace TagResourceRequest {
2859
2831
 
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.101.0",
4
+ "version": "3.110.0",
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,36 +18,37 @@
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.100.0",
22
- "@aws-sdk/config-resolver": "3.80.0",
23
- "@aws-sdk/credential-provider-node": "3.100.0",
24
- "@aws-sdk/fetch-http-handler": "3.78.0",
25
- "@aws-sdk/hash-node": "3.78.0",
26
- "@aws-sdk/invalid-dependency": "3.78.0",
27
- "@aws-sdk/middleware-content-length": "3.78.0",
28
- "@aws-sdk/middleware-host-header": "3.78.0",
29
- "@aws-sdk/middleware-logger": "3.78.0",
30
- "@aws-sdk/middleware-retry": "3.80.0",
31
- "@aws-sdk/middleware-serde": "3.78.0",
32
- "@aws-sdk/middleware-signing": "3.78.0",
33
- "@aws-sdk/middleware-stack": "3.78.0",
34
- "@aws-sdk/middleware-user-agent": "3.78.0",
35
- "@aws-sdk/node-config-provider": "3.80.0",
36
- "@aws-sdk/node-http-handler": "3.94.0",
37
- "@aws-sdk/protocol-http": "3.78.0",
38
- "@aws-sdk/smithy-client": "3.99.0",
39
- "@aws-sdk/types": "3.78.0",
40
- "@aws-sdk/url-parser": "3.78.0",
41
- "@aws-sdk/util-base64-browser": "3.58.0",
21
+ "@aws-sdk/client-sts": "3.110.0",
22
+ "@aws-sdk/config-resolver": "3.110.0",
23
+ "@aws-sdk/credential-provider-node": "3.110.0",
24
+ "@aws-sdk/fetch-http-handler": "3.110.0",
25
+ "@aws-sdk/hash-node": "3.110.0",
26
+ "@aws-sdk/invalid-dependency": "3.110.0",
27
+ "@aws-sdk/middleware-content-length": "3.110.0",
28
+ "@aws-sdk/middleware-host-header": "3.110.0",
29
+ "@aws-sdk/middleware-logger": "3.110.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.110.0",
31
+ "@aws-sdk/middleware-retry": "3.110.0",
32
+ "@aws-sdk/middleware-serde": "3.110.0",
33
+ "@aws-sdk/middleware-signing": "3.110.0",
34
+ "@aws-sdk/middleware-stack": "3.110.0",
35
+ "@aws-sdk/middleware-user-agent": "3.110.0",
36
+ "@aws-sdk/node-config-provider": "3.110.0",
37
+ "@aws-sdk/node-http-handler": "3.110.0",
38
+ "@aws-sdk/protocol-http": "3.110.0",
39
+ "@aws-sdk/smithy-client": "3.110.0",
40
+ "@aws-sdk/types": "3.110.0",
41
+ "@aws-sdk/url-parser": "3.110.0",
42
+ "@aws-sdk/util-base64-browser": "3.109.0",
42
43
  "@aws-sdk/util-base64-node": "3.55.0",
43
44
  "@aws-sdk/util-body-length-browser": "3.55.0",
44
45
  "@aws-sdk/util-body-length-node": "3.55.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.99.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.99.0",
47
- "@aws-sdk/util-user-agent-browser": "3.78.0",
48
- "@aws-sdk/util-user-agent-node": "3.80.0",
49
- "@aws-sdk/util-utf8-browser": "3.55.0",
50
- "@aws-sdk/util-utf8-node": "3.55.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.110.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.110.0",
48
+ "@aws-sdk/util-user-agent-browser": "3.110.0",
49
+ "@aws-sdk/util-user-agent-node": "3.110.0",
50
+ "@aws-sdk/util-utf8-browser": "3.109.0",
51
+ "@aws-sdk/util-utf8-node": "3.109.0",
51
52
  "tslib": "^2.3.1"
52
53
  },
53
54
  "devDependencies": {