@aws-sdk/client-ecs 3.42.0 → 3.43.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,17 @@
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.43.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.42.0...v3.43.0) (2021-11-29)
7
+
8
+
9
+ ### Features
10
+
11
+ * **clients:** update clients as of 11/28/2021 ([#3072](https://github.com/aws/aws-sdk-js-v3/issues/3072)) ([2ad1622](https://github.com/aws/aws-sdk-js-v3/commit/2ad1622ba8586b926fe508055211803bb29e3976))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.42.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.41.0...v3.42.0) (2021-11-19)
7
18
 
8
19
  **Note:** Version bump only for package @aws-sdk/client-ecs
@@ -4175,8 +4175,12 @@ export interface ContainerDefinition {
4175
4175
  * <code>memoryReservation</code>, then that value is subtracted from the available
4176
4176
  * memory resources for the container instance where the container is placed. Otherwise,
4177
4177
  * the value of <code>memory</code> is used.</p>
4178
- * <p>The Docker daemon reserves a minimum of 4 MiB of memory for a container. Therefore, we
4179
- * recommend that you specify fewer than 4 MiB of memory for your containers.</p>
4178
+ * <p>The Docker 20.10.0 or later daemon reserves a minimum of 6 MiB of
4179
+ * memory for a container, so you should not specify fewer than 6 MiB of
4180
+ * memory for your containers.</p>
4181
+ * <p>The Docker 19.03.13-ce or earlier daemon reserves a minimum of 4 MiB
4182
+ * of memory for a container, so you should not specify fewer than 4 MiB of
4183
+ * memory for your containers.</p>
4180
4184
  */
4181
4185
  memory?: number;
4182
4186
  /**
@@ -4887,10 +4891,13 @@ export declare enum OSFamily {
4887
4891
  }
4888
4892
  /**
4889
4893
  * <p>Information about the platform for the Amazon ECS service or task.</p>
4894
+ * <p>For more informataion about <code>RuntimePlatform</code>, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html#runtime-platform">RuntimePlatform</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
4890
4895
  */
4891
4896
  export interface RuntimePlatform {
4892
4897
  /**
4893
4898
  * <p>The CPU architecture.</p>
4899
+ * <p>You can run your Linux tasks on an ARM-based platform by setting the value to <code>ARM64</code>. This option is avaiable
4900
+ * for tasks that run on Linuc Amazon EC2 instance or Linux containers on Fargate.</p>
4894
4901
  */
4895
4902
  cpuArchitecture?: CPUArchitecture | string;
4896
4903
  /**
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.42.0",
4
+ "version": "3.43.0",
5
5
  "scripts": {
6
6
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
7
  "build:cjs": "tsc -p tsconfig.json",
@@ -21,7 +21,7 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "2.0.0",
23
23
  "@aws-crypto/sha256-js": "2.0.0",
24
- "@aws-sdk/client-sts": "3.42.0",
24
+ "@aws-sdk/client-sts": "3.43.0",
25
25
  "@aws-sdk/config-resolver": "3.40.0",
26
26
  "@aws-sdk/credential-provider-node": "3.41.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.40.0",