Skip to content

Commit 1a2ccb4

Browse files
committed
Merge branch 'master' into dynamodb-replica-timeout
2 parents ba75e1b + ba99ad0 commit 1a2ccb4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/@aws-cdk/aws-ecs/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ one to run tasks on AWS Fargate.
6767
Here are the main differences:
6868

6969
- **Amazon EC2**: instances are under your control. Complete control of task to host
70-
allocation. Required to specify at least a memory reseration or limit for
70+
allocation. Required to specify at least a memory reservation or limit for
7171
every container. Can use Host, Bridge and AwsVpc networking modes. Can attach
7272
Classic Load Balancer. Can share volumes between container and host.
7373
- **AWS Fargate**: tasks run on AWS-managed instances, AWS manages task to host
@@ -175,7 +175,7 @@ cluster.addCapacity('AsgSpot', {
175175
When the `ecs.AddCapacityOptions` that you provide has a non-zero `taskDrainTime` (the default) then an SNS topic and Lambda are created to ensure that the
176176
cluster's instances have been properly drained of tasks before terminating. The SNS Topic is sent the instance-terminating lifecycle event from the AutoScalingGroup,
177177
and the Lambda acts on that event. If you wish to engage [server-side encryption](https://docs.aws.amazon.com/sns/latest/dg/sns-data-encryption.html) for this SNS Topic
178-
then you may do so by providing a KMS key for the `topicEncryptionKey` propery of `ecs.AddCapacityOptions`.
178+
then you may do so by providing a KMS key for the `topicEncryptionKey` property of `ecs.AddCapacityOptions`.
179179

180180
```ts
181181
// Given
@@ -190,7 +190,7 @@ cluster.addCapacity('ASGEncryptedSNS', {
190190

191191
## Task definitions
192192

193-
A task Definition describes what a single copy of a **task** should look like.
193+
A task definition describes what a single copy of a **task** should look like.
194194
A task definition has one or more containers; typically, it has one
195195
main container (the *default container* is the first one that's added
196196
to the task definition, and it is marked *essential*) and optionally

0 commit comments

Comments
 (0)