aws-sdk-ecs 1.190.0 → 1.192.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 696978dd19e9ba3248037b12a185909d623fd8a42dcfb999e320f09adf22d7b2
4
- data.tar.gz: f8717d1752227b9fcb4f9d794339b4d42fc4860a0a4b53d97f7e3cf6f0e81914
3
+ metadata.gz: 98c19597f8dbe1de1f1618fbda56f0469479eb6b08970d15407276f5746cf703
4
+ data.tar.gz: 4bedccfd80a9695b0b55e84de17b0d60e3c7df2ceadba83ecb8828da29a9f1fa
5
5
  SHA512:
6
- metadata.gz: 14af99e4f0f04687560ae65976c679957067631e8c19c6384fc5673d60c83303bb6fb1d62354bc66d70946cfacee8d368afc645b006a4c37064415f0ca0e12f1
7
- data.tar.gz: c34de1472808d5fdf6e5a335f0d57dc953b07b1489ab124bfaeed273477e6f4895d8971f607845cced000f14b739150e77ca661da331d695e9b410cc2e77f5ab
6
+ metadata.gz: 3a08f10c4dccebd955cfceee551589e7ce896078bd89e6bec1a5b6f7b3e9eae159e212d3a40d78b58f7ddeddeea67caf999ce5d60d92f4821bfc0241524f0bd7
7
+ data.tar.gz: 89778af0c0cf3f7e1b8e8d98259d62dcb3466d9d2210da184be20696a7c0a150b4d2fba1616dacd36a0f0e73a920daf8a9c1f62fc1acd92e8aaef9ac371b0b38
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.192.0 (2025-05-16)
5
+ ------------------
6
+
7
+ * Feature - This is an Amazon ECs documentation only release to support the change of the container exit "reason" field from 255 characters to 1024 characters.
8
+
9
+ 1.191.0 (2025-05-13)
10
+ ------------------
11
+
12
+ * Feature - This release extends functionality for Amazon EBS volumes attached to Amazon ECS tasks by adding support for the new EBS volumeInitializationRate parameter in ECS RunTask/StartTask/CreateService/UpdateService APIs.
13
+
4
14
  1.190.0 (2025-05-12)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.190.0
1
+ 1.192.0
@@ -1630,6 +1630,7 @@ module Aws::ECS
1630
1630
  # volume_type: "EBSVolumeType",
1631
1631
  # size_in_gi_b: 1,
1632
1632
  # snapshot_id: "EBSSnapshotId",
1633
+ # volume_initialization_rate: 1,
1633
1634
  # iops: 1,
1634
1635
  # throughput: 1,
1635
1636
  # tag_specifications: [
@@ -1791,6 +1792,7 @@ module Aws::ECS
1791
1792
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.volume_type #=> String
1792
1793
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.size_in_gi_b #=> Integer
1793
1794
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.snapshot_id #=> String
1795
+ # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.volume_initialization_rate #=> Integer
1794
1796
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.iops #=> Integer
1795
1797
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.throughput #=> Integer
1796
1798
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.tag_specifications #=> Array
@@ -2724,6 +2726,7 @@ module Aws::ECS
2724
2726
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.volume_type #=> String
2725
2727
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.size_in_gi_b #=> Integer
2726
2728
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.snapshot_id #=> String
2729
+ # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.volume_initialization_rate #=> Integer
2727
2730
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.iops #=> Integer
2728
2731
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.throughput #=> Integer
2729
2732
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.tag_specifications #=> Array
@@ -2852,7 +2855,7 @@ module Aws::ECS
2852
2855
  # environment: [
2853
2856
  # ],
2854
2857
  # essential: true,
2855
- # image: "ubuntu",
2858
+ # image: "public.ecr.aws/docker/library/ubuntu:latest",
2856
2859
  # memory: 100,
2857
2860
  # mount_points: [
2858
2861
  # ],
@@ -3388,10 +3391,10 @@ module Aws::ECS
3388
3391
  #
3389
3392
  # @example Example: To deregister a revision of a task definition
3390
3393
  #
3391
- # # This example deregisters the first revision of the curler task definition
3394
+ # # This example deregisters the first revision of the fargate-task task definition
3392
3395
  #
3393
3396
  # resp = client.deregister_task_definition({
3394
- # task_definition: "curler:1",
3397
+ # task_definition: "fargate-task:1",
3395
3398
  # })
3396
3399
  #
3397
3400
  # resp.to_h outputs the following:
@@ -3399,30 +3402,23 @@ module Aws::ECS
3399
3402
  # task_definition: {
3400
3403
  # container_definitions: [
3401
3404
  # {
3402
- # name: "curler",
3403
- # command: [
3404
- # "curl -v http://example.com/",
3405
- # ],
3406
- # cpu: 100,
3407
- # entry_point: [
3408
- # ],
3409
- # environment: [
3410
- # ],
3405
+ # name: "nginx",
3406
+ # cpu: 256,
3411
3407
  # essential: true,
3412
- # image: "curl:latest",
3413
- # memory: 256,
3414
- # mount_points: [
3415
- # ],
3408
+ # image: "public.ecr.aws/docker/library/nginx:latest",
3409
+ # memory: 128,
3416
3410
  # port_mappings: [
3417
- # ],
3418
- # volumes_from: [
3411
+ # {
3412
+ # container_port: 80,
3413
+ # host_port: 80,
3414
+ # protocol: "tcp",
3415
+ # },
3419
3416
  # ],
3420
3417
  # },
3421
3418
  # ],
3422
- # family: "curler",
3423
- # revision: 1,
3419
+ # family: "fargate-task",
3424
3420
  # status: "INACTIVE",
3425
- # task_definition_arn: "arn:aws:ecs:us-west-2:123456789012:task-definition/curler:1",
3421
+ # task_definition_arn: "arn:aws:ecs:us-west-2:123456789012:task-definition/fargate-task:1",
3426
3422
  # volumes: [
3427
3423
  # ],
3428
3424
  # },
@@ -4363,6 +4359,7 @@ module Aws::ECS
4363
4359
  # resp.service_revisions[0].volume_configurations[0].managed_ebs_volume.volume_type #=> String
4364
4360
  # resp.service_revisions[0].volume_configurations[0].managed_ebs_volume.size_in_gi_b #=> Integer
4365
4361
  # resp.service_revisions[0].volume_configurations[0].managed_ebs_volume.snapshot_id #=> String
4362
+ # resp.service_revisions[0].volume_configurations[0].managed_ebs_volume.volume_initialization_rate #=> Integer
4366
4363
  # resp.service_revisions[0].volume_configurations[0].managed_ebs_volume.iops #=> Integer
4367
4364
  # resp.service_revisions[0].volume_configurations[0].managed_ebs_volume.throughput #=> Integer
4368
4365
  # resp.service_revisions[0].volume_configurations[0].managed_ebs_volume.tag_specifications #=> Array
@@ -4613,6 +4610,7 @@ module Aws::ECS
4613
4610
  # resp.services[0].deployments[0].volume_configurations[0].managed_ebs_volume.volume_type #=> String
4614
4611
  # resp.services[0].deployments[0].volume_configurations[0].managed_ebs_volume.size_in_gi_b #=> Integer
4615
4612
  # resp.services[0].deployments[0].volume_configurations[0].managed_ebs_volume.snapshot_id #=> String
4613
+ # resp.services[0].deployments[0].volume_configurations[0].managed_ebs_volume.volume_initialization_rate #=> Integer
4616
4614
  # resp.services[0].deployments[0].volume_configurations[0].managed_ebs_volume.iops #=> Integer
4617
4615
  # resp.services[0].deployments[0].volume_configurations[0].managed_ebs_volume.throughput #=> Integer
4618
4616
  # resp.services[0].deployments[0].volume_configurations[0].managed_ebs_volume.tag_specifications #=> Array
@@ -8119,7 +8117,7 @@ module Aws::ECS
8119
8117
  # ],
8120
8118
  # cpu: 10,
8121
8119
  # essential: true,
8122
- # image: "busybox",
8120
+ # image: "public.ecr.aws/docker/library/busybox:latest",
8123
8121
  # memory: 10,
8124
8122
  # },
8125
8123
  # ],
@@ -8143,7 +8141,7 @@ module Aws::ECS
8143
8141
  # environment: [
8144
8142
  # ],
8145
8143
  # essential: true,
8146
- # image: "busybox",
8144
+ # image: "public.ecr.aws/docker/library/busybox:latest",
8147
8145
  # memory: 10,
8148
8146
  # mount_points: [
8149
8147
  # ],
@@ -9048,6 +9046,7 @@ module Aws::ECS
9048
9046
  # volume_type: "EBSVolumeType",
9049
9047
  # size_in_gi_b: 1,
9050
9048
  # snapshot_id: "EBSSnapshotId",
9049
+ # volume_initialization_rate: 1,
9051
9050
  # iops: 1,
9052
9051
  # throughput: 1,
9053
9052
  # tag_specifications: [
@@ -9480,6 +9479,7 @@ module Aws::ECS
9480
9479
  # volume_type: "EBSVolumeType",
9481
9480
  # size_in_gi_b: 1,
9482
9481
  # snapshot_id: "EBSSnapshotId",
9482
+ # volume_initialization_rate: 1,
9483
9483
  # iops: 1,
9484
9484
  # throughput: 1,
9485
9485
  # tag_specifications: [
@@ -11847,6 +11847,7 @@ module Aws::ECS
11847
11847
  # volume_type: "EBSVolumeType",
11848
11848
  # size_in_gi_b: 1,
11849
11849
  # snapshot_id: "EBSSnapshotId",
11850
+ # volume_initialization_rate: 1,
11850
11851
  # iops: 1,
11851
11852
  # throughput: 1,
11852
11853
  # tag_specifications: [
@@ -12008,6 +12009,7 @@ module Aws::ECS
12008
12009
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.volume_type #=> String
12009
12010
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.size_in_gi_b #=> Integer
12010
12011
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.snapshot_id #=> String
12012
+ # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.volume_initialization_rate #=> Integer
12011
12013
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.iops #=> Integer
12012
12014
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.throughput #=> Integer
12013
12015
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.tag_specifications #=> Array
@@ -12537,7 +12539,7 @@ module Aws::ECS
12537
12539
  tracer: tracer
12538
12540
  )
12539
12541
  context[:gem_name] = 'aws-sdk-ecs'
12540
- context[:gem_version] = '1.190.0'
12542
+ context[:gem_version] = '1.192.0'
12541
12543
  Seahorse::Client::Request.new(handlers, context)
12542
12544
  end
12543
12545
 
@@ -1653,6 +1653,7 @@ module Aws::ECS
1653
1653
  ServiceManagedEBSVolumeConfiguration.add_member(:volume_type, Shapes::ShapeRef.new(shape: EBSVolumeType, location_name: "volumeType"))
1654
1654
  ServiceManagedEBSVolumeConfiguration.add_member(:size_in_gi_b, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "sizeInGiB"))
1655
1655
  ServiceManagedEBSVolumeConfiguration.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: EBSSnapshotId, location_name: "snapshotId"))
1656
+ ServiceManagedEBSVolumeConfiguration.add_member(:volume_initialization_rate, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "volumeInitializationRate"))
1656
1657
  ServiceManagedEBSVolumeConfiguration.add_member(:iops, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "iops"))
1657
1658
  ServiceManagedEBSVolumeConfiguration.add_member(:throughput, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "throughput"))
1658
1659
  ServiceManagedEBSVolumeConfiguration.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: EBSTagSpecifications, location_name: "tagSpecifications"))
@@ -1910,6 +1911,7 @@ module Aws::ECS
1910
1911
  TaskManagedEBSVolumeConfiguration.add_member(:volume_type, Shapes::ShapeRef.new(shape: EBSVolumeType, location_name: "volumeType"))
1911
1912
  TaskManagedEBSVolumeConfiguration.add_member(:size_in_gi_b, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "sizeInGiB"))
1912
1913
  TaskManagedEBSVolumeConfiguration.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: EBSSnapshotId, location_name: "snapshotId"))
1914
+ TaskManagedEBSVolumeConfiguration.add_member(:volume_initialization_rate, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "volumeInitializationRate"))
1913
1915
  TaskManagedEBSVolumeConfiguration.add_member(:iops, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "iops"))
1914
1916
  TaskManagedEBSVolumeConfiguration.add_member(:throughput, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "throughput"))
1915
1917
  TaskManagedEBSVolumeConfiguration.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: EBSTagSpecifications, location_name: "tagSpecifications"))
@@ -510,7 +510,8 @@ module Aws::ECS
510
510
  # @return [String]
511
511
  #
512
512
  # @!attribute [rw] configuration
513
- # The execute command configuration for the cluster.
513
+ # The execute command and managed storage configuration for the
514
+ # cluster.
514
515
  # @return [Types::ClusterConfiguration]
515
516
  #
516
517
  # @!attribute [rw] status
@@ -970,7 +971,7 @@ module Aws::ECS
970
971
  # @return [Integer]
971
972
  #
972
973
  # @!attribute [rw] reason
973
- # A short (255 max characters) human-readable string to provide
974
+ # A short (1024 max characters) human-readable string to provide
974
975
  # additional details about a running or stopped container.
975
976
  # @return [String]
976
977
  #
@@ -7241,17 +7242,40 @@ module Aws::ECS
7241
7242
  # The managed storage configuration for the cluster.
7242
7243
  #
7243
7244
  # @!attribute [rw] kms_key_id
7244
- # Specify a Key Management Service key ID to encrypt the managed
7245
- # storage.
7245
+ # Specify a Key Management Service key ID to encrypt Amazon ECS
7246
+ # managed storage.
7247
+ #
7248
+ # When you specify a `kmsKeyId`, Amazon ECS uses the key to encrypt
7249
+ # data volumes managed by Amazon ECS that are attached to tasks in the
7250
+ # cluster. The following data volumes are managed by Amazon ECS:
7251
+ # Amazon EBS. For more information about encryption of Amazon EBS
7252
+ # volumes attached to Amazon ECS tasks, see [Encrypt data stored in
7253
+ # Amazon EBS volumes for Amazon ECS][1] in the *Amazon Elastic
7254
+ # Container Service Developer Guide*.
7246
7255
  #
7247
7256
  # The key must be a single Region key.
7257
+ #
7258
+ #
7259
+ #
7260
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ebs-kms-encryption.html
7248
7261
  # @return [String]
7249
7262
  #
7250
7263
  # @!attribute [rw] fargate_ephemeral_storage_kms_key_id
7251
- # Specify the Key Management Service key ID for the Fargate ephemeral
7264
+ # Specify the Key Management Service key ID for Fargate ephemeral
7252
7265
  # storage.
7253
7266
  #
7267
+ # When you specify a `fargateEphemeralStorageKmsKeyId`, Amazon Web
7268
+ # Services Fargate uses the key to encrypt data at rest in ephemeral
7269
+ # storage. For more information about Fargate ephemeral storage
7270
+ # encryption, see [Customer managed keys for Amazon Web Services
7271
+ # Fargate ephemeral storage for Amazon ECS][1] in the *Amazon Elastic
7272
+ # Container Service Developer Guide*.
7273
+ #
7254
7274
  # The key must be a single Region key.
7275
+ #
7276
+ #
7277
+ #
7278
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/fargate-storage-encryption.html
7255
7279
  # @return [String]
7256
7280
  #
7257
7281
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ManagedStorageConfiguration AWS API Documentation
@@ -10335,10 +10359,12 @@ module Aws::ECS
10335
10359
  # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ebs-volumes.html#ebs-volumes-configuration
10336
10360
  #
10337
10361
  # @!attribute [rw] encrypted
10338
- # Indicates whether the volume should be encrypted. If no value is
10339
- # specified, encryption is turned on by default. This parameter maps
10340
- # 1:1 with the `Encrypted` parameter of the [CreateVolume API][1] in
10341
- # the *Amazon EC2 API Reference*.
10362
+ # Indicates whether the volume should be encrypted. If you turn on
10363
+ # Region-level Amazon EBS encryption by default but set this value as
10364
+ # `false`, the setting is overridden and the volume is encrypted with
10365
+ # the KMS key specified for Amazon EBS encryption by default. This
10366
+ # parameter maps 1:1 with the `Encrypted` parameter of the
10367
+ # [CreateVolume API][1] in the *Amazon EC2 API Reference*.
10342
10368
  #
10343
10369
  #
10344
10370
  #
@@ -10347,12 +10373,14 @@ module Aws::ECS
10347
10373
  #
10348
10374
  # @!attribute [rw] kms_key_id
10349
10375
  # The Amazon Resource Name (ARN) identifier of the Amazon Web Services
10350
- # Key Management Service key to use for Amazon EBS encryption. When
10351
- # encryption is turned on and no Amazon Web Services Key Management
10352
- # Service key is specified, the default Amazon Web Services managed
10353
- # key for Amazon EBS volumes is used. This parameter maps 1:1 with the
10354
- # `KmsKeyId` parameter of the [CreateVolume API][1] in the *Amazon EC2
10355
- # API Reference*.
10376
+ # Key Management Service key to use for Amazon EBS encryption. When a
10377
+ # key is specified using this parameter, it overrides Amazon EBS
10378
+ # default encryption or any KMS key that you specified for
10379
+ # cluster-level managed storage encryption. This parameter maps 1:1
10380
+ # with the `KmsKeyId` parameter of the [CreateVolume API][1] in the
10381
+ # *Amazon EC2 API Reference*. For more information about encrypting
10382
+ # Amazon EBS volumes attached to tasks, see [Encrypt data stored in
10383
+ # Amazon EBS volumes attached to Amazon ECS tasks][2].
10356
10384
  #
10357
10385
  # Amazon Web Services authenticates the Amazon Web Services Key
10358
10386
  # Management Service key asynchronously. Therefore, if you specify an
@@ -10362,6 +10390,7 @@ module Aws::ECS
10362
10390
  #
10363
10391
  #
10364
10392
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateVolume.html
10393
+ # [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ebs-kms-encryption.html
10365
10394
  # @return [String]
10366
10395
  #
10367
10396
  # @!attribute [rw] volume_type
@@ -10417,16 +10446,29 @@ module Aws::ECS
10417
10446
  # @return [Integer]
10418
10447
  #
10419
10448
  # @!attribute [rw] snapshot_id
10420
- # The snapshot that Amazon ECS uses to create the volume. You must
10421
- # specify either a snapshot ID or a volume size. This parameter maps
10422
- # 1:1 with the `SnapshotId` parameter of the [CreateVolume API][1] in
10423
- # the *Amazon EC2 API Reference*.
10449
+ # The snapshot that Amazon ECS uses to create volumes for attachment
10450
+ # to tasks maintained by the service. You must specify either
10451
+ # `snapshotId` or `sizeInGiB` in your volume configuration. This
10452
+ # parameter maps 1:1 with the `SnapshotId` parameter of the
10453
+ # [CreateVolume API][1] in the *Amazon EC2 API Reference*.
10424
10454
  #
10425
10455
  #
10426
10456
  #
10427
10457
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateVolume.html
10428
10458
  # @return [String]
10429
10459
  #
10460
+ # @!attribute [rw] volume_initialization_rate
10461
+ # The rate, in MiB/s, at which data is fetched from a snapshot of an
10462
+ # existing EBS volume to create new volumes for attachment to the
10463
+ # tasks maintained by the service. This property can be specified only
10464
+ # if you specify a `snapshotId`. For more information, see [Initialize
10465
+ # Amazon EBS volumes][1] in the *Amazon EBS User Guide*.
10466
+ #
10467
+ #
10468
+ #
10469
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
10470
+ # @return [Integer]
10471
+ #
10430
10472
  # @!attribute [rw] iops
10431
10473
  # The number of I/O operations per second (IOPS). For `gp3`, `io1`,
10432
10474
  # and `io2` volumes, this represents the number of IOPS that are
@@ -10495,7 +10537,7 @@ module Aws::ECS
10495
10537
  # The filesystem type for the volume. For volumes created from a
10496
10538
  # snapshot, you must specify the same filesystem type that the volume
10497
10539
  # was using when the snapshot was created. If there is a filesystem
10498
- # type mismatch, the task will fail to start.
10540
+ # type mismatch, the tasks will fail to start.
10499
10541
  #
10500
10542
  # The available Linux filesystem types are
 `ext3`, `ext4`, and `xfs`.
10501
10543
  # If no value is specified, the `xfs` filesystem type is used by
@@ -10512,6 +10554,7 @@ module Aws::ECS
10512
10554
  :volume_type,
10513
10555
  :size_in_gi_b,
10514
10556
  :snapshot_id,
10557
+ :volume_initialization_rate,
10515
10558
  :iops,
10516
10559
  :throughput,
10517
10560
  :tag_specifications,
@@ -11320,7 +11363,9 @@ module Aws::ECS
11320
11363
  # "kernel.shmmni" | "kernel.shm_rmid_forced"`, and `Sysctls` that
11321
11364
  # start with `"fs.mqueue.*"`
11322
11365
  #
11323
- # Valid network namespace values: `Sysctls` that start with `"net.*"`
11366
+ # Valid network namespace values: `Sysctls` that start with `"net.*"`.
11367
+ # Only namespaced `Sysctls` that exist within the container starting
11368
+ # with "net.* are accepted.
11324
11369
  #
11325
11370
  # All of these values are supported by Fargate.
11326
11371
  # @return [String]
@@ -12294,10 +12339,12 @@ module Aws::ECS
12294
12339
  # Amazon EBS volume, with one volume created for each task.
12295
12340
  #
12296
12341
  # @!attribute [rw] encrypted
12297
- # Indicates whether the volume should be encrypted. If no value is
12298
- # specified, encryption is turned on by default. This parameter maps
12299
- # 1:1 with the `Encrypted` parameter of the [CreateVolume API][1] in
12300
- # the *Amazon EC2 API Reference*.
12342
+ # Indicates whether the volume should be encrypted. If you turn on
12343
+ # Region-level Amazon EBS encryption by default but set this value as
12344
+ # `false`, the setting is overridden and the volume is encrypted with
12345
+ # the KMS key specified for Amazon EBS encryption by default. This
12346
+ # parameter maps 1:1 with the `Encrypted` parameter of the
12347
+ # [CreateVolume API][1] in the *Amazon EC2 API Reference*.
12301
12348
  #
12302
12349
  #
12303
12350
  #
@@ -12306,12 +12353,14 @@ module Aws::ECS
12306
12353
  #
12307
12354
  # @!attribute [rw] kms_key_id
12308
12355
  # The Amazon Resource Name (ARN) identifier of the Amazon Web Services
12309
- # Key Management Service key to use for Amazon EBS encryption. When
12310
- # encryption is turned on and no Amazon Web Services Key Management
12311
- # Service key is specified, the default Amazon Web Services managed
12312
- # key for Amazon EBS volumes is used. This parameter maps 1:1 with the
12313
- # `KmsKeyId` parameter of the [CreateVolume API][1] in the *Amazon EC2
12314
- # API Reference*.
12356
+ # Key Management Service key to use for Amazon EBS encryption. When a
12357
+ # key is specified using this parameter, it overrides Amazon EBS
12358
+ # default encryption or any KMS key that you specified for
12359
+ # cluster-level managed storage encryption. This parameter maps 1:1
12360
+ # with the `KmsKeyId` parameter of the [CreateVolume API][1] in the
12361
+ # *Amazon EC2 API Reference*. For more information about encrypting
12362
+ # Amazon EBS volumes attached to a task, see [Encrypt data stored in
12363
+ # Amazon EBS volumes attached to Amazon ECS tasks][2].
12315
12364
  #
12316
12365
  # Amazon Web Services authenticates the Amazon Web Services Key
12317
12366
  # Management Service key asynchronously. Therefore, if you specify an
@@ -12321,6 +12370,7 @@ module Aws::ECS
12321
12370
  #
12322
12371
  #
12323
12372
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateVolume.html
12373
+ # [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ebs-kms-encryption.html
12324
12374
  # @return [String]
12325
12375
  #
12326
12376
  # @!attribute [rw] volume_type
@@ -12386,6 +12436,18 @@ module Aws::ECS
12386
12436
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateVolume.html
12387
12437
  # @return [String]
12388
12438
  #
12439
+ # @!attribute [rw] volume_initialization_rate
12440
+ # The rate, in MiB/s, at which data is fetched from a snapshot of an
12441
+ # existing Amazon EBS volume to create a new volume for attachment to
12442
+ # the task. This property can be specified only if you specify a
12443
+ # `snapshotId`. For more information, see [Initialize Amazon EBS
12444
+ # volumes][1] in the *Amazon EBS User Guide*.
12445
+ #
12446
+ #
12447
+ #
12448
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
12449
+ # @return [Integer]
12450
+ #
12389
12451
  # @!attribute [rw] iops
12390
12452
  # The number of I/O operations per second (IOPS). For `gp3`, `io1`,
12391
12453
  # and `io2` volumes, this represents the number of IOPS that are
@@ -12474,6 +12536,7 @@ module Aws::ECS
12474
12536
  :volume_type,
12475
12537
  :size_in_gi_b,
12476
12538
  :snapshot_id,
12539
+ :volume_initialization_rate,
12477
12540
  :iops,
12478
12541
  :throughput,
12479
12542
  :tag_specifications,
data/lib/aws-sdk-ecs.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::ECS
55
55
  autoload :EndpointProvider, 'aws-sdk-ecs/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-ecs/endpoints'
57
57
 
58
- GEM_VERSION = '1.190.0'
58
+ GEM_VERSION = '1.192.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -287,6 +287,7 @@ module Aws
287
287
  volume_type: ::String?,
288
288
  size_in_gi_b: ::Integer?,
289
289
  snapshot_id: ::String?,
290
+ volume_initialization_rate: ::Integer?,
290
291
  iops: ::Integer?,
291
292
  throughput: ::Integer?,
292
293
  tag_specifications: Array[
@@ -1253,6 +1254,7 @@ module Aws
1253
1254
  volume_type: ::String?,
1254
1255
  size_in_gi_b: ::Integer?,
1255
1256
  snapshot_id: ::String?,
1257
+ volume_initialization_rate: ::Integer?,
1256
1258
  iops: ::Integer?,
1257
1259
  throughput: ::Integer?,
1258
1260
  tag_specifications: Array[
@@ -1358,6 +1360,7 @@ module Aws
1358
1360
  volume_type: ::String?,
1359
1361
  size_in_gi_b: ::Integer?,
1360
1362
  snapshot_id: ::String?,
1363
+ volume_initialization_rate: ::Integer?,
1361
1364
  iops: ::Integer?,
1362
1365
  throughput: ::Integer?,
1363
1366
  tag_specifications: Array[
@@ -1739,6 +1742,7 @@ module Aws
1739
1742
  volume_type: ::String?,
1740
1743
  size_in_gi_b: ::Integer?,
1741
1744
  snapshot_id: ::String?,
1745
+ volume_initialization_rate: ::Integer?,
1742
1746
  iops: ::Integer?,
1743
1747
  throughput: ::Integer?,
1744
1748
  tag_specifications: Array[
data/sig/types.rbs CHANGED
@@ -1458,6 +1458,7 @@ module Aws::ECS
1458
1458
  attr_accessor volume_type: ::String
1459
1459
  attr_accessor size_in_gi_b: ::Integer
1460
1460
  attr_accessor snapshot_id: ::String
1461
+ attr_accessor volume_initialization_rate: ::Integer
1461
1462
  attr_accessor iops: ::Integer
1462
1463
  attr_accessor throughput: ::Integer
1463
1464
  attr_accessor tag_specifications: ::Array[Types::EBSTagSpecification]
@@ -1739,6 +1740,7 @@ module Aws::ECS
1739
1740
  attr_accessor volume_type: ::String
1740
1741
  attr_accessor size_in_gi_b: ::Integer
1741
1742
  attr_accessor snapshot_id: ::String
1743
+ attr_accessor volume_initialization_rate: ::Integer
1742
1744
  attr_accessor iops: ::Integer
1743
1745
  attr_accessor throughput: ::Integer
1744
1746
  attr_accessor tag_specifications: ::Array[Types::EBSTagSpecification]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ecs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.190.0
4
+ version: 1.192.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services