@aws-sdk/client-ecs 3.316.0 → 3.318.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.
|
@@ -3723,6 +3723,7 @@ export interface LinuxParameters {
|
|
|
3723
3723
|
* <note>
|
|
3724
3724
|
* <p>If you're using tasks that use the Fargate launch type, the
|
|
3725
3725
|
* <code>maxSwap</code> parameter isn't supported.</p>
|
|
3726
|
+
* <p>If you're using tasks on Amazon Linux 2023 the <code>swappiness</code> parameter isn't supported.</p>
|
|
3726
3727
|
* </note>
|
|
3727
3728
|
*/
|
|
3728
3729
|
maxSwap?: number;
|
|
@@ -3738,6 +3739,7 @@ export interface LinuxParameters {
|
|
|
3738
3739
|
* <note>
|
|
3739
3740
|
* <p>If you're using tasks that use the Fargate launch type, the
|
|
3740
3741
|
* <code>swappiness</code> parameter isn't supported.</p>
|
|
3742
|
+
* <p>If you're using tasks on Amazon Linux 2023 the <code>swappiness</code> parameter isn't supported.</p>
|
|
3741
3743
|
* </note>
|
|
3742
3744
|
*/
|
|
3743
3745
|
swappiness?: number;
|
|
@@ -3797,6 +3799,15 @@ export type TransportProtocol = (typeof TransportProtocol)[keyof typeof Transpor
|
|
|
3797
3799
|
* network mode, specify the exposed ports using <code>containerPort</code>. The
|
|
3798
3800
|
* <code>hostPort</code> can be left blank or it must be the same value as the
|
|
3799
3801
|
* <code>containerPort</code>.</p>
|
|
3802
|
+
* <p>Most fields of this parameter (<code>containerPort</code>, <code>hostPort</code>,
|
|
3803
|
+
* <code>protocol</code>) maps to <code>PortBindings</code> in the
|
|
3804
|
+
* <a href="https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate">Create a container</a> section of the <a href="https://docs.docker.com/engine/api/v1.35/">Docker Remote API</a> and the
|
|
3805
|
+
* <code>--publish</code> option to <a href="https://docs.docker.com/engine/reference/commandline/run/">
|
|
3806
|
+
* <code>docker
|
|
3807
|
+
* run</code>
|
|
3808
|
+
* </a>. If the network mode of a task definition is set to
|
|
3809
|
+
* <code>host</code>, host ports must either be undefined or match the container port
|
|
3810
|
+
* in the port mapping.</p>
|
|
3800
3811
|
* <note>
|
|
3801
3812
|
* <p>You can't expose the same container port for multiple protocols. If you attempt
|
|
3802
3813
|
* this, an error is returned.</p>
|
|
@@ -8014,7 +8025,7 @@ export interface PutAccountSettingDefaultRequest {
|
|
|
8014
8025
|
* <p>When you specify <code>fargateFIPSMode</code> for the <code>name</code> and
|
|
8015
8026
|
* <code>enabled</code> for the <code>value</code>, Fargate uses FIPS-140 compliant
|
|
8016
8027
|
* cryptographic algorithms on your tasks. For more information about FIPS-140 compliance
|
|
8017
|
-
* with Fargate, see <a href="https://docs.aws.amazon.com/
|
|
8028
|
+
* with Fargate, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-fips-compliance.html"> Amazon Web Services Fargate Federal Information Processing Standard (FIPS) 140-2
|
|
8018
8029
|
* compliance</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
8019
8030
|
*/
|
|
8020
8031
|
name: SettingName | string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ecs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ecs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.318.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",
|