aws-sdk-ecs 1.111.0 → 1.113.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bcbc44501a831857c337390d2169af60bb54b6acecc4ac0b3d2fba1816fe78b1
4
- data.tar.gz: a3c80653f46ef67d82617ce94ed54586cd011d64d514aaf64a7de32d87d9d867
3
+ metadata.gz: a76ffb05a916f4f3f5ccd7fec5cbc2e06e8fb1c39f8e62066877416fd0d5e853
4
+ data.tar.gz: 61381602f6d9cdb9733bfabd38ddac65a0322afd32b59ebf072984c86471a5dc
5
5
  SHA512:
6
- metadata.gz: 1c365f23a7b7e1ae78a34e96ee0bee017f65ed6e09c72ce0a539f34fed26eca02cc96376f6b09dbad317c7741b37731ec2df32af5509f24d8de70548aaef3de3
7
- data.tar.gz: 6c227527f1635c4076135c4af22cbaf0c0169d17b7f751d64e541d3f763045ccdcf60b57692b68898904189a0aeb7234333b20e70f3f4dc83be020af31ccd64a
6
+ metadata.gz: 7bb1494e02873743999bbea2dcddefed53ee93a42a0258fcfde18ff55880441a510751c5b5131750fa30f6c1406b8917111019353414d5d374b5f86491dbdfea
7
+ data.tar.gz: 636e49a6438e17287d95dccd965c853c468827cf927bba3c25061d44e3dc7b08005b161838eacea58b2d5bab9afa0b348752a7c0c05fa9b1866b83000dd60bab
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.113.0 (2023-04-10)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for enabling FIPS compliance on Amazon ECS Fargate tasks
8
+
9
+ 1.112.0 (2023-04-05)
10
+ ------------------
11
+
12
+ * Feature - This is a document only updated to add information about Amazon Elastic Inference (EI).
13
+
4
14
  1.111.0 (2023-02-23)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.111.0
1
+ 1.113.0
@@ -735,6 +735,17 @@ module Aws::ECS
735
735
  # specified cluster. To update an existing service, see the
736
736
  # UpdateService action.
737
737
  #
738
+ # <note markdown="1"> Starting April 15, 2023, Amazon Web Services will not onboard new
739
+ # customers to Amazon Elastic Inference (EI), and will help current
740
+ # customers migrate their workloads to options that offer better price
741
+ # and performance. After April 15, 2023, new customers will not be able
742
+ # to launch instances with Amazon EI accelerators in Amazon SageMaker,
743
+ # Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI
744
+ # at least once during the past 30-day period are considered current
745
+ # customers and will be able to continue using the service.
746
+ #
747
+ # </note>
748
+ #
738
749
  # In addition to maintaining the desired count of tasks in your service,
739
750
  # you can optionally run your service behind one or more load balancers.
740
751
  # The load balancers distribute traffic across the tasks that are
@@ -855,6 +866,13 @@ module Aws::ECS
855
866
  # A task definition must be specified if the service uses either the
856
867
  # `ECS` or `CODE_DEPLOY` deployment controllers.
857
868
  #
869
+ # For more information about deployment types, see [Amazon ECS
870
+ # deployment types][1].
871
+ #
872
+ #
873
+ #
874
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-types.html
875
+ #
858
876
  # @option params [Array<Types::LoadBalancer>] :load_balancers
859
877
  # A load balancer object representing the load balancers to use with
860
878
  # your service. For more information, see [Service load balancing][1] in
@@ -1149,10 +1167,14 @@ module Aws::ECS
1149
1167
  # Specifies whether to propagate the tags from the task definition to
1150
1168
  # the task. If no value is specified, the tags aren't propagated. Tags
1151
1169
  # can only be propagated to the task during task creation. To add tags
1152
- # to a task after task creation, use the TagResource API action.
1170
+ # to a task after task creation, use the [TagResource][1] API action.
1171
+ #
1172
+ #
1173
+ #
1174
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_TagResource.html
1153
1175
  #
1154
1176
  # @option params [Boolean] :enable_execute_command
1155
- # Determines whether the execute command functionality is enabled for
1177
+ # Determines whether the execute command functionality is turned on for
1156
1178
  # the service. If `true`, this enables execute command functionality on
1157
1179
  # all containers in the service tasks.
1158
1180
  #
@@ -1865,13 +1887,13 @@ module Aws::ECS
1865
1887
  # @example Request syntax with placeholder values
1866
1888
  #
1867
1889
  # resp = client.delete_account_setting({
1868
- # name: "serviceLongArnFormat", # required, accepts serviceLongArnFormat, taskLongArnFormat, containerInstanceLongArnFormat, awsvpcTrunking, containerInsights
1890
+ # name: "serviceLongArnFormat", # required, accepts serviceLongArnFormat, taskLongArnFormat, containerInstanceLongArnFormat, awsvpcTrunking, containerInsights, fargateFIPSMode
1869
1891
  # principal_arn: "String",
1870
1892
  # })
1871
1893
  #
1872
1894
  # @example Response structure
1873
1895
  #
1874
- # resp.setting.name #=> String, one of "serviceLongArnFormat", "taskLongArnFormat", "containerInstanceLongArnFormat", "awsvpcTrunking", "containerInsights"
1896
+ # resp.setting.name #=> String, one of "serviceLongArnFormat", "taskLongArnFormat", "containerInstanceLongArnFormat", "awsvpcTrunking", "containerInsights", "fargateFIPSMode"
1875
1897
  # resp.setting.value #=> String
1876
1898
  # resp.setting.principal_arn #=> String
1877
1899
  #
@@ -4267,7 +4289,7 @@ module Aws::ECS
4267
4289
  #
4268
4290
  #
4269
4291
  #
4270
- # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-exec.htm
4292
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-exec.html
4271
4293
  #
4272
4294
  # @option params [String] :cluster
4273
4295
  # The Amazon Resource Name (ARN) or short name of the cluster the task
@@ -4512,7 +4534,7 @@ module Aws::ECS
4512
4534
  # @example Request syntax with placeholder values
4513
4535
  #
4514
4536
  # resp = client.list_account_settings({
4515
- # name: "serviceLongArnFormat", # accepts serviceLongArnFormat, taskLongArnFormat, containerInstanceLongArnFormat, awsvpcTrunking, containerInsights
4537
+ # name: "serviceLongArnFormat", # accepts serviceLongArnFormat, taskLongArnFormat, containerInstanceLongArnFormat, awsvpcTrunking, containerInsights, fargateFIPSMode
4516
4538
  # value: "String",
4517
4539
  # principal_arn: "String",
4518
4540
  # effective_settings: false,
@@ -4523,7 +4545,7 @@ module Aws::ECS
4523
4545
  # @example Response structure
4524
4546
  #
4525
4547
  # resp.settings #=> Array
4526
- # resp.settings[0].name #=> String, one of "serviceLongArnFormat", "taskLongArnFormat", "containerInstanceLongArnFormat", "awsvpcTrunking", "containerInsights"
4548
+ # resp.settings[0].name #=> String, one of "serviceLongArnFormat", "taskLongArnFormat", "containerInstanceLongArnFormat", "awsvpcTrunking", "containerInsights", "fargateFIPSMode"
4527
4549
  # resp.settings[0].value #=> String
4528
4550
  # resp.settings[0].principal_arn #=> String
4529
4551
  # resp.next_token #=> String
@@ -5387,11 +5409,10 @@ module Aws::ECS
5387
5409
  # Modifies an account setting. Account settings are set on a per-Region
5388
5410
  # basis.
5389
5411
  #
5390
- # If you change the account setting for the root user, the default
5391
- # settings for all of the users and roles that no individual account
5392
- # setting was specified are reset for. For more information, see
5393
- # [Account Settings][1] in the *Amazon Elastic Container Service
5394
- # Developer Guide*.
5412
+ # If you change the root user account setting, the default settings are
5413
+ # reset for users and roles that do not have specified individual
5414
+ # account settings. For more information, see [Account Settings][1] in
5415
+ # the *Amazon Elastic Container Service Developer Guide*.
5395
5416
  #
5396
5417
  # When `serviceLongArnFormat`, `taskLongArnFormat`, or
5397
5418
  # `containerInstanceLongArnFormat` are specified, the Amazon Resource
@@ -5405,19 +5426,19 @@ module Aws::ECS
5405
5426
  #
5406
5427
  # When `awsvpcTrunking` is specified, the elastic network interface
5407
5428
  # (ENI) limit for any new container instances that support the feature
5408
- # is changed. If `awsvpcTrunking` is enabled, any new container
5429
+ # is changed. If `awsvpcTrunking` is turned on, any new container
5409
5430
  # instances that support the feature are launched have the increased ENI
5410
5431
  # limits available to them. For more information, see [Elastic Network
5411
5432
  # Interface Trunking][2] in the *Amazon Elastic Container Service
5412
5433
  # Developer Guide*.
5413
5434
  #
5414
5435
  # When `containerInsights` is specified, the default setting indicating
5415
- # whether CloudWatch Container Insights is enabled for your clusters is
5416
- # changed. If `containerInsights` is enabled, any new clusters that are
5417
- # created will have Container Insights enabled unless you disable it
5418
- # during cluster creation. For more information, see [CloudWatch
5419
- # Container Insights][3] in the *Amazon Elastic Container Service
5420
- # Developer Guide*.
5436
+ # whether Amazon Web Services CloudWatch Container Insights is turned on
5437
+ # for your clusters is changed. If `containerInsights` is turned on, any
5438
+ # new clusters that are created will have Container Insights turned on
5439
+ # unless you disable it during cluster creation. For more information,
5440
+ # see [CloudWatch Container Insights][3] in the *Amazon Elastic
5441
+ # Container Service Developer Guide*.
5421
5442
  #
5422
5443
  #
5423
5444
  #
@@ -5434,8 +5455,10 @@ module Aws::ECS
5434
5455
  # for your Amazon ECS container instances is affected. If
5435
5456
  # `awsvpcTrunking` is specified, the elastic network interface (ENI)
5436
5457
  # limit for your Amazon ECS container instances is affected. If
5437
- # `containerInsights` is specified, the default setting for CloudWatch
5438
- # Container Insights for your clusters is affected.
5458
+ # `containerInsights` is specified, the default setting for Amazon Web
5459
+ # Services CloudWatch Container Insights for your clusters is affected.
5460
+ # If `fargateFIPSMode` is specified, Fargate FIPS 140 compliance is
5461
+ # affected.
5439
5462
  #
5440
5463
  # @option params [required, String] :value
5441
5464
  # The account setting value for the specified principal ARN. Accepted
@@ -5502,14 +5525,14 @@ module Aws::ECS
5502
5525
  # @example Request syntax with placeholder values
5503
5526
  #
5504
5527
  # resp = client.put_account_setting({
5505
- # name: "serviceLongArnFormat", # required, accepts serviceLongArnFormat, taskLongArnFormat, containerInstanceLongArnFormat, awsvpcTrunking, containerInsights
5528
+ # name: "serviceLongArnFormat", # required, accepts serviceLongArnFormat, taskLongArnFormat, containerInstanceLongArnFormat, awsvpcTrunking, containerInsights, fargateFIPSMode
5506
5529
  # value: "String", # required
5507
5530
  # principal_arn: "String",
5508
5531
  # })
5509
5532
  #
5510
5533
  # @example Response structure
5511
5534
  #
5512
- # resp.setting.name #=> String, one of "serviceLongArnFormat", "taskLongArnFormat", "containerInstanceLongArnFormat", "awsvpcTrunking", "containerInsights"
5535
+ # resp.setting.name #=> String, one of "serviceLongArnFormat", "taskLongArnFormat", "containerInstanceLongArnFormat", "awsvpcTrunking", "containerInsights", "fargateFIPSMode"
5513
5536
  # resp.setting.value #=> String
5514
5537
  # resp.setting.principal_arn #=> String
5515
5538
  #
@@ -5535,18 +5558,19 @@ module Aws::ECS
5535
5558
  # for your Amazon ECS container instances is affected. If
5536
5559
  # `awsvpcTrunking` is specified, the ENI limit for your Amazon ECS
5537
5560
  # container instances is affected. If `containerInsights` is specified,
5538
- # the default setting for CloudWatch Container Insights for your
5539
- # clusters is affected.
5540
- #
5541
- # Fargate is transitioning from task count-based quotas to vCPU-based
5542
- # quotas. You can set the name to `fargateVCPULimit` to opt in or opt
5543
- # out of the vCPU-based quotas. For information about the opt in
5544
- # timeline, see [Fargate vCPU-based quotas timeline][1] in the *Amazon
5545
- # ECS Developer Guide*.
5561
+ # the default setting for Amazon Web Services CloudWatch Container
5562
+ # Insights for your clusters is affected.
5563
+ #
5564
+ # When you specify `fargateFIPSMode` for the `name` and `enabled` for
5565
+ # the `value`, Fargate uses FIPS-140 compliant cryptographic algorithms
5566
+ # on your tasks. For more information about FIPS-140 compliance with
5567
+ # Fargate, see [ Amazon Web Services Fargate Federal Information
5568
+ # Processing Standard (FIPS) 140-2 compliance][1] in the *Amazon Elastic
5569
+ # Container Service Developer Guide*.
5546
5570
  #
5547
5571
  #
5548
5572
  #
5549
- # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-account-settings.html#fargate-quota-timeline
5573
+ # [1]: https://docs.aws.amazon.com/AWSEC2ContainerServiceDocs/build/server-root/AmazonECS/latest/developerguide/ecs-fips-compliance.html
5550
5574
  #
5551
5575
  # @option params [required, String] :value
5552
5576
  # The account setting value for the specified principal ARN. Accepted
@@ -5580,13 +5604,13 @@ module Aws::ECS
5580
5604
  # @example Request syntax with placeholder values
5581
5605
  #
5582
5606
  # resp = client.put_account_setting_default({
5583
- # name: "serviceLongArnFormat", # required, accepts serviceLongArnFormat, taskLongArnFormat, containerInstanceLongArnFormat, awsvpcTrunking, containerInsights
5607
+ # name: "serviceLongArnFormat", # required, accepts serviceLongArnFormat, taskLongArnFormat, containerInstanceLongArnFormat, awsvpcTrunking, containerInsights, fargateFIPSMode
5584
5608
  # value: "String", # required
5585
5609
  # })
5586
5610
  #
5587
5611
  # @example Response structure
5588
5612
  #
5589
- # resp.setting.name #=> String, one of "serviceLongArnFormat", "taskLongArnFormat", "containerInstanceLongArnFormat", "awsvpcTrunking", "containerInsights"
5613
+ # resp.setting.name #=> String, one of "serviceLongArnFormat", "taskLongArnFormat", "containerInstanceLongArnFormat", "awsvpcTrunking", "containerInsights", "fargateFIPSMode"
5590
5614
  # resp.setting.value #=> String
5591
5615
  # resp.setting.principal_arn #=> String
5592
5616
  #
@@ -6307,8 +6331,8 @@ module Aws::ECS
6307
6331
  # more information, see [Fargate task storage][1] in the *Amazon ECS
6308
6332
  # User Guide for Fargate*.
6309
6333
  #
6310
- # <note markdown="1"> This parameter is only supported for tasks hosted on Fargate using the
6311
- # following platform versions:
6334
+ # <note markdown="1"> For tasks using the Fargate launch type, the task requires the
6335
+ # following platforms:
6312
6336
  #
6313
6337
  # * Linux platform version `1.4.0` or later.
6314
6338
  #
@@ -6814,6 +6838,17 @@ module Aws::ECS
6814
6838
  # Alternatively, you can use StartTask to use your own scheduler or
6815
6839
  # place tasks manually on specific container instances.
6816
6840
  #
6841
+ # <note markdown="1"> Starting April 15, 2023, Amazon Web Services will not onboard new
6842
+ # customers to Amazon Elastic Inference (EI), and will help current
6843
+ # customers migrate their workloads to options that offer better price
6844
+ # and performance. After April 15, 2023, new customers will not be able
6845
+ # to launch instances with Amazon EI accelerators in Amazon SageMaker,
6846
+ # Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI
6847
+ # at least once during the past 30-day period are considered current
6848
+ # customers and will be able to continue using the service.
6849
+ #
6850
+ # </note>
6851
+ #
6817
6852
  # The Amazon ECS API follows an eventual consistency model. This is
6818
6853
  # because of the distributed nature of the system supporting the API.
6819
6854
  # This means that the result of an API command you run that affects your
@@ -7307,6 +7342,17 @@ module Aws::ECS
7307
7342
  # Starts a new task from the specified task definition on the specified
7308
7343
  # container instance or instances.
7309
7344
  #
7345
+ # <note markdown="1"> Starting April 15, 2023, Amazon Web Services will not onboard new
7346
+ # customers to Amazon Elastic Inference (EI), and will help current
7347
+ # customers migrate their workloads to options that offer better price
7348
+ # and performance. After April 15, 2023, new customers will not be able
7349
+ # to launch instances with Amazon EI accelerators in Amazon SageMaker,
7350
+ # Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI
7351
+ # at least once during the past 30-day period are considered current
7352
+ # customers and will be able to continue using the service.
7353
+ #
7354
+ # </note>
7355
+ #
7310
7356
  # Alternatively, you can use RunTask to place tasks for you. For more
7311
7357
  # information, see [Scheduling Tasks][1] in the *Amazon Elastic
7312
7358
  # Container Service Developer Guide*.
@@ -7335,7 +7381,7 @@ module Aws::ECS
7335
7381
  # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-using-tags.html
7336
7382
  #
7337
7383
  # @option params [Boolean] :enable_execute_command
7338
- # Whether or not the execute command functionality is enabled for the
7384
+ # Whether or not the execute command functionality is turned on for the
7339
7385
  # task. If `true`, this enables execute command functionality on all
7340
7386
  # containers in the task.
7341
7387
  #
@@ -9363,7 +9409,7 @@ module Aws::ECS
9363
9409
  # [deployments][2].
9364
9410
  #
9365
9411
  # Task-protection, by default, expires after 2 hours at which point
9366
- # Amazon ECS unsets the `protectionEnabled` property making the task
9412
+ # Amazon ECS clears the `protectionEnabled` property making the task
9367
9413
  # eligible for termination by a subsequent scale-in event.
9368
9414
  #
9369
9415
  # You can specify a custom expiration period for task protection from 1
@@ -9637,7 +9683,7 @@ module Aws::ECS
9637
9683
  params: params,
9638
9684
  config: config)
9639
9685
  context[:gem_name] = 'aws-sdk-ecs'
9640
- context[:gem_version] = '1.111.0'
9686
+ context[:gem_version] = '1.113.0'
9641
9687
  Seahorse::Client::Request.new(handlers, context)
9642
9688
  end
9643
9689
 
@@ -148,9 +148,8 @@ module Aws::ECS
148
148
  # Amazon EC2 instances in an Auto Scaling group that contain tasks
149
149
  # from being terminated during a scale-in action. The Auto Scaling
150
150
  # group and each instance in the Auto Scaling group must have instance
151
- # protection from scale-in actions enabled as well. For more
152
- # information, see [Instance Protection][1] in the *Auto Scaling User
153
- # Guide*.
151
+ # protection from scale-in actions on as well. For more information,
152
+ # see [Instance Protection][1] in the *Auto Scaling User Guide*.
154
153
  #
155
154
  # When managed termination protection is off, your Amazon EC2
156
155
  # instances aren't protected from termination when the Auto Scaling
@@ -774,7 +773,7 @@ module Aws::ECS
774
773
  #
775
774
  #
776
775
  #
777
- # [1]: https://docs.aws.amazon.com/
776
+ # [1]: https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-services.html
778
777
  # @return [String]
779
778
  #
780
779
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ClusterServiceConnectDefaultsRequest AWS API Documentation
@@ -789,16 +788,17 @@ module Aws::ECS
789
788
  # turn on CloudWatch Container Insights for a cluster.
790
789
  #
791
790
  # @!attribute [rw] name
792
- # The name of the cluster setting. The only supported value is
793
- # `containerInsights`.
791
+ # The name of the cluster setting. The value is `containerInsights` .
794
792
  # @return [String]
795
793
  #
796
794
  # @!attribute [rw] value
797
795
  # The value to set for the cluster setting. The supported values are
798
- # `enabled` and `disabled`. If `enabled` is specified, CloudWatch
799
- # Container Insights will be enabled for the cluster, otherwise it
800
- # will be off unless the `containerInsights` account setting is turned
801
- # on. If a cluster value is specified, it will override the
796
+ # `enabled` and `disabled`.
797
+ #
798
+ # If you set `name` to `containerInsights` and `value` to `enabled`,
799
+ # CloudWatch Container Insights will be on for the cluster, otherwise
800
+ # it will be off unless the `containerInsights` account setting is
801
+ # turned on. If a cluster value is specified, it will override the
802
802
  # `containerInsights` value set with [PutAccountSetting][1] or
803
803
  # [PutAccountSettingDefault][2].
804
804
  #
@@ -2511,6 +2511,13 @@ module Aws::ECS
2511
2511
  #
2512
2512
  # A task definition must be specified if the service uses either the
2513
2513
  # `ECS` or `CODE_DEPLOY` deployment controllers.
2514
+ #
2515
+ # For more information about deployment types, see [Amazon ECS
2516
+ # deployment types][1].
2517
+ #
2518
+ #
2519
+ #
2520
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-types.html
2514
2521
  # @return [String]
2515
2522
  #
2516
2523
  # @!attribute [rw] load_balancers
@@ -2830,13 +2837,18 @@ module Aws::ECS
2830
2837
  # Specifies whether to propagate the tags from the task definition to
2831
2838
  # the task. If no value is specified, the tags aren't propagated.
2832
2839
  # Tags can only be propagated to the task during task creation. To add
2833
- # tags to a task after task creation, use the TagResource API action.
2840
+ # tags to a task after task creation, use the [TagResource][1] API
2841
+ # action.
2842
+ #
2843
+ #
2844
+ #
2845
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_TagResource.html
2834
2846
  # @return [String]
2835
2847
  #
2836
2848
  # @!attribute [rw] enable_execute_command
2837
- # Determines whether the execute command functionality is enabled for
2838
- # the service. If `true`, this enables execute command functionality
2839
- # on all containers in the service tasks.
2849
+ # Determines whether the execute command functionality is turned on
2850
+ # for the service. If `true`, this enables execute command
2851
+ # functionality on all containers in the service tasks.
2840
2852
  # @return [Boolean]
2841
2853
  #
2842
2854
  # @!attribute [rw] service_connect_configuration
@@ -3440,9 +3452,9 @@ module Aws::ECS
3440
3452
  # started, it begins in an `IN_PROGRESS` state. When the service
3441
3453
  # reaches a steady state, the deployment transitions to a `COMPLETED`
3442
3454
  # state. If the service fails to reach a steady state and circuit
3443
- # breaker is enabled, the deployment transitions to a `FAILED` state.
3444
- # A deployment in `FAILED` state doesn't launch any new tasks. For
3445
- # more information, see DeploymentCircuitBreaker.
3455
+ # breaker is turned on, the deployment transitions to a `FAILED`
3456
+ # state. A deployment in `FAILED` state doesn't launch any new tasks.
3457
+ # For more information, see DeploymentCircuitBreaker.
3446
3458
  # @return [String]
3447
3459
  #
3448
3460
  # @!attribute [rw] rollout_state_reason
@@ -3554,12 +3566,12 @@ module Aws::ECS
3554
3566
  # </note>
3555
3567
  #
3556
3568
  # The **deployment circuit breaker** determines whether a service
3557
- # deployment will fail if the service can't reach a steady state. If
3558
- # enabled, a service deployment will transition to a failed state and
3559
- # stop launching new tasks. You can also configure Amazon ECS to roll
3560
- # back your service to the last completed deployment after a failure.
3561
- # For more information, see [Rolling update][1] in the *Amazon Elastic
3562
- # Container Service Developer Guide*.
3569
+ # deployment will fail if the service can't reach a steady state. If it
3570
+ # is turned on, a service deployment will transition to a failed state
3571
+ # and stop launching new tasks. You can also configure Amazon ECS to
3572
+ # roll back your service to the last completed deployment after a
3573
+ # failure. For more information, see [Rolling update][1] in the *Amazon
3574
+ # Elastic Container Service Developer Guide*.
3563
3575
  #
3564
3576
  #
3565
3577
  #
@@ -4380,7 +4392,7 @@ module Aws::ECS
4380
4392
  # specified, the root directory value specified in the
4381
4393
  # `EFSVolumeConfiguration` must either be omitted or set to `/` which
4382
4394
  # will enforce the path set on the EFS access point. If an access
4383
- # point is used, transit encryption must be enabled in the
4395
+ # point is used, transit encryption must be on in the
4384
4396
  # `EFSVolumeConfiguration`. For more information, see [Working with
4385
4397
  # Amazon EFS access points][1] in the *Amazon Elastic File System User
4386
4398
  # Guide*.
@@ -4392,11 +4404,12 @@ module Aws::ECS
4392
4404
  #
4393
4405
  # @!attribute [rw] iam
4394
4406
  # Determines whether to use the Amazon ECS task role defined in a task
4395
- # definition when mounting the Amazon EFS file system. If enabled,
4396
- # transit encryption must be enabled in the `EFSVolumeConfiguration`.
4397
- # If this parameter is omitted, the default value of `DISABLED` is
4398
- # used. For more information, see [Using Amazon EFS access points][1]
4399
- # in the *Amazon Elastic Container Service Developer Guide*.
4407
+ # definition when mounting the Amazon EFS file system. If it is turned
4408
+ # on, transit encryption must be turned on in the
4409
+ # `EFSVolumeConfiguration`. If this parameter is omitted, the default
4410
+ # value of `DISABLED` is used. For more information, see [Using Amazon
4411
+ # EFS access points][1] in the *Amazon Elastic Container Service
4412
+ # Developer Guide*.
4400
4413
  #
4401
4414
  #
4402
4415
  #
@@ -4439,10 +4452,10 @@ module Aws::ECS
4439
4452
  # @!attribute [rw] transit_encryption
4440
4453
  # Determines whether to use encryption for Amazon EFS data in transit
4441
4454
  # between the Amazon ECS host and the Amazon EFS server. Transit
4442
- # encryption must be enabled if Amazon EFS IAM authorization is used.
4443
- # If this parameter is omitted, the default value of `DISABLED` is
4444
- # used. For more information, see [Encrypting data in transit][1] in
4445
- # the *Amazon Elastic File System User Guide*.
4455
+ # encryption must be turned on if Amazon EFS IAM authorization is
4456
+ # used. If this parameter is omitted, the default value of `DISABLED`
4457
+ # is used. For more information, see [Encrypting data in transit][1]
4458
+ # in the *Amazon Elastic File System User Guide*.
4446
4459
  #
4447
4460
  #
4448
4461
  #
@@ -4531,9 +4544,12 @@ module Aws::ECS
4531
4544
  # more information, see [Fargate task storage][1] in the *Amazon ECS
4532
4545
  # User Guide for Fargate*.
4533
4546
  #
4534
- # <note markdown="1"> This parameter is only supported for tasks hosted on Fargate using
4535
- # Linux platform version `1.4.0` or later. This parameter is not
4536
- # supported for Windows containers on Fargate.
4547
+ # <note markdown="1"> For tasks using the Fargate launch type, the task requires the
4548
+ # following platforms:
4549
+ #
4550
+ # * Linux platform version `1.4.0` or later.
4551
+ #
4552
+ # ^
4537
4553
  #
4538
4554
  # </note>
4539
4555
  #
@@ -4566,14 +4582,14 @@ module Aws::ECS
4566
4582
  # The log setting to use for redirecting logs for your execute command
4567
4583
  # results. The following log settings are available.
4568
4584
  #
4569
- # * `NONE`\: The execute command session is not logged.
4585
+ # * `NONE`: The execute command session is not logged.
4570
4586
  #
4571
- # * `DEFAULT`\: The `awslogs` configuration in the task definition is
4587
+ # * `DEFAULT`: The `awslogs` configuration in the task definition is
4572
4588
  # used. If no logging parameter is specified, it defaults to this
4573
4589
  # value. If no `awslogs` log driver is configured in the task
4574
4590
  # definition, the output won't be logged.
4575
4591
  #
4576
- # * `OVERRIDE`\: Specify the logging details as a part of
4592
+ # * `OVERRIDE`: Specify the logging details as a part of
4577
4593
  # `logConfiguration`. If the `OVERRIDE` logging option is specified,
4578
4594
  # the `logConfiguration` is required.
4579
4595
  # @return [String]
@@ -4887,14 +4903,14 @@ module Aws::ECS
4887
4903
  # @!attribute [rw] protected_tasks
4888
4904
  # A list of tasks with the following information.
4889
4905
  #
4890
- # * `taskArn`\: The task ARN.
4906
+ # * `taskArn`: The task ARN.
4891
4907
  #
4892
- # * `protectionEnabled`\: The protection status of the task. If
4893
- # scale-in protection is enabled for a task, the value is `true`.
4908
+ # * `protectionEnabled`: The protection status of the task. If
4909
+ # scale-in protection is turned on for a task, the value is `true`.
4894
4910
  # Otherwise, it is `false`.
4895
4911
  #
4896
- # * `expirationDate`\: The epoch time when protection for the task
4897
- # will expire.
4912
+ # * `expirationDate`: The epoch time when protection for the task will
4913
+ # expire.
4898
4914
  # @return [Array<Types::ProtectedTask>]
4899
4915
  #
4900
4916
  # @!attribute [rw] failures
@@ -4913,7 +4929,8 @@ module Aws::ECS
4913
4929
  # An object representing a container health check. Health check
4914
4930
  # parameters that are specified in a container definition override any
4915
4931
  # Docker health checks that exist in the container image (such as those
4916
- # specified in a parent image or from the image's Dockerfile).
4932
+ # specified in a parent image or from the image's Dockerfile). This
4933
+ # configuration maps to the `HEALTHCHECK` parameter of [docker run][1].
4917
4934
  #
4918
4935
  # <note markdown="1"> The Amazon ECS container agent only monitors and reports on the health
4919
4936
  # checks specified in the task definition. Amazon ECS does not monitor
@@ -4939,9 +4956,8 @@ module Aws::ECS
4939
4956
  # no container health check defined.
4940
4957
  #
4941
4958
  # The following describes the possible `healthStatus` values for a task.
4942
- # The container health check status of nonessential containers only
4943
- # affects the health status of a task if no essential containers have
4944
- # health checks defined.
4959
+ # The container health check status of non-essential containers don't
4960
+ # have an effect on the health status of a task.
4945
4961
  #
4946
4962
  # * `HEALTHY`-All essential containers within the task have passed their
4947
4963
  # health checks.
@@ -4950,38 +4966,33 @@ module Aws::ECS
4950
4966
  # health check.
4951
4967
  #
4952
4968
  # * `UNKNOWN`-The essential containers within the task are still having
4953
- # their health checks evaluated or there are only nonessential
4954
- # containers with health checks defined.
4969
+ # their health checks evaluated, there are only nonessential
4970
+ # containers with health checks defined, or there are no container
4971
+ # health checks defined.
4955
4972
  #
4956
4973
  # If a task is run manually, and not as part of a service, the task will
4957
4974
  # continue its lifecycle regardless of its health status. For tasks that
4958
4975
  # are part of a service, if the task reports as unhealthy then the task
4959
4976
  # will be stopped and the service scheduler will replace it.
4960
4977
  #
4961
- # For tasks that are a part of a service and the service uses the `ECS`
4962
- # rolling deployment type, the deployment is paused while the new tasks
4963
- # have the `UNKNOWN` task health check status. For example, tasks that
4964
- # define health checks for nonessential containers when no essential
4965
- # containers have health checks will have the `UNKNOWN` health check
4966
- # status indefinitely which prevents the deployment from completing.
4967
- #
4968
4978
  # The following are notes about container health check support:
4969
4979
  #
4970
4980
  # * Container health checks require version 1.17.0 or greater of the
4971
4981
  # Amazon ECS container agent. For more information, see [Updating the
4972
- # Amazon ECS container agent][1].
4982
+ # Amazon ECS container agent][2].
4973
4983
  #
4974
4984
  # * Container health checks are supported for Fargate tasks if you're
4975
4985
  # using platform version `1.1.0` or greater. For more information, see
4976
- # [Fargate platform versions][2].
4986
+ # [Fargate platform versions][3].
4977
4987
  #
4978
4988
  # * Container health checks aren't supported for tasks that are part of
4979
4989
  # a service that's configured to use a Classic Load Balancer.
4980
4990
  #
4981
4991
  #
4982
4992
  #
4983
- # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-update.html
4984
- # [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
4993
+ # [1]: https://docs.docker.com/engine/reference/run/
4994
+ # [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-update.html
4995
+ # [3]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
4985
4996
  #
4986
4997
  # @!attribute [rw] command
4987
4998
  # A string array representing the command that the container runs to
@@ -5110,7 +5121,11 @@ module Aws::ECS
5110
5121
  # @!attribute [rw] device_name
5111
5122
  # The Elastic Inference accelerator device name. The `deviceName` must
5112
5123
  # also be referenced in a container definition as a
5113
- # ResourceRequirement.
5124
+ # [ResourceRequirement][1].
5125
+ #
5126
+ #
5127
+ #
5128
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_ResourceRequirement.html
5114
5129
  # @return [String]
5115
5130
  #
5116
5131
  # @!attribute [rw] device_type
@@ -5294,8 +5309,12 @@ module Aws::ECS
5294
5309
  #
5295
5310
  class LimitExceededException < Aws::EmptyStructure; end
5296
5311
 
5297
- # Linux-specific options that are applied to the container, such as
5298
- # Linux KernelCapabilities.
5312
+ # The Linux-specific options that are applied to the container, such as
5313
+ # Linux [KernelCapabilities][1].
5314
+ #
5315
+ #
5316
+ #
5317
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_KernelCapabilities.html
5299
5318
  #
5300
5319
  # @!attribute [rw] capabilities
5301
5320
  # The Linux capabilities for the container that are added to or
@@ -6177,10 +6196,6 @@ module Aws::ECS
6177
6196
 
6178
6197
  # The load balancer configuration to use with a service or task set.
6179
6198
  #
6180
- # For specific notes and restrictions regarding the use of load
6181
- # balancers with services and task sets, see the CreateService and
6182
- # CreateTaskSet actions.
6183
- #
6184
6199
  # When you add, update, or remove a load balancer configuration, Amazon
6185
6200
  # ECS starts a new deployment with the updated Elastic Load Balancing
6186
6201
  # configuration. This causes tasks to register to and deregister from
@@ -6377,7 +6392,7 @@ module Aws::ECS
6377
6392
  #
6378
6393
  # @!attribute [rw] name
6379
6394
  # The name of the managed agent. When the execute command feature is
6380
- # enabled, the managed agent name is `ExecuteCommandAgent`.
6395
+ # turned on, the managed agent name is `ExecuteCommandAgent`.
6381
6396
  # @return [String]
6382
6397
  #
6383
6398
  # @!attribute [rw] reason
@@ -6431,7 +6446,7 @@ module Aws::ECS
6431
6446
  # The managed scaling settings for the Auto Scaling group capacity
6432
6447
  # provider.
6433
6448
  #
6434
- # When managed scaling is enabled, Amazon ECS manages the scale-in and
6449
+ # When managed scaling is turned on, Amazon ECS manages the scale-in and
6435
6450
  # scale-out actions of the Auto Scaling group. Amazon ECS manages a
6436
6451
  # target tracking scaling policy using an Amazon ECS managed CloudWatch
6437
6452
  # metric with the specified `targetCapacity` value as the target value
@@ -6450,10 +6465,13 @@ module Aws::ECS
6450
6465
  # @return [String]
6451
6466
  #
6452
6467
  # @!attribute [rw] target_capacity
6453
- # The target capacity value for the capacity provider. The specified
6454
- # value must be greater than `0` and less than or equal to `100`. A
6455
- # value of `100` results in the Amazon EC2 instances in your Auto
6456
- # Scaling group being completely used.
6468
+ # The target capacity utilization as a percentage for the capacity
6469
+ # provider. The specified value must be greater than `0` and less than
6470
+ # or equal to `100`. For example, if you want the capacity provider to
6471
+ # maintain 10% spare capacity, then that means the utilization is 90%,
6472
+ # so use a `targetCapacity` of `90`. The default value of `100`
6473
+ # percent results in the Amazon EC2 instances in your Auto Scaling
6474
+ # group being completely used.
6457
6475
  # @return [Integer]
6458
6476
  #
6459
6477
  # @!attribute [rw] minimum_scaling_step_size
@@ -6509,7 +6527,7 @@ module Aws::ECS
6509
6527
  #
6510
6528
  class MissingVersionException < Aws::EmptyStructure; end
6511
6529
 
6512
- # Details for a volume mount point that's used in a container
6530
+ # The details for a volume mount point that's used in a container
6513
6531
  # definition.
6514
6532
  #
6515
6533
  # @!attribute [rw] source_volume
@@ -6570,7 +6588,7 @@ module Aws::ECS
6570
6588
  # The port number range on the container that's bound to the
6571
6589
  # dynamically mapped host port range.
6572
6590
  #
6573
- # The following rules apply when you specify a `containerPortRange`\:
6591
+ # The following rules apply when you specify a `containerPortRange`:
6574
6592
  #
6575
6593
  # * You must use either the `bridge` network mode or the `awsvpc`
6576
6594
  # network mode.
@@ -6859,7 +6877,7 @@ module Aws::ECS
6859
6877
  # is a static mapping strategy.
6860
6878
  #
6861
6879
  # * For containers in a task with the `bridge` network mode, the
6862
- # Amazon ECS agent finds open ports on the host and automaticaly
6880
+ # Amazon ECS agent finds open ports on the host and automatically
6863
6881
  # binds them to the container ports. This is a dynamic mapping
6864
6882
  # strategy.
6865
6883
  #
@@ -6888,10 +6906,14 @@ module Aws::ECS
6888
6906
  # port that was previously specified in a running task is also
6889
6907
  # reserved while the task is running. That is, after a task stops, the
6890
6908
  # host port is released. The current reserved ports are displayed in
6891
- # the `remainingResources` of DescribeContainerInstances output. A
6892
- # container instance can have up to 100 reserved ports at a time. This
6893
- # number includes the default reserved ports. Automatically assigned
6894
- # ports aren't included in the 100 reserved ports quota.
6909
+ # the `remainingResources` of [DescribeContainerInstances][1] output.
6910
+ # A container instance can have up to 100 reserved ports at a time.
6911
+ # This number includes the default reserved ports. Automatically
6912
+ # assigned ports aren't included in the 100 reserved ports quota.
6913
+ #
6914
+ #
6915
+ #
6916
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_DescribeContainerInstances.html
6895
6917
  # @return [Integer]
6896
6918
  #
6897
6919
  # @!attribute [rw] protocol
@@ -6946,7 +6968,7 @@ module Aws::ECS
6946
6968
  # The port number range on the container that's bound to the
6947
6969
  # dynamically mapped host port range.
6948
6970
  #
6949
- # The following rules apply when you specify a `containerPortRange`\:
6971
+ # The following rules apply when you specify a `containerPortRange`:
6950
6972
  #
6951
6973
  # * You must use either the `bridge` network mode or the `awsvpc`
6952
6974
  # network mode.
@@ -7118,18 +7140,19 @@ module Aws::ECS
7118
7140
  # ID for your Amazon ECS container instances is affected. If
7119
7141
  # `awsvpcTrunking` is specified, the ENI limit for your Amazon ECS
7120
7142
  # container instances is affected. If `containerInsights` is
7121
- # specified, the default setting for CloudWatch Container Insights for
7122
- # your clusters is affected.
7143
+ # specified, the default setting for Amazon Web Services CloudWatch
7144
+ # Container Insights for your clusters is affected.
7123
7145
  #
7124
- # Fargate is transitioning from task count-based quotas to vCPU-based
7125
- # quotas. You can set the name to `fargateVCPULimit` to opt in or opt
7126
- # out of the vCPU-based quotas. For information about the opt in
7127
- # timeline, see [Fargate vCPU-based quotas timeline][1] in the *Amazon
7128
- # ECS Developer Guide*.
7146
+ # When you specify `fargateFIPSMode` for the `name` and `enabled` for
7147
+ # the `value`, Fargate uses FIPS-140 compliant cryptographic
7148
+ # algorithms on your tasks. For more information about FIPS-140
7149
+ # compliance with Fargate, see [ Amazon Web Services Fargate Federal
7150
+ # Information Processing Standard (FIPS) 140-2 compliance][1] in the
7151
+ # *Amazon Elastic Container Service Developer Guide*.
7129
7152
  #
7130
7153
  #
7131
7154
  #
7132
- # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-account-settings.html#fargate-quota-timeline
7155
+ # [1]: https://docs.aws.amazon.com/AWSEC2ContainerServiceDocs/build/server-root/AmazonECS/latest/developerguide/ecs-fips-compliance.html
7133
7156
  # @return [String]
7134
7157
  #
7135
7158
  # @!attribute [rw] value
@@ -7167,8 +7190,10 @@ module Aws::ECS
7167
7190
  # and resource ID for your Amazon ECS container instances is affected.
7168
7191
  # If `awsvpcTrunking` is specified, the elastic network interface
7169
7192
  # (ENI) limit for your Amazon ECS container instances is affected. If
7170
- # `containerInsights` is specified, the default setting for CloudWatch
7171
- # Container Insights for your clusters is affected.
7193
+ # `containerInsights` is specified, the default setting for Amazon Web
7194
+ # Services CloudWatch Container Insights for your clusters is
7195
+ # affected. If `fargateFIPSMode` is specified, Fargate FIPS 140
7196
+ # compliance is affected.
7172
7197
  # @return [String]
7173
7198
  #
7174
7199
  # @!attribute [rw] value
@@ -7743,8 +7768,8 @@ module Aws::ECS
7743
7768
  # For more information, see [Fargate task storage][1] in the *Amazon
7744
7769
  # ECS User Guide for Fargate*.
7745
7770
  #
7746
- # <note markdown="1"> This parameter is only supported for tasks hosted on Fargate using
7747
- # the following platform versions:
7771
+ # <note markdown="1"> For tasks using the Fargate launch type, the task requires the
7772
+ # following platforms:
7748
7773
  #
7749
7774
  # * Linux platform version `1.4.0` or later.
7750
7775
  #
@@ -7907,8 +7932,12 @@ module Aws::ECS
7907
7932
  # that the task is launched on.
7908
7933
  #
7909
7934
  # If the `InferenceAccelerator` type is used, the `value` matches the
7910
- # `deviceName` for an InferenceAccelerator specified in a task
7935
+ # `deviceName` for an [InferenceAccelerator][1] specified in a task
7911
7936
  # definition.
7937
+ #
7938
+ #
7939
+ #
7940
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_InferenceAccelerator.html
7912
7941
  # @return [String]
7913
7942
  #
7914
7943
  # @!attribute [rw] type
@@ -8312,7 +8341,7 @@ module Aws::ECS
8312
8341
  include Aws::Structure
8313
8342
  end
8314
8343
 
8315
- # Details on a service within a cluster
8344
+ # Details on a service within a cluster.
8316
8345
  #
8317
8346
  # @!attribute [rw] service_arn
8318
8347
  # The ARN that identifies the service. For more information about the
@@ -8550,9 +8579,9 @@ module Aws::ECS
8550
8579
  # @return [String]
8551
8580
  #
8552
8581
  # @!attribute [rw] enable_execute_command
8553
- # Determines whether the execute command functionality is enabled for
8554
- # the service. If `true`, the execute command functionality is enabled
8555
- # for all containers in tasks as part of the service.
8582
+ # Determines whether the execute command functionality is turned on
8583
+ # for the service. If `true`, the execute command functionality is
8584
+ # turned on for all containers in tasks as part of the service.
8556
8585
  # @return [Boolean]
8557
8586
  #
8558
8587
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/Service AWS API Documentation
@@ -8689,7 +8718,7 @@ module Aws::ECS
8689
8718
  #
8690
8719
  #
8691
8720
  #
8692
- # [1]: https://docs.aws.amazon.com/
8721
+ # [1]: https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-services.html
8693
8722
  # @return [String]
8694
8723
  #
8695
8724
  # @!attribute [rw] services
@@ -8787,10 +8816,8 @@ module Aws::ECS
8787
8816
  # underscores (\_), and hyphens (-). The name can't start with a
8788
8817
  # hyphen.
8789
8818
  #
8790
- # If this parameter isn't specified, the default value of
8791
- # `discoveryName.namespace` is used. If the `discoveryName` isn't
8792
- # specified, the port mapping name from the task definition is used in
8793
- # `portName.namespace`.
8819
+ # If the `discoveryName` isn't specified, the port mapping name from
8820
+ # the task definition is used in `portName.namespace`.
8794
8821
  # @return [String]
8795
8822
  #
8796
8823
  # @!attribute [rw] client_aliases
@@ -8855,10 +8882,8 @@ module Aws::ECS
8855
8882
  # underscores (\_), and hyphens (-). The name can't start with a
8856
8883
  # hyphen.
8857
8884
  #
8858
- # If this parameter isn't specified, the default value of
8859
- # `discoveryName.namespace` is used. If the `discoveryName` isn't
8860
- # specified, the port mapping name from the task definition is used in
8861
- # `portName.namespace`.
8885
+ # If the `discoveryName` isn't specified, the port mapping name from
8886
+ # the task definition is used in `portName.namespace`.
8862
8887
  # @return [String]
8863
8888
  #
8864
8889
  # @!attribute [rw] discovery_arn
@@ -9053,9 +9078,9 @@ module Aws::ECS
9053
9078
  # @return [Boolean]
9054
9079
  #
9055
9080
  # @!attribute [rw] enable_execute_command
9056
- # Whether or not the execute command functionality is enabled for the
9057
- # task. If `true`, this enables execute command functionality on all
9058
- # containers in the task.
9081
+ # Whether or not the execute command functionality is turned on for
9082
+ # the task. If `true`, this enables execute command functionality on
9083
+ # all containers in the task.
9059
9084
  # @return [Boolean]
9060
9085
  #
9061
9086
  # @!attribute [rw] group
@@ -9537,7 +9562,7 @@ module Aws::ECS
9537
9562
  # * The SSM agent is not installed or is not running
9538
9563
  #
9539
9564
  # * There is an interface Amazon VPC endpoint for Amazon ECS, but there
9540
- # is not one for for Systems Manager Session Manager
9565
+ # is not one for Systems Manager Session Manager
9541
9566
  #
9542
9567
  # For information about how to troubleshoot the issues, see
9543
9568
  # [Troubleshooting issues with ECS Exec][1] in the *Amazon Elastic
@@ -9661,9 +9686,9 @@ module Aws::ECS
9661
9686
  # @return [String]
9662
9687
  #
9663
9688
  # @!attribute [rw] enable_execute_command
9664
- # Determines whether execute command functionality is enabled for this
9665
- # task. If `true`, execute command functionality is enabled on all the
9666
- # containers in the task.
9689
+ # Determines whether execute command functionality is turned on for
9690
+ # this task. If `true`, execute command functionality is turned on all
9691
+ # the containers in the task.
9667
9692
  # @return [Boolean]
9668
9693
  #
9669
9694
  # @!attribute [rw] execution_stopped_at
@@ -10117,9 +10142,13 @@ module Aws::ECS
10117
10142
  # @return [Types::RuntimePlatform]
10118
10143
  #
10119
10144
  # @!attribute [rw] requires_compatibilities
10120
- # The task launch types the task definition was validated against. To
10121
- # determine which task launch types the task definition is validated
10122
- # for, see the TaskDefinition$compatibilities parameter.
10145
+ # The task launch types the task definition was validated against. For
10146
+ # more information, see [Amazon ECS launch types][1] in the *Amazon
10147
+ # Elastic Container Service Developer Guide*.
10148
+ #
10149
+ #
10150
+ #
10151
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html
10123
10152
  # @return [Array<String>]
10124
10153
  #
10125
10154
  # @!attribute [rw] cpu
@@ -10341,9 +10370,9 @@ module Aws::ECS
10341
10370
  include Aws::Structure
10342
10371
  end
10343
10372
 
10344
- # An object representing a constraint on task placement in the task
10345
- # definition. For more information, see [Task placement constraints][1]
10346
- # in the *Amazon Elastic Container Service Developer Guide*.
10373
+ # The constraint on task placement in the task definition. For more
10374
+ # information, see [Task placement constraints][1] in the *Amazon
10375
+ # Elastic Container Service Developer Guide*.
10347
10376
  #
10348
10377
  # <note markdown="1"> Task placement constraints aren't supported for tasks run on Fargate.
10349
10378
  #
@@ -10597,7 +10626,7 @@ module Aws::ECS
10597
10626
  # @!attribute [rw] stability_status
10598
10627
  # The stability status. This indicates whether the task set has
10599
10628
  # reached a steady state. If the following conditions are met, the
10600
- # task set are in `STEADY_STATE`\:
10629
+ # task set are in `STEADY_STATE`:
10601
10630
  #
10602
10631
  # * The task `runningCount` is equal to the `computedDesiredCount`.
10603
10632
  #
@@ -11351,14 +11380,14 @@ module Aws::ECS
11351
11380
  # @!attribute [rw] protected_tasks
11352
11381
  # A list of tasks with the following information.
11353
11382
  #
11354
- # * `taskArn`\: The task ARN.
11383
+ # * `taskArn`: The task ARN.
11355
11384
  #
11356
- # * `protectionEnabled`\: The protection status of the task. If
11357
- # scale-in protection is enabled for a task, the value is `true`.
11385
+ # * `protectionEnabled`: The protection status of the task. If
11386
+ # scale-in protection is turned on for a task, the value is `true`.
11358
11387
  # Otherwise, it is `false`.
11359
11388
  #
11360
- # * `expirationDate`\: The epoch time when protection for the task
11361
- # will expire.
11389
+ # * `expirationDate`: The epoch time when protection for the task will
11390
+ # expire.
11362
11391
  # @return [Array<Types::ProtectedTask>]
11363
11392
  #
11364
11393
  # @!attribute [rw] failures
data/lib/aws-sdk-ecs.rb CHANGED
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-ecs/customizations'
53
53
  # @!group service
54
54
  module Aws::ECS
55
55
 
56
- GEM_VERSION = '1.111.0'
56
+ GEM_VERSION = '1.113.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ecs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.111.0
4
+ version: 1.113.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-23 00:00:00.000000000 Z
11
+ date: 2023-04-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core