aws-sdk-ecs 1.45.0 → 1.46.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
  SHA1:
3
- metadata.gz: 1823be3dcc7697a327fe5ab17aedcdf09afb718e
4
- data.tar.gz: e5179b4ea8fe61a94c63dda90f354169d0abf861
3
+ metadata.gz: 07afc0b37fc9d421bcf501e69fa9c4ba1a5a72e0
4
+ data.tar.gz: a08bfb56c9502e989642125a0b97c005792bf8c0
5
5
  SHA512:
6
- metadata.gz: feb00c98c24cb9cce63d805a1e3f8c8ea905b7cb9313723c075a9a68f94c21fc6c4bce81dca8cfab306ff88c7972d129828189d43c19480f2ec5fe3546695fbe
7
- data.tar.gz: cbbbba385bd2931705d70405da2369d4d237d26b87b4e05a0969e9cf2b1c07d22db4f4b3e4c6644938f7430fed94f7b634dcde9c1bec7bda127c484e73f38e25
6
+ metadata.gz: d1439bf0333db5a9e7e81daba00a98258d08a9dc13e87b61e4ae8d3264aba0a1c615ddab70caf3e3d056f4fe4906cabc69a3f755437ce627a6538ef4cefeea4b
7
+ data.tar.gz: 3a4b89582aa93e102dc9257d6493ddc1f9ad09925bb2e353d3341872475a7cd13ed8fa1b6936dbc6575c064faadefe59a1e33c0d7f3c2c616e15713a8f5a7eb1
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-ecs/customizations'
43
43
  # @service
44
44
  module Aws::ECS
45
45
 
46
- GEM_VERSION = '1.45.0'
46
+ GEM_VERSION = '1.46.0'
47
47
 
48
48
  end
@@ -291,9 +291,32 @@ module Aws::ECS
291
291
  # @option params [Array<Types::Tag>] :tags
292
292
  # The metadata that you apply to the cluster to help you categorize and
293
293
  # organize them. Each tag consists of a key and an optional value, both
294
- # of which you define. Tag keys can have a maximum character length of
295
- # 128 characters, and tag values can have a maximum length of 256
296
- # characters.
294
+ # of which you define.
295
+ #
296
+ # The following basic restrictions apply to tags:
297
+ #
298
+ # * Maximum number of tags per resource - 50
299
+ #
300
+ # * For each resource, each tag key must be unique, and each tag key can
301
+ # have only one value.
302
+ #
303
+ # * Maximum key length - 128 Unicode characters in UTF-8
304
+ #
305
+ # * Maximum value length - 256 Unicode characters in UTF-8
306
+ #
307
+ # * If your tagging schema is used across multiple services and
308
+ # resources, remember that other services may have restrictions on
309
+ # allowed characters. Generally allowed characters are: letters,
310
+ # numbers, and spaces representable in UTF-8, and the following
311
+ # characters: + - = . \_ : / @.
312
+ #
313
+ # * Tag keys and values are case-sensitive.
314
+ #
315
+ # * Do not use `aws:`, `AWS:`, or any upper or lowercase combination of
316
+ # such as a prefix for either keys or values as it is reserved for AWS
317
+ # use. You cannot edit or delete tag keys or values with this prefix.
318
+ # Tags with this prefix do not count against your tags per resource
319
+ # limit.
297
320
  #
298
321
  # @option params [Array<Types::ClusterSetting>] :settings
299
322
  # The setting to use when creating a cluster. This parameter is used to
@@ -701,9 +724,32 @@ module Aws::ECS
701
724
  # The metadata that you apply to the service to help you categorize and
702
725
  # organize them. Each tag consists of a key and an optional value, both
703
726
  # of which you define. When a service is deleted, the tags are deleted
704
- # as well. Tag keys can have a maximum character length of 128
705
- # characters, and tag values can have a maximum length of 256
706
- # characters.
727
+ # as well.
728
+ #
729
+ # The following basic restrictions apply to tags:
730
+ #
731
+ # * Maximum number of tags per resource - 50
732
+ #
733
+ # * For each resource, each tag key must be unique, and each tag key can
734
+ # have only one value.
735
+ #
736
+ # * Maximum key length - 128 Unicode characters in UTF-8
737
+ #
738
+ # * Maximum value length - 256 Unicode characters in UTF-8
739
+ #
740
+ # * If your tagging schema is used across multiple services and
741
+ # resources, remember that other services may have restrictions on
742
+ # allowed characters. Generally allowed characters are: letters,
743
+ # numbers, and spaces representable in UTF-8, and the following
744
+ # characters: + - = . \_ : / @.
745
+ #
746
+ # * Tag keys and values are case-sensitive.
747
+ #
748
+ # * Do not use `aws:`, `AWS:`, or any upper or lowercase combination of
749
+ # such as a prefix for either keys or values as it is reserved for AWS
750
+ # use. You cannot edit or delete tag keys or values with this prefix.
751
+ # Tags with this prefix do not count against your tags per resource
752
+ # limit.
707
753
  #
708
754
  # @option params [Boolean] :enable_ecs_managed_tags
709
755
  # Specifies whether to enable Amazon ECS managed tags for the tasks
@@ -1386,13 +1432,13 @@ module Aws::ECS
1386
1432
  # <note markdown="1"> When you delete a service, if there are still running tasks that
1387
1433
  # require cleanup, the service status moves from `ACTIVE` to `DRAINING`,
1388
1434
  # and the service is no longer visible in the console or in the
1389
- # ListServices API operation. After the tasks have stopped, then the
1390
- # service status moves from `DRAINING` to `INACTIVE`. Services in the
1391
- # `DRAINING` or `INACTIVE` status can still be viewed with the
1392
- # DescribeServices API operation. However, in the future, `INACTIVE`
1393
- # services may be cleaned up and purged from Amazon ECS record keeping,
1394
- # and DescribeServices calls on those services return a
1395
- # `ServiceNotFoundException` error.
1435
+ # ListServices API operation. After all tasks have transitioned to
1436
+ # either `STOPPING` or `STOPPED` status, the service status moves from
1437
+ # `DRAINING` to `INACTIVE`. Services in the `DRAINING` or `INACTIVE`
1438
+ # status can still be viewed with the DescribeServices API operation.
1439
+ # However, in the future, `INACTIVE` services may be cleaned up and
1440
+ # purged from Amazon ECS record keeping, and DescribeServices calls on
1441
+ # those services return a `ServiceNotFoundException` error.
1396
1442
  #
1397
1443
  # </note>
1398
1444
  #
@@ -1848,6 +1894,8 @@ module Aws::ECS
1848
1894
  # resp.task_definition.container_definitions[0].linux_parameters.tmpfs[0].size #=> Integer
1849
1895
  # resp.task_definition.container_definitions[0].linux_parameters.tmpfs[0].mount_options #=> Array
1850
1896
  # resp.task_definition.container_definitions[0].linux_parameters.tmpfs[0].mount_options[0] #=> String
1897
+ # resp.task_definition.container_definitions[0].linux_parameters.max_swap #=> Integer
1898
+ # resp.task_definition.container_definitions[0].linux_parameters.swappiness #=> Integer
1851
1899
  # resp.task_definition.container_definitions[0].secrets #=> Array
1852
1900
  # resp.task_definition.container_definitions[0].secrets[0].name #=> String
1853
1901
  # resp.task_definition.container_definitions[0].secrets[0].value_from #=> String
@@ -2564,6 +2612,8 @@ module Aws::ECS
2564
2612
  # resp.task_definition.container_definitions[0].linux_parameters.tmpfs[0].size #=> Integer
2565
2613
  # resp.task_definition.container_definitions[0].linux_parameters.tmpfs[0].mount_options #=> Array
2566
2614
  # resp.task_definition.container_definitions[0].linux_parameters.tmpfs[0].mount_options[0] #=> String
2615
+ # resp.task_definition.container_definitions[0].linux_parameters.max_swap #=> Integer
2616
+ # resp.task_definition.container_definitions[0].linux_parameters.swappiness #=> Integer
2567
2617
  # resp.task_definition.container_definitions[0].secrets #=> Array
2568
2618
  # resp.task_definition.container_definitions[0].secrets[0].name #=> String
2569
2619
  # resp.task_definition.container_definitions[0].secrets[0].value_from #=> String
@@ -3853,11 +3903,14 @@ module Aws::ECS
3853
3903
  req.send_request(options)
3854
3904
  end
3855
3905
 
3856
- # Modifies an account setting. If you change the account setting for the
3857
- # root user, the default settings for all of the IAM users and roles for
3858
- # which no individual account setting has been specified are reset. For
3859
- # more information, see [Account Settings][1] in the *Amazon Elastic
3860
- # Container Service Developer Guide*.
3906
+ # Modifies an account setting. Account settings are set on a per-Region
3907
+ # basis.
3908
+ #
3909
+ # If you change the account setting for the root user, the default
3910
+ # settings for all of the IAM users and roles for which no individual
3911
+ # account setting has been specified are reset. For more information,
3912
+ # see [Account Settings][1] in the *Amazon Elastic Container Service
3913
+ # Developer Guide*.
3861
3914
  #
3862
3915
  # When `serviceLongArnFormat`, `taskLongArnFormat`, or
3863
3916
  # `containerInstanceLongArnFormat` are specified, the Amazon Resource
@@ -3985,7 +4038,8 @@ module Aws::ECS
3985
4038
  end
3986
4039
 
3987
4040
  # Modifies an account setting for all IAM users on an account for whom
3988
- # no individual account setting has been specified.
4041
+ # no individual account setting has been specified. Account settings are
4042
+ # set on a per-Region basis.
3989
4043
  #
3990
4044
  # @option params [required, String] :name
3991
4045
  # The resource name for which to modify the account setting. If
@@ -4151,9 +4205,32 @@ module Aws::ECS
4151
4205
  # @option params [Array<Types::Tag>] :tags
4152
4206
  # The metadata that you apply to the container instance to help you
4153
4207
  # categorize and organize them. Each tag consists of a key and an
4154
- # optional value, both of which you define. Tag keys can have a maximum
4155
- # character length of 128 characters, and tag values can have a maximum
4156
- # length of 256 characters.
4208
+ # optional value, both of which you define.
4209
+ #
4210
+ # The following basic restrictions apply to tags:
4211
+ #
4212
+ # * Maximum number of tags per resource - 50
4213
+ #
4214
+ # * For each resource, each tag key must be unique, and each tag key can
4215
+ # have only one value.
4216
+ #
4217
+ # * Maximum key length - 128 Unicode characters in UTF-8
4218
+ #
4219
+ # * Maximum value length - 256 Unicode characters in UTF-8
4220
+ #
4221
+ # * If your tagging schema is used across multiple services and
4222
+ # resources, remember that other services may have restrictions on
4223
+ # allowed characters. Generally allowed characters are: letters,
4224
+ # numbers, and spaces representable in UTF-8, and the following
4225
+ # characters: + - = . \_ : / @.
4226
+ #
4227
+ # * Tag keys and values are case-sensitive.
4228
+ #
4229
+ # * Do not use `aws:`, `AWS:`, or any upper or lowercase combination of
4230
+ # such as a prefix for either keys or values as it is reserved for AWS
4231
+ # use. You cannot edit or delete tag keys or values with this prefix.
4232
+ # Tags with this prefix do not count against your tags per resource
4233
+ # limit.
4157
4234
  #
4158
4235
  # @return [Types::RegisterContainerInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4159
4236
  #
@@ -4450,9 +4527,32 @@ module Aws::ECS
4450
4527
  # @option params [Array<Types::Tag>] :tags
4451
4528
  # The metadata that you apply to the task definition to help you
4452
4529
  # categorize and organize them. Each tag consists of a key and an
4453
- # optional value, both of which you define. Tag keys can have a maximum
4454
- # character length of 128 characters, and tag values can have a maximum
4455
- # length of 256 characters.
4530
+ # optional value, both of which you define.
4531
+ #
4532
+ # The following basic restrictions apply to tags:
4533
+ #
4534
+ # * Maximum number of tags per resource - 50
4535
+ #
4536
+ # * For each resource, each tag key must be unique, and each tag key can
4537
+ # have only one value.
4538
+ #
4539
+ # * Maximum key length - 128 Unicode characters in UTF-8
4540
+ #
4541
+ # * Maximum value length - 256 Unicode characters in UTF-8
4542
+ #
4543
+ # * If your tagging schema is used across multiple services and
4544
+ # resources, remember that other services may have restrictions on
4545
+ # allowed characters. Generally allowed characters are: letters,
4546
+ # numbers, and spaces representable in UTF-8, and the following
4547
+ # characters: + - = . \_ : / @.
4548
+ #
4549
+ # * Tag keys and values are case-sensitive.
4550
+ #
4551
+ # * Do not use `aws:`, `AWS:`, or any upper or lowercase combination of
4552
+ # such as a prefix for either keys or values as it is reserved for AWS
4553
+ # use. You cannot edit or delete tag keys or values with this prefix.
4554
+ # Tags with this prefix do not count against your tags per resource
4555
+ # limit.
4456
4556
  #
4457
4557
  # @option params [String] :pid_mode
4458
4558
  # The process namespace to use for the containers in the task. The valid
@@ -4667,6 +4767,8 @@ module Aws::ECS
4667
4767
  # mount_options: ["String"],
4668
4768
  # },
4669
4769
  # ],
4770
+ # max_swap: 1,
4771
+ # swappiness: 1,
4670
4772
  # },
4671
4773
  # secrets: [
4672
4774
  # {
@@ -4837,6 +4939,8 @@ module Aws::ECS
4837
4939
  # resp.task_definition.container_definitions[0].linux_parameters.tmpfs[0].size #=> Integer
4838
4940
  # resp.task_definition.container_definitions[0].linux_parameters.tmpfs[0].mount_options #=> Array
4839
4941
  # resp.task_definition.container_definitions[0].linux_parameters.tmpfs[0].mount_options[0] #=> String
4942
+ # resp.task_definition.container_definitions[0].linux_parameters.max_swap #=> Integer
4943
+ # resp.task_definition.container_definitions[0].linux_parameters.swappiness #=> Integer
4840
4944
  # resp.task_definition.container_definitions[0].secrets #=> Array
4841
4945
  # resp.task_definition.container_definitions[0].secrets[0].name #=> String
4842
4946
  # resp.task_definition.container_definitions[0].secrets[0].value_from #=> String
@@ -5061,9 +5165,32 @@ module Aws::ECS
5061
5165
  # @option params [Array<Types::Tag>] :tags
5062
5166
  # The metadata that you apply to the task to help you categorize and
5063
5167
  # organize them. Each tag consists of a key and an optional value, both
5064
- # of which you define. Tag keys can have a maximum character length of
5065
- # 128 characters, and tag values can have a maximum length of 256
5066
- # characters.
5168
+ # of which you define.
5169
+ #
5170
+ # The following basic restrictions apply to tags:
5171
+ #
5172
+ # * Maximum number of tags per resource - 50
5173
+ #
5174
+ # * For each resource, each tag key must be unique, and each tag key can
5175
+ # have only one value.
5176
+ #
5177
+ # * Maximum key length - 128 Unicode characters in UTF-8
5178
+ #
5179
+ # * Maximum value length - 256 Unicode characters in UTF-8
5180
+ #
5181
+ # * If your tagging schema is used across multiple services and
5182
+ # resources, remember that other services may have restrictions on
5183
+ # allowed characters. Generally allowed characters are: letters,
5184
+ # numbers, and spaces representable in UTF-8, and the following
5185
+ # characters: + - = . \_ : / @.
5186
+ #
5187
+ # * Tag keys and values are case-sensitive.
5188
+ #
5189
+ # * Do not use `aws:`, `AWS:`, or any upper or lowercase combination of
5190
+ # such as a prefix for either keys or values as it is reserved for AWS
5191
+ # use. You cannot edit or delete tag keys or values with this prefix.
5192
+ # Tags with this prefix do not count against your tags per resource
5193
+ # limit.
5067
5194
  #
5068
5195
  # @option params [Boolean] :enable_ecs_managed_tags
5069
5196
  # Specifies whether to enable Amazon ECS managed tags for the task. For
@@ -5346,9 +5473,32 @@ module Aws::ECS
5346
5473
  # @option params [Array<Types::Tag>] :tags
5347
5474
  # The metadata that you apply to the task to help you categorize and
5348
5475
  # organize them. Each tag consists of a key and an optional value, both
5349
- # of which you define. Tag keys can have a maximum character length of
5350
- # 128 characters, and tag values can have a maximum length of 256
5351
- # characters.
5476
+ # of which you define.
5477
+ #
5478
+ # The following basic restrictions apply to tags:
5479
+ #
5480
+ # * Maximum number of tags per resource - 50
5481
+ #
5482
+ # * For each resource, each tag key must be unique, and each tag key can
5483
+ # have only one value.
5484
+ #
5485
+ # * Maximum key length - 128 Unicode characters in UTF-8
5486
+ #
5487
+ # * Maximum value length - 256 Unicode characters in UTF-8
5488
+ #
5489
+ # * If your tagging schema is used across multiple services and
5490
+ # resources, remember that other services may have restrictions on
5491
+ # allowed characters. Generally allowed characters are: letters,
5492
+ # numbers, and spaces representable in UTF-8, and the following
5493
+ # characters: + - = . \_ : / @.
5494
+ #
5495
+ # * Tag keys and values are case-sensitive.
5496
+ #
5497
+ # * Do not use `aws:`, `AWS:`, or any upper or lowercase combination of
5498
+ # such as a prefix for either keys or values as it is reserved for AWS
5499
+ # use. You cannot edit or delete tag keys or values with this prefix.
5500
+ # Tags with this prefix do not count against your tags per resource
5501
+ # limit.
5352
5502
  #
5353
5503
  # @option params [Boolean] :enable_ecs_managed_tags
5354
5504
  # Specifies whether to enable Amazon ECS managed tags for the task. For
@@ -5845,8 +5995,31 @@ module Aws::ECS
5845
5995
  #
5846
5996
  # @option params [required, Array<Types::Tag>] :tags
5847
5997
  # The tags to add to the resource. A tag is an array of key-value pairs.
5848
- # Tag keys can have a maximum character length of 128 characters, and
5849
- # tag values can have a maximum length of 256 characters.
5998
+ #
5999
+ # The following basic restrictions apply to tags:
6000
+ #
6001
+ # * Maximum number of tags per resource - 50
6002
+ #
6003
+ # * For each resource, each tag key must be unique, and each tag key can
6004
+ # have only one value.
6005
+ #
6006
+ # * Maximum key length - 128 Unicode characters in UTF-8
6007
+ #
6008
+ # * Maximum value length - 256 Unicode characters in UTF-8
6009
+ #
6010
+ # * If your tagging schema is used across multiple services and
6011
+ # resources, remember that other services may have restrictions on
6012
+ # allowed characters. Generally allowed characters are: letters,
6013
+ # numbers, and spaces representable in UTF-8, and the following
6014
+ # characters: + - = . \_ : / @.
6015
+ #
6016
+ # * Tag keys and values are case-sensitive.
6017
+ #
6018
+ # * Do not use `aws:`, `AWS:`, or any upper or lowercase combination of
6019
+ # such as a prefix for either keys or values as it is reserved for AWS
6020
+ # use. You cannot edit or delete tag keys or values with this prefix.
6021
+ # Tags with this prefix do not count against your tags per resource
6022
+ # limit.
5850
6023
  #
5851
6024
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5852
6025
  #
@@ -6704,7 +6877,7 @@ module Aws::ECS
6704
6877
  params: params,
6705
6878
  config: config)
6706
6879
  context[:gem_name] = 'aws-sdk-ecs'
6707
- context[:gem_version] = '1.45.0'
6880
+ context[:gem_version] = '1.46.0'
6708
6881
  Seahorse::Client::Request.new(handlers, context)
6709
6882
  end
6710
6883
 
@@ -686,6 +686,8 @@ module Aws::ECS
686
686
  LinuxParameters.add_member(:init_process_enabled, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "initProcessEnabled"))
687
687
  LinuxParameters.add_member(:shared_memory_size, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "sharedMemorySize"))
688
688
  LinuxParameters.add_member(:tmpfs, Shapes::ShapeRef.new(shape: TmpfsList, location_name: "tmpfs"))
689
+ LinuxParameters.add_member(:max_swap, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "maxSwap"))
690
+ LinuxParameters.add_member(:swappiness, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "swappiness"))
689
691
  LinuxParameters.struct_class = Types::LinuxParameters
690
692
 
691
693
  ListAccountSettingsRequest.add_member(:name, Shapes::ShapeRef.new(shape: SettingName, location_name: "name"))
@@ -245,9 +245,32 @@ module Aws::ECS
245
245
  # @!attribute [rw] tags
246
246
  # The metadata that you apply to the cluster to help you categorize
247
247
  # and organize them. Each tag consists of a key and an optional value,
248
- # both of which you define. Tag keys can have a maximum character
249
- # length of 128 characters, and tag values can have a maximum length
250
- # of 256 characters.
248
+ # both of which you define.
249
+ #
250
+ # The following basic restrictions apply to tags:
251
+ #
252
+ # * Maximum number of tags per resource - 50
253
+ #
254
+ # * For each resource, each tag key must be unique, and each tag key
255
+ # can have only one value.
256
+ #
257
+ # * Maximum key length - 128 Unicode characters in UTF-8
258
+ #
259
+ # * Maximum value length - 256 Unicode characters in UTF-8
260
+ #
261
+ # * If your tagging schema is used across multiple services and
262
+ # resources, remember that other services may have restrictions on
263
+ # allowed characters. Generally allowed characters are: letters,
264
+ # numbers, and spaces representable in UTF-8, and the following
265
+ # characters: + - = . \_ : / @.
266
+ #
267
+ # * Tag keys and values are case-sensitive.
268
+ #
269
+ # * Do not use `aws:`, `AWS:`, or any upper or lowercase combination
270
+ # of such as a prefix for either keys or values as it is reserved
271
+ # for AWS use. You cannot edit or delete tag keys or values with
272
+ # this prefix. Tags with this prefix do not count against your tags
273
+ # per resource limit.
251
274
  # @return [Array<Types::Tag>]
252
275
  #
253
276
  # @!attribute [rw] settings
@@ -449,6 +472,8 @@ module Aws::ECS
449
472
  # mount_options: ["String"],
450
473
  # },
451
474
  # ],
475
+ # max_swap: 1,
476
+ # swappiness: 1,
452
477
  # },
453
478
  # secrets: [
454
479
  # {
@@ -1268,13 +1293,6 @@ module Aws::ECS
1268
1293
  # @!attribute [rw] log_configuration
1269
1294
  # The log configuration specification for the container.
1270
1295
  #
1271
- # For tasks using the Fargate launch type, the supported log drivers
1272
- # are `awslogs` and `splunk`.
1273
- #
1274
- # For tasks using the EC2 launch type, the supported log drivers are
1275
- # `awslogs`, `syslog`, `gelf`, `fluentd`, `splunk`, `journald`, and
1276
- # `json-file`.
1277
- #
1278
1296
  # This parameter maps to `LogConfig` in the [Create a container][1]
1279
1297
  # section of the [Docker Remote API][2] and the `--log-driver` option
1280
1298
  # to [docker run][3]. By default, containers use the same logging
@@ -1601,9 +1619,32 @@ module Aws::ECS
1601
1619
  # @!attribute [rw] tags
1602
1620
  # The metadata that you apply to the container instance to help you
1603
1621
  # categorize and organize them. Each tag consists of a key and an
1604
- # optional value, both of which you define. Tag keys can have a
1605
- # maximum character length of 128 characters, and tag values can have
1606
- # a maximum length of 256 characters.
1622
+ # optional value, both of which you define.
1623
+ #
1624
+ # The following basic restrictions apply to tags:
1625
+ #
1626
+ # * Maximum number of tags per resource - 50
1627
+ #
1628
+ # * For each resource, each tag key must be unique, and each tag key
1629
+ # can have only one value.
1630
+ #
1631
+ # * Maximum key length - 128 Unicode characters in UTF-8
1632
+ #
1633
+ # * Maximum value length - 256 Unicode characters in UTF-8
1634
+ #
1635
+ # * If your tagging schema is used across multiple services and
1636
+ # resources, remember that other services may have restrictions on
1637
+ # allowed characters. Generally allowed characters are: letters,
1638
+ # numbers, and spaces representable in UTF-8, and the following
1639
+ # characters: + - = . \_ : / @.
1640
+ #
1641
+ # * Tag keys and values are case-sensitive.
1642
+ #
1643
+ # * Do not use `aws:`, `AWS:`, or any upper or lowercase combination
1644
+ # of such as a prefix for either keys or values as it is reserved
1645
+ # for AWS use. You cannot edit or delete tag keys or values with
1646
+ # this prefix. Tags with this prefix do not count against your tags
1647
+ # per resource limit.
1607
1648
  # @return [Array<Types::Tag>]
1608
1649
  #
1609
1650
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ContainerInstance AWS API Documentation
@@ -1793,9 +1834,32 @@ module Aws::ECS
1793
1834
  # @!attribute [rw] tags
1794
1835
  # The metadata that you apply to the cluster to help you categorize
1795
1836
  # and organize them. Each tag consists of a key and an optional value,
1796
- # both of which you define. Tag keys can have a maximum character
1797
- # length of 128 characters, and tag values can have a maximum length
1798
- # of 256 characters.
1837
+ # both of which you define.
1838
+ #
1839
+ # The following basic restrictions apply to tags:
1840
+ #
1841
+ # * Maximum number of tags per resource - 50
1842
+ #
1843
+ # * For each resource, each tag key must be unique, and each tag key
1844
+ # can have only one value.
1845
+ #
1846
+ # * Maximum key length - 128 Unicode characters in UTF-8
1847
+ #
1848
+ # * Maximum value length - 256 Unicode characters in UTF-8
1849
+ #
1850
+ # * If your tagging schema is used across multiple services and
1851
+ # resources, remember that other services may have restrictions on
1852
+ # allowed characters. Generally allowed characters are: letters,
1853
+ # numbers, and spaces representable in UTF-8, and the following
1854
+ # characters: + - = . \_ : / @.
1855
+ #
1856
+ # * Tag keys and values are case-sensitive.
1857
+ #
1858
+ # * Do not use `aws:`, `AWS:`, or any upper or lowercase combination
1859
+ # of such as a prefix for either keys or values as it is reserved
1860
+ # for AWS use. You cannot edit or delete tag keys or values with
1861
+ # this prefix. Tags with this prefix do not count against your tags
1862
+ # per resource limit.
1799
1863
  # @return [Array<Types::Tag>]
1800
1864
  #
1801
1865
  # @!attribute [rw] settings
@@ -2125,9 +2189,32 @@ module Aws::ECS
2125
2189
  # The metadata that you apply to the service to help you categorize
2126
2190
  # and organize them. Each tag consists of a key and an optional value,
2127
2191
  # both of which you define. When a service is deleted, the tags are
2128
- # deleted as well. Tag keys can have a maximum character length of 128
2129
- # characters, and tag values can have a maximum length of 256
2130
- # characters.
2192
+ # deleted as well.
2193
+ #
2194
+ # The following basic restrictions apply to tags:
2195
+ #
2196
+ # * Maximum number of tags per resource - 50
2197
+ #
2198
+ # * For each resource, each tag key must be unique, and each tag key
2199
+ # can have only one value.
2200
+ #
2201
+ # * Maximum key length - 128 Unicode characters in UTF-8
2202
+ #
2203
+ # * Maximum value length - 256 Unicode characters in UTF-8
2204
+ #
2205
+ # * If your tagging schema is used across multiple services and
2206
+ # resources, remember that other services may have restrictions on
2207
+ # allowed characters. Generally allowed characters are: letters,
2208
+ # numbers, and spaces representable in UTF-8, and the following
2209
+ # characters: + - = . \_ : / @.
2210
+ #
2211
+ # * Tag keys and values are case-sensitive.
2212
+ #
2213
+ # * Do not use `aws:`, `AWS:`, or any upper or lowercase combination
2214
+ # of such as a prefix for either keys or values as it is reserved
2215
+ # for AWS use. You cannot edit or delete tag keys or values with
2216
+ # this prefix. Tags with this prefix do not count against your tags
2217
+ # per resource limit.
2131
2218
  # @return [Array<Types::Tag>]
2132
2219
  #
2133
2220
  # @!attribute [rw] enable_ecs_managed_tags
@@ -3073,9 +3160,32 @@ module Aws::ECS
3073
3160
  # @!attribute [rw] tags
3074
3161
  # The metadata that is applied to the task definition to help you
3075
3162
  # categorize and organize them. Each tag consists of a key and an
3076
- # optional value, both of which you define. Tag keys can have a
3077
- # maximum character length of 128 characters, and tag values can have
3078
- # a maximum length of 256 characters.
3163
+ # optional value, both of which you define.
3164
+ #
3165
+ # The following basic restrictions apply to tags:
3166
+ #
3167
+ # * Maximum number of tags per resource - 50
3168
+ #
3169
+ # * For each resource, each tag key must be unique, and each tag key
3170
+ # can have only one value.
3171
+ #
3172
+ # * Maximum key length - 128 Unicode characters in UTF-8
3173
+ #
3174
+ # * Maximum value length - 256 Unicode characters in UTF-8
3175
+ #
3176
+ # * If your tagging schema is used across multiple services and
3177
+ # resources, remember that other services may have restrictions on
3178
+ # allowed characters. Generally allowed characters are: letters,
3179
+ # numbers, and spaces representable in UTF-8, and the following
3180
+ # characters: + - = . \_ : / @.
3181
+ #
3182
+ # * Tag keys and values are case-sensitive.
3183
+ #
3184
+ # * Do not use `aws:`, `AWS:`, or any upper or lowercase combination
3185
+ # of such as a prefix for either keys or values as it is reserved
3186
+ # for AWS use. You cannot edit or delete tag keys or values with
3187
+ # this prefix. Tags with this prefix do not count against your tags
3188
+ # per resource limit.
3079
3189
  # @return [Array<Types::Tag>]
3080
3190
  #
3081
3191
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DescribeTaskDefinitionResponse AWS API Documentation
@@ -3664,6 +3774,8 @@ module Aws::ECS
3664
3774
  # mount_options: ["String"],
3665
3775
  # },
3666
3776
  # ],
3777
+ # max_swap: 1,
3778
+ # swappiness: 1,
3667
3779
  # }
3668
3780
  #
3669
3781
  # @!attribute [rw] capabilities
@@ -3737,6 +3849,50 @@ module Aws::ECS
3737
3849
  # [1]: https://docs.docker.com/engine/reference/run/
3738
3850
  # @return [Array<Types::Tmpfs>]
3739
3851
  #
3852
+ # @!attribute [rw] max_swap
3853
+ # The total amount of swap memory (in MiB) a container can use. This
3854
+ # parameter will be translated to the `--memory-swap` option to
3855
+ # [docker run][1] where the value would be the sum of the container
3856
+ # memory plus the `maxSwap` value.
3857
+ #
3858
+ # If a `maxSwap` value of `0` is specified, the container will not use
3859
+ # swap. Accepted values are `0` or any positive integer. If the
3860
+ # `maxSwap` parameter is omitted, the container will use the swap
3861
+ # configuration for the container instance it is running on. A
3862
+ # `maxSwap` value must be set for the `swappiness` parameter to be
3863
+ # used.
3864
+ #
3865
+ # <note markdown="1"> If you are using tasks that use the Fargate launch type, the
3866
+ # `maxSwap` parameter is not supported.
3867
+ #
3868
+ # </note>
3869
+ #
3870
+ #
3871
+ #
3872
+ # [1]: https://docs.docker.com/engine/reference/run/
3873
+ # @return [Integer]
3874
+ #
3875
+ # @!attribute [rw] swappiness
3876
+ # This allows you to tune a container's memory swappiness behavior. A
3877
+ # `swappiness` value of `0` will cause swapping to not happen unless
3878
+ # absolutely necessary. A `swappiness` value of `100` will cause pages
3879
+ # to be swapped very aggressively. Accepted values are whole numbers
3880
+ # between `0` and `100`. If the `swappiness` parameter is not
3881
+ # specified, a default value of `60` is used. If a value is not
3882
+ # specified for `maxSwap` then this parameter is ignored. This
3883
+ # parameter maps to the `--memory-swappiness` option to [docker
3884
+ # run][1].
3885
+ #
3886
+ # <note markdown="1"> If you are using tasks that use the Fargate launch type, the
3887
+ # `swappiness` parameter is not supported.
3888
+ #
3889
+ # </note>
3890
+ #
3891
+ #
3892
+ #
3893
+ # [1]: https://docs.docker.com/engine/reference/run/
3894
+ # @return [Integer]
3895
+ #
3740
3896
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/LinuxParameters AWS API Documentation
3741
3897
  #
3742
3898
  class LinuxParameters < Struct.new(
@@ -3744,7 +3900,9 @@ module Aws::ECS
3744
3900
  :devices,
3745
3901
  :init_process_enabled,
3746
3902
  :shared_memory_size,
3747
- :tmpfs)
3903
+ :tmpfs,
3904
+ :max_swap,
3905
+ :swappiness)
3748
3906
  include Aws::Structure
3749
3907
  end
3750
3908
 
@@ -4613,8 +4771,8 @@ module Aws::ECS
4613
4771
  # are `awslogs` and `splunk`.
4614
4772
  #
4615
4773
  # For tasks using the EC2 launch type, the supported log drivers are
4616
- # `awslogs`, `syslog`, `gelf`, `fluentd`, `splunk`, `journald`, and
4617
- # `json-file`.
4774
+ # `awslogs`, `fluentd`, `gelf`, `json-file`, `journald`, `logentries`,
4775
+ # `syslog`, `splunk`, and `syslog`.
4618
4776
  #
4619
4777
  # For more information about using the `awslogs` log driver, see
4620
4778
  # [Using the awslogs Log Driver][1] in the *Amazon Elastic Container
@@ -5331,9 +5489,32 @@ module Aws::ECS
5331
5489
  # @!attribute [rw] tags
5332
5490
  # The metadata that you apply to the container instance to help you
5333
5491
  # categorize and organize them. Each tag consists of a key and an
5334
- # optional value, both of which you define. Tag keys can have a
5335
- # maximum character length of 128 characters, and tag values can have
5336
- # a maximum length of 256 characters.
5492
+ # optional value, both of which you define.
5493
+ #
5494
+ # The following basic restrictions apply to tags:
5495
+ #
5496
+ # * Maximum number of tags per resource - 50
5497
+ #
5498
+ # * For each resource, each tag key must be unique, and each tag key
5499
+ # can have only one value.
5500
+ #
5501
+ # * Maximum key length - 128 Unicode characters in UTF-8
5502
+ #
5503
+ # * Maximum value length - 256 Unicode characters in UTF-8
5504
+ #
5505
+ # * If your tagging schema is used across multiple services and
5506
+ # resources, remember that other services may have restrictions on
5507
+ # allowed characters. Generally allowed characters are: letters,
5508
+ # numbers, and spaces representable in UTF-8, and the following
5509
+ # characters: + - = . \_ : / @.
5510
+ #
5511
+ # * Tag keys and values are case-sensitive.
5512
+ #
5513
+ # * Do not use `aws:`, `AWS:`, or any upper or lowercase combination
5514
+ # of such as a prefix for either keys or values as it is reserved
5515
+ # for AWS use. You cannot edit or delete tag keys or values with
5516
+ # this prefix. Tags with this prefix do not count against your tags
5517
+ # per resource limit.
5337
5518
  # @return [Array<Types::Tag>]
5338
5519
  #
5339
5520
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/RegisterContainerInstanceRequest AWS API Documentation
@@ -5431,6 +5612,8 @@ module Aws::ECS
5431
5612
  # mount_options: ["String"],
5432
5613
  # },
5433
5614
  # ],
5615
+ # max_swap: 1,
5616
+ # swappiness: 1,
5434
5617
  # },
5435
5618
  # secrets: [
5436
5619
  # {
@@ -5726,9 +5909,32 @@ module Aws::ECS
5726
5909
  # @!attribute [rw] tags
5727
5910
  # The metadata that you apply to the task definition to help you
5728
5911
  # categorize and organize them. Each tag consists of a key and an
5729
- # optional value, both of which you define. Tag keys can have a
5730
- # maximum character length of 128 characters, and tag values can have
5731
- # a maximum length of 256 characters.
5912
+ # optional value, both of which you define.
5913
+ #
5914
+ # The following basic restrictions apply to tags:
5915
+ #
5916
+ # * Maximum number of tags per resource - 50
5917
+ #
5918
+ # * For each resource, each tag key must be unique, and each tag key
5919
+ # can have only one value.
5920
+ #
5921
+ # * Maximum key length - 128 Unicode characters in UTF-8
5922
+ #
5923
+ # * Maximum value length - 256 Unicode characters in UTF-8
5924
+ #
5925
+ # * If your tagging schema is used across multiple services and
5926
+ # resources, remember that other services may have restrictions on
5927
+ # allowed characters. Generally allowed characters are: letters,
5928
+ # numbers, and spaces representable in UTF-8, and the following
5929
+ # characters: + - = . \_ : / @.
5930
+ #
5931
+ # * Tag keys and values are case-sensitive.
5932
+ #
5933
+ # * Do not use `aws:`, `AWS:`, or any upper or lowercase combination
5934
+ # of such as a prefix for either keys or values as it is reserved
5935
+ # for AWS use. You cannot edit or delete tag keys or values with
5936
+ # this prefix. Tags with this prefix do not count against your tags
5937
+ # per resource limit.
5732
5938
  # @return [Array<Types::Tag>]
5733
5939
  #
5734
5940
  # @!attribute [rw] pid_mode
@@ -6141,9 +6347,32 @@ module Aws::ECS
6141
6347
  # @!attribute [rw] tags
6142
6348
  # The metadata that you apply to the task to help you categorize and
6143
6349
  # organize them. Each tag consists of a key and an optional value,
6144
- # both of which you define. Tag keys can have a maximum character
6145
- # length of 128 characters, and tag values can have a maximum length
6146
- # of 256 characters.
6350
+ # both of which you define.
6351
+ #
6352
+ # The following basic restrictions apply to tags:
6353
+ #
6354
+ # * Maximum number of tags per resource - 50
6355
+ #
6356
+ # * For each resource, each tag key must be unique, and each tag key
6357
+ # can have only one value.
6358
+ #
6359
+ # * Maximum key length - 128 Unicode characters in UTF-8
6360
+ #
6361
+ # * Maximum value length - 256 Unicode characters in UTF-8
6362
+ #
6363
+ # * If your tagging schema is used across multiple services and
6364
+ # resources, remember that other services may have restrictions on
6365
+ # allowed characters. Generally allowed characters are: letters,
6366
+ # numbers, and spaces representable in UTF-8, and the following
6367
+ # characters: + - = . \_ : / @.
6368
+ #
6369
+ # * Tag keys and values are case-sensitive.
6370
+ #
6371
+ # * Do not use `aws:`, `AWS:`, or any upper or lowercase combination
6372
+ # of such as a prefix for either keys or values as it is reserved
6373
+ # for AWS use. You cannot edit or delete tag keys or values with
6374
+ # this prefix. Tags with this prefix do not count against your tags
6375
+ # per resource limit.
6147
6376
  # @return [Array<Types::Tag>]
6148
6377
  #
6149
6378
  # @!attribute [rw] enable_ecs_managed_tags
@@ -6471,15 +6700,40 @@ module Aws::ECS
6471
6700
  # @return [String]
6472
6701
  #
6473
6702
  # @!attribute [rw] deployment_controller
6474
- # The deployment controller type the service is using.
6703
+ # The deployment controller type the service is using. When using the
6704
+ # DescribeServices API, this field is omitted if the service is using
6705
+ # the `ECS` deployment controller type.
6475
6706
  # @return [Types::DeploymentController]
6476
6707
  #
6477
6708
  # @!attribute [rw] tags
6478
6709
  # The metadata that you apply to the service to help you categorize
6479
6710
  # and organize them. Each tag consists of a key and an optional value,
6480
- # both of which you define. Tag keys can have a maximum character
6481
- # length of 128 characters, and tag values can have a maximum length
6482
- # of 256 characters.
6711
+ # both of which you define.
6712
+ #
6713
+ # The following basic restrictions apply to tags:
6714
+ #
6715
+ # * Maximum number of tags per resource - 50
6716
+ #
6717
+ # * For each resource, each tag key must be unique, and each tag key
6718
+ # can have only one value.
6719
+ #
6720
+ # * Maximum key length - 128 Unicode characters in UTF-8
6721
+ #
6722
+ # * Maximum value length - 256 Unicode characters in UTF-8
6723
+ #
6724
+ # * If your tagging schema is used across multiple services and
6725
+ # resources, remember that other services may have restrictions on
6726
+ # allowed characters. Generally allowed characters are: letters,
6727
+ # numbers, and spaces representable in UTF-8, and the following
6728
+ # characters: + - = . \_ : / @.
6729
+ #
6730
+ # * Tag keys and values are case-sensitive.
6731
+ #
6732
+ # * Do not use `aws:`, `AWS:`, or any upper or lowercase combination
6733
+ # of such as a prefix for either keys or values as it is reserved
6734
+ # for AWS use. You cannot edit or delete tag keys or values with
6735
+ # this prefix. Tags with this prefix do not count against your tags
6736
+ # per resource limit.
6483
6737
  # @return [Array<Types::Tag>]
6484
6738
  #
6485
6739
  # @!attribute [rw] created_by
@@ -6760,9 +7014,32 @@ module Aws::ECS
6760
7014
  # @!attribute [rw] tags
6761
7015
  # The metadata that you apply to the task to help you categorize and
6762
7016
  # organize them. Each tag consists of a key and an optional value,
6763
- # both of which you define. Tag keys can have a maximum character
6764
- # length of 128 characters, and tag values can have a maximum length
6765
- # of 256 characters.
7017
+ # both of which you define.
7018
+ #
7019
+ # The following basic restrictions apply to tags:
7020
+ #
7021
+ # * Maximum number of tags per resource - 50
7022
+ #
7023
+ # * For each resource, each tag key must be unique, and each tag key
7024
+ # can have only one value.
7025
+ #
7026
+ # * Maximum key length - 128 Unicode characters in UTF-8
7027
+ #
7028
+ # * Maximum value length - 256 Unicode characters in UTF-8
7029
+ #
7030
+ # * If your tagging schema is used across multiple services and
7031
+ # resources, remember that other services may have restrictions on
7032
+ # allowed characters. Generally allowed characters are: letters,
7033
+ # numbers, and spaces representable in UTF-8, and the following
7034
+ # characters: + - = . \_ : / @.
7035
+ #
7036
+ # * Tag keys and values are case-sensitive.
7037
+ #
7038
+ # * Do not use `aws:`, `AWS:`, or any upper or lowercase combination
7039
+ # of such as a prefix for either keys or values as it is reserved
7040
+ # for AWS use. You cannot edit or delete tag keys or values with
7041
+ # this prefix. Tags with this prefix do not count against your tags
7042
+ # per resource limit.
6766
7043
  # @return [Array<Types::Tag>]
6767
7044
  #
6768
7045
  # @!attribute [rw] enable_ecs_managed_tags
@@ -7127,9 +7404,32 @@ module Aws::ECS
7127
7404
 
7128
7405
  # The metadata that you apply to a resource to help you categorize and
7129
7406
  # organize them. Each tag consists of a key and an optional value, both
7130
- # of which you define. Tag keys can have a maximum character length of
7131
- # 128 characters, and tag values can have a maximum length of 256
7132
- # characters.
7407
+ # of which you define.
7408
+ #
7409
+ # The following basic restrictions apply to tags:
7410
+ #
7411
+ # * Maximum number of tags per resource - 50
7412
+ #
7413
+ # * For each resource, each tag key must be unique, and each tag key can
7414
+ # have only one value.
7415
+ #
7416
+ # * Maximum key length - 128 Unicode characters in UTF-8
7417
+ #
7418
+ # * Maximum value length - 256 Unicode characters in UTF-8
7419
+ #
7420
+ # * If your tagging schema is used across multiple services and
7421
+ # resources, remember that other services may have restrictions on
7422
+ # allowed characters. Generally allowed characters are: letters,
7423
+ # numbers, and spaces representable in UTF-8, and the following
7424
+ # characters: + - = . \_ : / @.
7425
+ #
7426
+ # * Tag keys and values are case-sensitive.
7427
+ #
7428
+ # * Do not use `aws:`, `AWS:`, or any upper or lowercase combination of
7429
+ # such as a prefix for either keys or values as it is reserved for AWS
7430
+ # use. You cannot edit or delete tag keys or values with this prefix.
7431
+ # Tags with this prefix do not count against your tags per resource
7432
+ # limit.
7133
7433
  #
7134
7434
  # @note When making an API call, you may pass Tag
7135
7435
  # data as a hash:
@@ -7179,9 +7479,32 @@ module Aws::ECS
7179
7479
  #
7180
7480
  # @!attribute [rw] tags
7181
7481
  # The tags to add to the resource. A tag is an array of key-value
7182
- # pairs. Tag keys can have a maximum character length of 128
7183
- # characters, and tag values can have a maximum length of 256
7184
- # characters.
7482
+ # pairs.
7483
+ #
7484
+ # The following basic restrictions apply to tags:
7485
+ #
7486
+ # * Maximum number of tags per resource - 50
7487
+ #
7488
+ # * For each resource, each tag key must be unique, and each tag key
7489
+ # can have only one value.
7490
+ #
7491
+ # * Maximum key length - 128 Unicode characters in UTF-8
7492
+ #
7493
+ # * Maximum value length - 256 Unicode characters in UTF-8
7494
+ #
7495
+ # * If your tagging schema is used across multiple services and
7496
+ # resources, remember that other services may have restrictions on
7497
+ # allowed characters. Generally allowed characters are: letters,
7498
+ # numbers, and spaces representable in UTF-8, and the following
7499
+ # characters: + - = . \_ : / @.
7500
+ #
7501
+ # * Tag keys and values are case-sensitive.
7502
+ #
7503
+ # * Do not use `aws:`, `AWS:`, or any upper or lowercase combination
7504
+ # of such as a prefix for either keys or values as it is reserved
7505
+ # for AWS use. You cannot edit or delete tag keys or values with
7506
+ # this prefix. Tags with this prefix do not count against your tags
7507
+ # per resource limit.
7185
7508
  # @return [Array<Types::Tag>]
7186
7509
  #
7187
7510
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/TagResourceRequest AWS API Documentation
@@ -7421,9 +7744,32 @@ module Aws::ECS
7421
7744
  # @!attribute [rw] tags
7422
7745
  # The metadata that you apply to the task to help you categorize and
7423
7746
  # organize them. Each tag consists of a key and an optional value,
7424
- # both of which you define. Tag keys can have a maximum character
7425
- # length of 128 characters, and tag values can have a maximum length
7426
- # of 256 characters.
7747
+ # both of which you define.
7748
+ #
7749
+ # The following basic restrictions apply to tags:
7750
+ #
7751
+ # * Maximum number of tags per resource - 50
7752
+ #
7753
+ # * For each resource, each tag key must be unique, and each tag key
7754
+ # can have only one value.
7755
+ #
7756
+ # * Maximum key length - 128 Unicode characters in UTF-8
7757
+ #
7758
+ # * Maximum value length - 256 Unicode characters in UTF-8
7759
+ #
7760
+ # * If your tagging schema is used across multiple services and
7761
+ # resources, remember that other services may have restrictions on
7762
+ # allowed characters. Generally allowed characters are: letters,
7763
+ # numbers, and spaces representable in UTF-8, and the following
7764
+ # characters: + - = . \_ : / @.
7765
+ #
7766
+ # * Tag keys and values are case-sensitive.
7767
+ #
7768
+ # * Do not use `aws:`, `AWS:`, or any upper or lowercase combination
7769
+ # of such as a prefix for either keys or values as it is reserved
7770
+ # for AWS use. You cannot edit or delete tag keys or values with
7771
+ # this prefix. Tags with this prefix do not count against your tags
7772
+ # per resource limit.
7427
7773
  # @return [Array<Types::Tag>]
7428
7774
  #
7429
7775
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/Task AWS API Documentation
@@ -7492,11 +7838,11 @@ module Aws::ECS
7492
7838
  # @return [String]
7493
7839
  #
7494
7840
  # @!attribute [rw] task_role_arn
7495
- # The Amazon Resource Name (ARN) of an AWS Identity and Access
7496
- # Management (IAM) role that grants containers in the task permission
7497
- # to call AWS APIs on your behalf. For more information, see [Amazon
7498
- # ECS Task Role][1] in the *Amazon Elastic Container Service Developer
7499
- # Guide*.
7841
+ # The short name or full Amazon Resource Name (ARN) of the AWS
7842
+ # Identity and Access Management (IAM) role that grants containers in
7843
+ # the task permission to call AWS APIs on your behalf. For more
7844
+ # information, see [Amazon ECS Task Role][1] in the *Amazon Elastic
7845
+ # Container Service Developer Guide*.
7500
7846
  #
7501
7847
  # IAM roles for tasks on Windows require that the `-EnableTaskIAMRole`
7502
7848
  # option is set when you launch the Amazon ECS-optimized Windows AMI.
@@ -8030,13 +8376,6 @@ module Aws::ECS
8030
8376
  # * All tasks are reporting a healthy status from the load balancers,
8031
8377
  # service discovery, and container health checks.
8032
8378
  #
8033
- # <note markdown="1"> If a `healthCheckGracePeriodSeconds` value was set when the
8034
- # service was created, you may see a `STEADY_STATE` reached since
8035
- # unhealthy Elastic Load Balancing target health checks will be
8036
- # ignored until it expires.
8037
- #
8038
- # </note>
8039
- #
8040
8379
  # If any of those conditions are not met, the stability status returns
8041
8380
  # `STABILIZING`.
8042
8381
  # @return [String]
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.45.0
4
+ version: 1.46.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: 2019-07-25 00:00:00.000000000 Z
11
+ date: 2019-08-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core