@aws-sdk/client-lambda 3.427.0 → 3.428.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.
@@ -90,6 +90,7 @@ export interface CreateFunctionCommandOutput extends FunctionConfiguration, __Me
90
90
  * SecurityGroupIds: [ // SecurityGroupIds
91
91
  * "STRING_VALUE",
92
92
  * ],
93
+ * Ipv6AllowedForDualStack: true || false,
93
94
  * },
94
95
  * PackageType: "Zip" || "Image",
95
96
  * DeadLetterConfig: { // DeadLetterConfig
@@ -159,6 +160,7 @@ export interface CreateFunctionCommandOutput extends FunctionConfiguration, __Me
159
160
  * // "STRING_VALUE",
160
161
  * // ],
161
162
  * // VpcId: "STRING_VALUE",
163
+ * // Ipv6AllowedForDualStack: true || false,
162
164
  * // },
163
165
  * // DeadLetterConfig: { // DeadLetterConfig
164
166
  * // TargetArn: "STRING_VALUE",
@@ -60,6 +60,7 @@ export interface GetFunctionCommandOutput extends GetFunctionResponse, __Metadat
60
60
  * // "STRING_VALUE",
61
61
  * // ],
62
62
  * // VpcId: "STRING_VALUE",
63
+ * // Ipv6AllowedForDualStack: true || false,
63
64
  * // },
64
65
  * // DeadLetterConfig: { // DeadLetterConfig
65
66
  * // TargetArn: "STRING_VALUE",
@@ -59,6 +59,7 @@ export interface GetFunctionConfigurationCommandOutput extends FunctionConfigura
59
59
  * // "STRING_VALUE",
60
60
  * // ],
61
61
  * // VpcId: "STRING_VALUE",
62
+ * // Ipv6AllowedForDualStack: true || false,
62
63
  * // },
63
64
  * // DeadLetterConfig: { // DeadLetterConfig
64
65
  * // TargetArn: "STRING_VALUE",
@@ -70,6 +70,7 @@ export interface ListFunctionsCommandOutput extends ListFunctionsResponse, __Met
70
70
  * // "STRING_VALUE",
71
71
  * // ],
72
72
  * // VpcId: "STRING_VALUE",
73
+ * // Ipv6AllowedForDualStack: true || false,
73
74
  * // },
74
75
  * // DeadLetterConfig: { // DeadLetterConfig
75
76
  * // TargetArn: "STRING_VALUE",
@@ -62,6 +62,7 @@ export interface ListVersionsByFunctionCommandOutput extends ListVersionsByFunct
62
62
  * // "STRING_VALUE",
63
63
  * // ],
64
64
  * // VpcId: "STRING_VALUE",
65
+ * // Ipv6AllowedForDualStack: true || false,
65
66
  * // },
66
67
  * // DeadLetterConfig: { // DeadLetterConfig
67
68
  * // TargetArn: "STRING_VALUE",
@@ -65,6 +65,7 @@ export interface PublishVersionCommandOutput extends FunctionConfiguration, __Me
65
65
  * // "STRING_VALUE",
66
66
  * // ],
67
67
  * // VpcId: "STRING_VALUE",
68
+ * // Ipv6AllowedForDualStack: true || false,
68
69
  * // },
69
70
  * // DeadLetterConfig: { // DeadLetterConfig
70
71
  * // TargetArn: "STRING_VALUE",
@@ -82,6 +82,7 @@ export interface UpdateFunctionCodeCommandOutput extends FunctionConfiguration,
82
82
  * // "STRING_VALUE",
83
83
  * // ],
84
84
  * // VpcId: "STRING_VALUE",
85
+ * // Ipv6AllowedForDualStack: true || false,
85
86
  * // },
86
87
  * // DeadLetterConfig: { // DeadLetterConfig
87
88
  * // TargetArn: "STRING_VALUE",
@@ -55,6 +55,7 @@ export interface UpdateFunctionConfigurationCommandOutput extends FunctionConfig
55
55
  * SecurityGroupIds: [ // SecurityGroupIds
56
56
  * "STRING_VALUE",
57
57
  * ],
58
+ * Ipv6AllowedForDualStack: true || false,
58
59
  * },
59
60
  * Environment: { // Environment
60
61
  * Variables: { // EnvironmentVariables
@@ -118,6 +119,7 @@ export interface UpdateFunctionConfigurationCommandOutput extends FunctionConfig
118
119
  * // "STRING_VALUE",
119
120
  * // ],
120
121
  * // VpcId: "STRING_VALUE",
122
+ * // Ipv6AllowedForDualStack: true || false,
121
123
  * // },
122
124
  * // DeadLetterConfig: { // DeadLetterConfig
123
125
  * // TargetArn: "STRING_VALUE",
@@ -1481,6 +1481,11 @@ export interface VpcConfig {
1481
1481
  * <p>A list of VPC security group IDs.</p>
1482
1482
  */
1483
1483
  SecurityGroupIds?: string[];
1484
+ /**
1485
+ * @public
1486
+ * <p>Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack subnets.</p>
1487
+ */
1488
+ Ipv6AllowedForDualStack?: boolean;
1484
1489
  }
1485
1490
  /**
1486
1491
  * @public
@@ -1917,6 +1922,11 @@ export interface VpcConfigResponse {
1917
1922
  * <p>The ID of the VPC.</p>
1918
1923
  */
1919
1924
  VpcId?: string;
1925
+ /**
1926
+ * @public
1927
+ * <p>Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack subnets.</p>
1928
+ */
1929
+ Ipv6AllowedForDualStack?: boolean;
1920
1930
  }
1921
1931
  /**
1922
1932
  * @public
@@ -407,6 +407,7 @@ export interface TracingConfig {
407
407
  export interface VpcConfig {
408
408
  SubnetIds?: string[];
409
409
  SecurityGroupIds?: string[];
410
+ Ipv6AllowedForDualStack?: boolean;
410
411
  }
411
412
  export interface CreateFunctionRequest {
412
413
  FunctionName: string | undefined;
@@ -547,6 +548,7 @@ export interface VpcConfigResponse {
547
548
  SubnetIds?: string[];
548
549
  SecurityGroupIds?: string[];
549
550
  VpcId?: string;
551
+ Ipv6AllowedForDualStack?: boolean;
550
552
  }
551
553
  export interface FunctionConfiguration {
552
554
  FunctionName?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-lambda",
3
3
  "description": "AWS SDK for JavaScript Lambda Client for Node.js, Browser and React Native",
4
- "version": "3.427.0",
4
+ "version": "3.428.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",
@@ -21,45 +21,45 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.427.0",
25
- "@aws-sdk/credential-provider-node": "3.427.0",
26
- "@aws-sdk/middleware-host-header": "3.425.0",
27
- "@aws-sdk/middleware-logger": "3.425.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.425.0",
29
- "@aws-sdk/middleware-signing": "3.425.0",
30
- "@aws-sdk/middleware-user-agent": "3.427.0",
31
- "@aws-sdk/region-config-resolver": "3.425.0",
32
- "@aws-sdk/types": "3.425.0",
33
- "@aws-sdk/util-endpoints": "3.427.0",
34
- "@aws-sdk/util-user-agent-browser": "3.425.0",
35
- "@aws-sdk/util-user-agent-node": "3.425.0",
36
- "@smithy/config-resolver": "^2.0.11",
37
- "@smithy/eventstream-serde-browser": "^2.0.10",
38
- "@smithy/eventstream-serde-config-resolver": "^2.0.10",
39
- "@smithy/eventstream-serde-node": "^2.0.10",
40
- "@smithy/fetch-http-handler": "^2.2.1",
41
- "@smithy/hash-node": "^2.0.10",
42
- "@smithy/invalid-dependency": "^2.0.10",
43
- "@smithy/middleware-content-length": "^2.0.12",
44
- "@smithy/middleware-endpoint": "^2.0.10",
45
- "@smithy/middleware-retry": "^2.0.13",
46
- "@smithy/middleware-serde": "^2.0.10",
47
- "@smithy/middleware-stack": "^2.0.4",
48
- "@smithy/node-config-provider": "^2.0.13",
49
- "@smithy/node-http-handler": "^2.1.6",
50
- "@smithy/protocol-http": "^3.0.6",
51
- "@smithy/smithy-client": "^2.1.9",
52
- "@smithy/types": "^2.3.4",
53
- "@smithy/url-parser": "^2.0.10",
24
+ "@aws-sdk/client-sts": "3.428.0",
25
+ "@aws-sdk/credential-provider-node": "3.428.0",
26
+ "@aws-sdk/middleware-host-header": "3.428.0",
27
+ "@aws-sdk/middleware-logger": "3.428.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
+ "@aws-sdk/middleware-signing": "3.428.0",
30
+ "@aws-sdk/middleware-user-agent": "3.428.0",
31
+ "@aws-sdk/region-config-resolver": "3.428.0",
32
+ "@aws-sdk/types": "3.428.0",
33
+ "@aws-sdk/util-endpoints": "3.428.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.428.0",
35
+ "@aws-sdk/util-user-agent-node": "3.428.0",
36
+ "@smithy/config-resolver": "^2.0.14",
37
+ "@smithy/eventstream-serde-browser": "^2.0.11",
38
+ "@smithy/eventstream-serde-config-resolver": "^2.0.11",
39
+ "@smithy/eventstream-serde-node": "^2.0.11",
40
+ "@smithy/fetch-http-handler": "^2.2.3",
41
+ "@smithy/hash-node": "^2.0.11",
42
+ "@smithy/invalid-dependency": "^2.0.11",
43
+ "@smithy/middleware-content-length": "^2.0.13",
44
+ "@smithy/middleware-endpoint": "^2.1.0",
45
+ "@smithy/middleware-retry": "^2.0.16",
46
+ "@smithy/middleware-serde": "^2.0.11",
47
+ "@smithy/middleware-stack": "^2.0.5",
48
+ "@smithy/node-config-provider": "^2.1.1",
49
+ "@smithy/node-http-handler": "^2.1.7",
50
+ "@smithy/protocol-http": "^3.0.7",
51
+ "@smithy/smithy-client": "^2.1.11",
52
+ "@smithy/types": "^2.3.5",
53
+ "@smithy/url-parser": "^2.0.11",
54
54
  "@smithy/util-base64": "^2.0.0",
55
55
  "@smithy/util-body-length-browser": "^2.0.0",
56
56
  "@smithy/util-body-length-node": "^2.1.0",
57
- "@smithy/util-defaults-mode-browser": "^2.0.13",
58
- "@smithy/util-defaults-mode-node": "^2.0.15",
59
- "@smithy/util-retry": "^2.0.3",
60
- "@smithy/util-stream": "^2.0.14",
57
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
58
+ "@smithy/util-defaults-mode-node": "^2.0.19",
59
+ "@smithy/util-retry": "^2.0.4",
60
+ "@smithy/util-stream": "^2.0.16",
61
61
  "@smithy/util-utf8": "^2.0.0",
62
- "@smithy/util-waiter": "^2.0.10",
62
+ "@smithy/util-waiter": "^2.0.11",
63
63
  "tslib": "^2.5.0"
64
64
  },
65
65
  "devDependencies": {