aws-sdk-ec2 1.519.0 → 1.520.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: e9969d36c4e641f4bbf31116be8348e2559ce0c1abfc747adbb1e67e41993b1f
4
- data.tar.gz: 953265c71baa1c65b469a74284392b268be0520c98734005f319468c94e94693
3
+ metadata.gz: a5421f4c52996ea4fc2fd5c6b1cd190c2ebc28059e64709a063d7326c3cc84bb
4
+ data.tar.gz: ef2d05f84d6ed735b27b777409b0dd960b7f4da65ec3855876e2a01241090b13
5
5
  SHA512:
6
- metadata.gz: fe3de1285e2a73893a2f3f73897850743513ce53a089333a03124de2dc8c41da41786e78ca3457b530d946d67cd186e255268df62fb3eb8c34d1b4e995a75e6a
7
- data.tar.gz: d64d8c9d3fbd93982b8474b3c6f92a69260b9ce4558d5155d04ffb23acc84b31568e566d277368b14618fc6d432e8a04fdecbf723cae37221c0b8fed97fd15b9
6
+ metadata.gz: 0d2ad5309b228af19fe38c36c3fc20aca9d9f7c19d39d8b66495cb815f47398a78962d574c5d7f12d2c7978d2d508cb6f181a0fc09857d19467cfe4922700037
7
+ data.tar.gz: ea57c3453d550f4e3e28f7cbbb7f2be39fb843a0f4ce44b6cafb7c832309d62b4902fe9662acf4f5b30090bbe68d965ebc7cf6844c90a0375abbfbef3ef3725d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.520.0 (2025-05-06)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for Amazon EBS Provisioned Rate for Volume Initialization, which lets you specify a volume initialization rate to ensure that your EBS volumes are initialized in a predictable amount of time.
8
+
4
9
  1.519.0 (2025-05-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.519.0
1
+ 1.520.0
@@ -6107,7 +6107,7 @@ module Aws::EC2
6107
6107
  # Indicates whether the client VPN session is disconnected after the
6108
6108
  # maximum timeout specified in `SessionTimeoutHours` is reached. If
6109
6109
  # `true`, users are prompted to reconnect client VPN. If `false`, client
6110
- # VPN attempts to reconnect automatically. The default value is `false`.
6110
+ # VPN attempts to reconnect automatically. The default value is `true`.
6111
6111
  #
6112
6112
  # @return [Types::CreateClientVpnEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6113
6113
  #
@@ -7165,7 +7165,7 @@ module Aws::EC2
7165
7165
  # },
7166
7166
  # },
7167
7167
  # },
7168
- # image_id: "ImageId",
7168
+ # image_id: "String",
7169
7169
  # },
7170
7170
  # ],
7171
7171
  # },
@@ -7796,6 +7796,7 @@ module Aws::EC2
7796
7796
  # throughput: 1,
7797
7797
  # outpost_arn: "String",
7798
7798
  # encrypted: false,
7799
+ # volume_initialization_rate: 1,
7799
7800
  # },
7800
7801
  # no_device: "String",
7801
7802
  # device_name: "String",
@@ -9099,6 +9100,7 @@ module Aws::EC2
9099
9100
  # volume_size: 1,
9100
9101
  # volume_type: "standard", # accepts standard, io1, io2, gp2, sc1, st1, gp3
9101
9102
  # throughput: 1,
9103
+ # volume_initialization_rate: 1,
9102
9104
  # },
9103
9105
  # no_device: "String",
9104
9106
  # },
@@ -9526,6 +9528,7 @@ module Aws::EC2
9526
9528
  # volume_size: 1,
9527
9529
  # volume_type: "standard", # accepts standard, io1, io2, gp2, sc1, st1, gp3
9528
9530
  # throughput: 1,
9531
+ # volume_initialization_rate: 1,
9529
9532
  # },
9530
9533
  # no_device: "String",
9531
9534
  # },
@@ -9775,6 +9778,7 @@ module Aws::EC2
9775
9778
  # resp.launch_template_version.launch_template_data.block_device_mappings[0].ebs.volume_size #=> Integer
9776
9779
  # resp.launch_template_version.launch_template_data.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1", "gp3"
9777
9780
  # resp.launch_template_version.launch_template_data.block_device_mappings[0].ebs.throughput #=> Integer
9781
+ # resp.launch_template_version.launch_template_data.block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
9778
9782
  # resp.launch_template_version.launch_template_data.block_device_mappings[0].no_device #=> String
9779
9783
  # resp.launch_template_version.launch_template_data.network_interfaces #=> Array
9780
9784
  # resp.launch_template_version.launch_template_data.network_interfaces[0].associate_carrier_ip_address #=> Boolean
@@ -11941,6 +11945,37 @@ module Aws::EC2
11941
11945
  # original root volume after the replacement task completes, you must
11942
11946
  # manually delete it when you no longer need it.
11943
11947
  #
11948
+ # @option params [Integer] :volume_initialization_rate
11949
+ # Specifies the Amazon EBS Provisioned Rate for Volume Initialization
11950
+ # (volume initialization rate), in MiB/s, at which to download the
11951
+ # snapshot blocks from Amazon S3 to the replacement root volume. This is
11952
+ # also known as *volume initialization*. Specifying a volume
11953
+ # initialization rate ensures that the volume is initialized at a
11954
+ # predictable and consistent rate after creation.
11955
+ #
11956
+ # Omit this parameter if:
11957
+ #
11958
+ # * You want to create the volume using fast snapshot restore. You must
11959
+ # specify a snapshot that is enabled for fast snapshot restore. In
11960
+ # this case, the volume is fully initialized at creation.
11961
+ #
11962
+ # <note markdown="1"> If you specify a snapshot that is enabled for fast snapshot restore
11963
+ # and a volume initialization rate, the volume will be initialized at
11964
+ # the specified rate instead of fast snapshot restore.
11965
+ #
11966
+ # </note>
11967
+ #
11968
+ # * You want to create a volume that is initialized at the default rate.
11969
+ #
11970
+ # For more information, see [ Initialize Amazon EBS volumes][1] in the
11971
+ # *Amazon EC2 User Guide*.
11972
+ #
11973
+ # Valid range: 100 - 300 MiB/s
11974
+ #
11975
+ #
11976
+ #
11977
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
11978
+ #
11944
11979
  # @return [Types::CreateReplaceRootVolumeTaskResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11945
11980
  #
11946
11981
  # * {Types::CreateReplaceRootVolumeTaskResult#replace_root_volume_task #replace_root_volume_task} => Types::ReplaceRootVolumeTask
@@ -11965,6 +12000,7 @@ module Aws::EC2
11965
12000
  # ],
11966
12001
  # image_id: "ImageId",
11967
12002
  # delete_replaced_root_volume: false,
12003
+ # volume_initialization_rate: 1,
11968
12004
  # })
11969
12005
  #
11970
12006
  # @example Response structure
@@ -15756,6 +15792,38 @@ module Aws::EC2
15756
15792
  #
15757
15793
  # [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
15758
15794
  #
15795
+ # @option params [Integer] :volume_initialization_rate
15796
+ # Specifies the Amazon EBS Provisioned Rate for Volume Initialization
15797
+ # (volume initialization rate), in MiB/s, at which to download the
15798
+ # snapshot blocks from Amazon S3 to the volume. This is also known as
15799
+ # *volume initialization*. Specifying a volume initialization rate
15800
+ # ensures that the volume is initialized at a predictable and consistent
15801
+ # rate after creation.
15802
+ #
15803
+ # This parameter is supported only for volumes created from snapshots.
15804
+ # Omit this parameter if:
15805
+ #
15806
+ # * You want to create the volume using fast snapshot restore. You must
15807
+ # specify a snapshot that is enabled for fast snapshot restore. In
15808
+ # this case, the volume is fully initialized at creation.
15809
+ #
15810
+ # <note markdown="1"> If you specify a snapshot that is enabled for fast snapshot restore
15811
+ # and a volume initialization rate, the volume will be initialized at
15812
+ # the specified rate instead of fast snapshot restore.
15813
+ #
15814
+ # </note>
15815
+ #
15816
+ # * You want to create a volume that is initialized at the default rate.
15817
+ #
15818
+ # For more information, see [ Initialize Amazon EBS volumes][1] in the
15819
+ # *Amazon EC2 User Guide*.
15820
+ #
15821
+ # Valid range: 100 - 300 MiB/s
15822
+ #
15823
+ #
15824
+ #
15825
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
15826
+ #
15759
15827
  # @option params [Types::OperatorRequest] :operator
15760
15828
  # Reserved for internal use.
15761
15829
  #
@@ -15776,6 +15844,7 @@ module Aws::EC2
15776
15844
  # * {Types::Volume#throughput #throughput} => Integer
15777
15845
  # * {Types::Volume#sse_type #sse_type} => String
15778
15846
  # * {Types::Volume#operator #operator} => Types::OperatorResponse
15847
+ # * {Types::Volume#volume_initialization_rate #volume_initialization_rate} => Integer
15779
15848
  # * {Types::Volume#volume_id #volume_id} => String
15780
15849
  # * {Types::Volume#size #size} => Integer
15781
15850
  # * {Types::Volume#snapshot_id #snapshot_id} => String
@@ -15863,6 +15932,7 @@ module Aws::EC2
15863
15932
  # multi_attach_enabled: false,
15864
15933
  # throughput: 1,
15865
15934
  # client_token: "String",
15935
+ # volume_initialization_rate: 1,
15866
15936
  # operator: {
15867
15937
  # principal: "String",
15868
15938
  # },
@@ -15883,6 +15953,7 @@ module Aws::EC2
15883
15953
  # resp.sse_type #=> String, one of "sse-ebs", "sse-kms", "none"
15884
15954
  # resp.operator.managed #=> Boolean
15885
15955
  # resp.operator.principal #=> String
15956
+ # resp.volume_initialization_rate #=> Integer
15886
15957
  # resp.volume_id #=> String
15887
15958
  # resp.size #=> Integer
15888
15959
  # resp.snapshot_id #=> String
@@ -25980,6 +26051,7 @@ module Aws::EC2
25980
26051
  # resp.block_device_mappings[0].ebs.throughput #=> Integer
25981
26052
  # resp.block_device_mappings[0].ebs.outpost_arn #=> String
25982
26053
  # resp.block_device_mappings[0].ebs.encrypted #=> Boolean
26054
+ # resp.block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
25983
26055
  # resp.block_device_mappings[0].no_device #=> String
25984
26056
  # resp.block_device_mappings[0].device_name #=> String
25985
26057
  # resp.block_device_mappings[0].virtual_name #=> String
@@ -26285,6 +26357,7 @@ module Aws::EC2
26285
26357
  # resp.images[0].block_device_mappings[0].ebs.throughput #=> Integer
26286
26358
  # resp.images[0].block_device_mappings[0].ebs.outpost_arn #=> String
26287
26359
  # resp.images[0].block_device_mappings[0].ebs.encrypted #=> Boolean
26360
+ # resp.images[0].block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
26288
26361
  # resp.images[0].block_device_mappings[0].no_device #=> String
26289
26362
  # resp.images[0].block_device_mappings[0].device_name #=> String
26290
26363
  # resp.images[0].block_device_mappings[0].virtual_name #=> String
@@ -29875,6 +29948,7 @@ module Aws::EC2
29875
29948
  # resp.launch_template_versions[0].launch_template_data.block_device_mappings[0].ebs.volume_size #=> Integer
29876
29949
  # resp.launch_template_versions[0].launch_template_data.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1", "gp3"
29877
29950
  # resp.launch_template_versions[0].launch_template_data.block_device_mappings[0].ebs.throughput #=> Integer
29951
+ # resp.launch_template_versions[0].launch_template_data.block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
29878
29952
  # resp.launch_template_versions[0].launch_template_data.block_device_mappings[0].no_device #=> String
29879
29953
  # resp.launch_template_versions[0].launch_template_data.network_interfaces #=> Array
29880
29954
  # resp.launch_template_versions[0].launch_template_data.network_interfaces[0].associate_carrier_ip_address #=> Boolean
@@ -36350,6 +36424,7 @@ module Aws::EC2
36350
36424
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].ebs.throughput #=> Integer
36351
36425
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].ebs.outpost_arn #=> String
36352
36426
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].ebs.encrypted #=> Boolean
36427
+ # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
36353
36428
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].no_device #=> String
36354
36429
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].device_name #=> String
36355
36430
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].virtual_name #=> String
@@ -36812,6 +36887,7 @@ module Aws::EC2
36812
36887
  # resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.throughput #=> Integer
36813
36888
  # resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.outpost_arn #=> String
36814
36889
  # resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.encrypted #=> Boolean
36890
+ # resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
36815
36891
  # resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].no_device #=> String
36816
36892
  # resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].device_name #=> String
36817
36893
  # resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].virtual_name #=> String
@@ -39898,6 +39974,7 @@ module Aws::EC2
39898
39974
  # resp.volumes[0].sse_type #=> String, one of "sse-ebs", "sse-kms", "none"
39899
39975
  # resp.volumes[0].operator.managed #=> Boolean
39900
39976
  # resp.volumes[0].operator.principal #=> String
39977
+ # resp.volumes[0].volume_initialization_rate #=> Integer
39901
39978
  # resp.volumes[0].volume_id #=> String
39902
39979
  # resp.volumes[0].size #=> Integer
39903
39980
  # resp.volumes[0].snapshot_id #=> String
@@ -47210,6 +47287,7 @@ module Aws::EC2
47210
47287
  # resp.launch_template_data.block_device_mappings[0].ebs.volume_size #=> Integer
47211
47288
  # resp.launch_template_data.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1", "gp3"
47212
47289
  # resp.launch_template_data.block_device_mappings[0].ebs.throughput #=> Integer
47290
+ # resp.launch_template_data.block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
47213
47291
  # resp.launch_template_data.block_device_mappings[0].no_device #=> String
47214
47292
  # resp.launch_template_data.network_interfaces #=> Array
47215
47293
  # resp.launch_template_data.network_interfaces[0].associate_carrier_ip_address #=> Boolean
@@ -50986,7 +51064,7 @@ module Aws::EC2
50986
51064
  # Indicates whether the client VPN session is disconnected after the
50987
51065
  # maximum timeout specified in `sessionTimeoutHours` is reached. If
50988
51066
  # `true`, users are prompted to reconnect client VPN. If `false`, client
50989
- # VPN attempts to reconnect automatically. The default value is `false`.
51067
+ # VPN attempts to reconnect automatically. The default value is `true`.
50990
51068
  #
50991
51069
  # @return [Types::ModifyClientVpnEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
50992
51070
  #
@@ -51351,7 +51429,7 @@ module Aws::EC2
51351
51429
  # },
51352
51430
  # },
51353
51431
  # },
51354
- # image_id: "ImageId",
51432
+ # image_id: "String",
51355
51433
  # },
51356
51434
  # ],
51357
51435
  # },
@@ -58584,6 +58662,7 @@ module Aws::EC2
58584
58662
  # throughput: 1,
58585
58663
  # outpost_arn: "String",
58586
58664
  # encrypted: false,
58665
+ # volume_initialization_rate: 1,
58587
58666
  # },
58588
58667
  # no_device: "String",
58589
58668
  # device_name: "String",
@@ -60107,6 +60186,7 @@ module Aws::EC2
60107
60186
  # throughput: 1,
60108
60187
  # outpost_arn: "String",
60109
60188
  # encrypted: false,
60189
+ # volume_initialization_rate: 1,
60110
60190
  # },
60111
60191
  # no_device: "String",
60112
60192
  # device_name: "String",
@@ -60603,6 +60683,7 @@ module Aws::EC2
60603
60683
  # throughput: 1,
60604
60684
  # outpost_arn: "String",
60605
60685
  # encrypted: false,
60686
+ # volume_initialization_rate: 1,
60606
60687
  # },
60607
60688
  # no_device: "String",
60608
60689
  # device_name: "String",
@@ -60730,6 +60811,7 @@ module Aws::EC2
60730
60811
  # resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.throughput #=> Integer
60731
60812
  # resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.outpost_arn #=> String
60732
60813
  # resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.encrypted #=> Boolean
60814
+ # resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
60733
60815
  # resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].no_device #=> String
60734
60816
  # resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].device_name #=> String
60735
60817
  # resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].virtual_name #=> String
@@ -62304,6 +62386,7 @@ module Aws::EC2
62304
62386
  # throughput: 1,
62305
62387
  # outpost_arn: "String",
62306
62388
  # encrypted: false,
62389
+ # volume_initialization_rate: 1,
62307
62390
  # },
62308
62391
  # no_device: "String",
62309
62392
  # device_name: "String",
@@ -65265,7 +65348,7 @@ module Aws::EC2
65265
65348
  tracer: tracer
65266
65349
  )
65267
65350
  context[:gem_name] = 'aws-sdk-ec2'
65268
- context[:gem_version] = '1.519.0'
65351
+ context[:gem_version] = '1.520.0'
65269
65352
  Seahorse::Client::Request.new(handlers, context)
65270
65353
  end
65271
65354
 
@@ -5578,6 +5578,7 @@ module Aws::EC2
5578
5578
  CreateReplaceRootVolumeTaskRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
5579
5579
  CreateReplaceRootVolumeTaskRequest.add_member(:image_id, Shapes::ShapeRef.new(shape: ImageId, location_name: "ImageId"))
5580
5580
  CreateReplaceRootVolumeTaskRequest.add_member(:delete_replaced_root_volume, Shapes::ShapeRef.new(shape: Boolean, location_name: "DeleteReplacedRootVolume"))
5581
+ CreateReplaceRootVolumeTaskRequest.add_member(:volume_initialization_rate, Shapes::ShapeRef.new(shape: Long, location_name: "VolumeInitializationRate"))
5581
5582
  CreateReplaceRootVolumeTaskRequest.struct_class = Types::CreateReplaceRootVolumeTaskRequest
5582
5583
 
5583
5584
  CreateReplaceRootVolumeTaskResult.add_member(:replace_root_volume_task, Shapes::ShapeRef.new(shape: ReplaceRootVolumeTask, location_name: "replaceRootVolumeTask"))
@@ -6073,6 +6074,7 @@ module Aws::EC2
6073
6074
  CreateVolumeRequest.add_member(:multi_attach_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "MultiAttachEnabled"))
6074
6075
  CreateVolumeRequest.add_member(:throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "Throughput"))
6075
6076
  CreateVolumeRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
6077
+ CreateVolumeRequest.add_member(:volume_initialization_rate, Shapes::ShapeRef.new(shape: Integer, location_name: "VolumeInitializationRate"))
6076
6078
  CreateVolumeRequest.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorRequest, location_name: "Operator"))
6077
6079
  CreateVolumeRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
6078
6080
  CreateVolumeRequest.struct_class = Types::CreateVolumeRequest
@@ -9167,6 +9169,7 @@ module Aws::EC2
9167
9169
  EbsBlockDevice.add_member(:throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "throughput"))
9168
9170
  EbsBlockDevice.add_member(:outpost_arn, Shapes::ShapeRef.new(shape: String, location_name: "outpostArn"))
9169
9171
  EbsBlockDevice.add_member(:encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "encrypted"))
9172
+ EbsBlockDevice.add_member(:volume_initialization_rate, Shapes::ShapeRef.new(shape: Integer, location_name: "VolumeInitializationRate"))
9170
9173
  EbsBlockDevice.struct_class = Types::EbsBlockDevice
9171
9174
 
9172
9175
  EbsBlockDeviceResponse.add_member(:encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "encrypted"))
@@ -9841,7 +9844,7 @@ module Aws::EC2
9841
9844
  FleetLaunchTemplateOverridesRequest.add_member(:placement, Shapes::ShapeRef.new(shape: Placement, location_name: "Placement"))
9842
9845
  FleetLaunchTemplateOverridesRequest.add_member(:block_device_mappings, Shapes::ShapeRef.new(shape: FleetBlockDeviceMappingRequestList, location_name: "BlockDeviceMapping"))
9843
9846
  FleetLaunchTemplateOverridesRequest.add_member(:instance_requirements, Shapes::ShapeRef.new(shape: InstanceRequirementsRequest, location_name: "InstanceRequirements"))
9844
- FleetLaunchTemplateOverridesRequest.add_member(:image_id, Shapes::ShapeRef.new(shape: ImageId, location_name: "ImageId"))
9847
+ FleetLaunchTemplateOverridesRequest.add_member(:image_id, Shapes::ShapeRef.new(shape: String, location_name: "ImageId"))
9845
9848
  FleetLaunchTemplateOverridesRequest.struct_class = Types::FleetLaunchTemplateOverridesRequest
9846
9849
 
9847
9850
  FleetLaunchTemplateSpecification.add_member(:launch_template_id, Shapes::ShapeRef.new(shape: String, location_name: "launchTemplateId"))
@@ -11992,6 +11995,7 @@ module Aws::EC2
11992
11995
  LaunchTemplateEbsBlockDevice.add_member(:volume_size, Shapes::ShapeRef.new(shape: Integer, location_name: "volumeSize"))
11993
11996
  LaunchTemplateEbsBlockDevice.add_member(:volume_type, Shapes::ShapeRef.new(shape: VolumeType, location_name: "volumeType"))
11994
11997
  LaunchTemplateEbsBlockDevice.add_member(:throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "throughput"))
11998
+ LaunchTemplateEbsBlockDevice.add_member(:volume_initialization_rate, Shapes::ShapeRef.new(shape: Integer, location_name: "volumeInitializationRate"))
11995
11999
  LaunchTemplateEbsBlockDevice.struct_class = Types::LaunchTemplateEbsBlockDevice
11996
12000
 
11997
12001
  LaunchTemplateEbsBlockDeviceRequest.add_member(:encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "Encrypted"))
@@ -12002,6 +12006,7 @@ module Aws::EC2
12002
12006
  LaunchTemplateEbsBlockDeviceRequest.add_member(:volume_size, Shapes::ShapeRef.new(shape: Integer, location_name: "VolumeSize"))
12003
12007
  LaunchTemplateEbsBlockDeviceRequest.add_member(:volume_type, Shapes::ShapeRef.new(shape: VolumeType, location_name: "VolumeType"))
12004
12008
  LaunchTemplateEbsBlockDeviceRequest.add_member(:throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "Throughput"))
12009
+ LaunchTemplateEbsBlockDeviceRequest.add_member(:volume_initialization_rate, Shapes::ShapeRef.new(shape: Integer, location_name: "VolumeInitializationRate"))
12005
12010
  LaunchTemplateEbsBlockDeviceRequest.struct_class = Types::LaunchTemplateEbsBlockDeviceRequest
12006
12011
 
12007
12012
  LaunchTemplateElasticInferenceAccelerator.add_member(:type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Type"))
@@ -16931,6 +16936,7 @@ module Aws::EC2
16931
16936
  Volume.add_member(:throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "throughput"))
16932
16937
  Volume.add_member(:sse_type, Shapes::ShapeRef.new(shape: SSEType, location_name: "sseType"))
16933
16938
  Volume.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorResponse, location_name: "operator"))
16939
+ Volume.add_member(:volume_initialization_rate, Shapes::ShapeRef.new(shape: Integer, location_name: "volumeInitializationRate"))
16934
16940
  Volume.add_member(:volume_id, Shapes::ShapeRef.new(shape: String, location_name: "volumeId"))
16935
16941
  Volume.add_member(:size, Shapes::ShapeRef.new(shape: Integer, location_name: "size"))
16936
16942
  Volume.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: String, location_name: "snapshotId"))
@@ -794,6 +794,7 @@ module Aws::EC2
794
794
  # throughput: 1,
795
795
  # outpost_arn: "String",
796
796
  # encrypted: false,
797
+ # volume_initialization_rate: 1,
797
798
  # },
798
799
  # no_device: "String",
799
800
  # device_name: "String",
@@ -94,6 +94,7 @@ module Aws::EC2
94
94
  # throughput: 1,
95
95
  # outpost_arn: "String",
96
96
  # encrypted: false,
97
+ # volume_initialization_rate: 1,
97
98
  # },
98
99
  # no_device: "String",
99
100
  # device_name: "String",
@@ -1471,6 +1472,7 @@ module Aws::EC2
1471
1472
  # multi_attach_enabled: false,
1472
1473
  # throughput: 1,
1473
1474
  # client_token: "String",
1475
+ # volume_initialization_rate: 1,
1474
1476
  # operator: {
1475
1477
  # principal: "String",
1476
1478
  # },
@@ -1622,6 +1624,37 @@ module Aws::EC2
1622
1624
  #
1623
1625
  #
1624
1626
  # [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
1627
+ # @option options [Integer] :volume_initialization_rate
1628
+ # Specifies the Amazon EBS Provisioned Rate for Volume Initialization
1629
+ # (volume initialization rate), in MiB/s, at which to download the
1630
+ # snapshot blocks from Amazon S3 to the volume. This is also known as
1631
+ # *volume initialization*. Specifying a volume initialization rate
1632
+ # ensures that the volume is initialized at a predictable and consistent
1633
+ # rate after creation.
1634
+ #
1635
+ # This parameter is supported only for volumes created from snapshots.
1636
+ # Omit this parameter if:
1637
+ #
1638
+ # * You want to create the volume using fast snapshot restore. You must
1639
+ # specify a snapshot that is enabled for fast snapshot restore. In
1640
+ # this case, the volume is fully initialized at creation.
1641
+ #
1642
+ # <note markdown="1"> If you specify a snapshot that is enabled for fast snapshot restore
1643
+ # and a volume initialization rate, the volume will be initialized at
1644
+ # the specified rate instead of fast snapshot restore.
1645
+ #
1646
+ # </note>
1647
+ #
1648
+ # * You want to create a volume that is initialized at the default rate.
1649
+ #
1650
+ # For more information, see [ Initialize Amazon EBS volumes][1] in the
1651
+ # *Amazon EC2 User Guide*.
1652
+ #
1653
+ # Valid range: 100 - 300 MiB/s
1654
+ #
1655
+ #
1656
+ #
1657
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
1625
1658
  # @option options [Types::OperatorRequest] :operator
1626
1659
  # Reserved for internal use.
1627
1660
  # @option options [Boolean] :dry_run
@@ -1918,6 +1951,7 @@ module Aws::EC2
1918
1951
  # throughput: 1,
1919
1952
  # outpost_arn: "String",
1920
1953
  # encrypted: false,
1954
+ # volume_initialization_rate: 1,
1921
1955
  # },
1922
1956
  # no_device: "String",
1923
1957
  # device_name: "String",
@@ -336,6 +336,7 @@ module Aws::EC2
336
336
  # throughput: 1,
337
337
  # outpost_arn: "String",
338
338
  # encrypted: false,
339
+ # volume_initialization_rate: 1,
339
340
  # },
340
341
  # no_device: "String",
341
342
  # device_name: "String",
@@ -6470,7 +6470,7 @@ module Aws::EC2
6470
6470
  # Indicates whether the client VPN session is disconnected after the
6471
6471
  # maximum `sessionTimeoutHours` is reached. If `true`, users are
6472
6472
  # prompted to reconnect client VPN. If `false`, client VPN attempts to
6473
- # reconnect automatically. The default value is `false`.
6473
+ # reconnect automatically. The default value is `true`.
6474
6474
  # @return [Boolean]
6475
6475
  #
6476
6476
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ClientVpnEndpoint AWS API Documentation
@@ -8335,7 +8335,7 @@ module Aws::EC2
8335
8335
  # maximum timeout specified in `SessionTimeoutHours` is reached. If
8336
8336
  # `true`, users are prompted to reconnect client VPN. If `false`,
8337
8337
  # client VPN attempts to reconnect automatically. The default value is
8338
- # `false`.
8338
+ # `true`.
8339
8339
  # @return [Boolean]
8340
8340
  #
8341
8341
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateClientVpnEndpointRequest AWS API Documentation
@@ -11508,6 +11508,40 @@ module Aws::EC2
11508
11508
  # manually delete it when you no longer need it.
11509
11509
  # @return [Boolean]
11510
11510
  #
11511
+ # @!attribute [rw] volume_initialization_rate
11512
+ # Specifies the Amazon EBS Provisioned Rate for Volume Initialization
11513
+ # (volume initialization rate), in MiB/s, at which to download the
11514
+ # snapshot blocks from Amazon S3 to the replacement root volume. This
11515
+ # is also known as *volume initialization*. Specifying a volume
11516
+ # initialization rate ensures that the volume is initialized at a
11517
+ # predictable and consistent rate after creation.
11518
+ #
11519
+ # Omit this parameter if:
11520
+ #
11521
+ # * You want to create the volume using fast snapshot restore. You
11522
+ # must specify a snapshot that is enabled for fast snapshot restore.
11523
+ # In this case, the volume is fully initialized at creation.
11524
+ #
11525
+ # <note markdown="1"> If you specify a snapshot that is enabled for fast snapshot
11526
+ # restore and a volume initialization rate, the volume will be
11527
+ # initialized at the specified rate instead of fast snapshot
11528
+ # restore.
11529
+ #
11530
+ # </note>
11531
+ #
11532
+ # * You want to create a volume that is initialized at the default
11533
+ # rate.
11534
+ #
11535
+ # For more information, see [ Initialize Amazon EBS volumes][1] in the
11536
+ # *Amazon EC2 User Guide*.
11537
+ #
11538
+ # Valid range: 100 - 300 MiB/s
11539
+ #
11540
+ #
11541
+ #
11542
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
11543
+ # @return [Integer]
11544
+ #
11511
11545
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateReplaceRootVolumeTaskRequest AWS API Documentation
11512
11546
  #
11513
11547
  class CreateReplaceRootVolumeTaskRequest < Struct.new(
@@ -11517,7 +11551,8 @@ module Aws::EC2
11517
11551
  :dry_run,
11518
11552
  :tag_specifications,
11519
11553
  :image_id,
11520
- :delete_replaced_root_volume)
11554
+ :delete_replaced_root_volume,
11555
+ :volume_initialization_rate)
11521
11556
  SENSITIVE = []
11522
11557
  include Aws::Structure
11523
11558
  end
@@ -14342,6 +14377,41 @@ module Aws::EC2
14342
14377
  # [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
14343
14378
  # @return [String]
14344
14379
  #
14380
+ # @!attribute [rw] volume_initialization_rate
14381
+ # Specifies the Amazon EBS Provisioned Rate for Volume Initialization
14382
+ # (volume initialization rate), in MiB/s, at which to download the
14383
+ # snapshot blocks from Amazon S3 to the volume. This is also known as
14384
+ # *volume initialization*. Specifying a volume initialization rate
14385
+ # ensures that the volume is initialized at a predictable and
14386
+ # consistent rate after creation.
14387
+ #
14388
+ # This parameter is supported only for volumes created from snapshots.
14389
+ # Omit this parameter if:
14390
+ #
14391
+ # * You want to create the volume using fast snapshot restore. You
14392
+ # must specify a snapshot that is enabled for fast snapshot restore.
14393
+ # In this case, the volume is fully initialized at creation.
14394
+ #
14395
+ # <note markdown="1"> If you specify a snapshot that is enabled for fast snapshot
14396
+ # restore and a volume initialization rate, the volume will be
14397
+ # initialized at the specified rate instead of fast snapshot
14398
+ # restore.
14399
+ #
14400
+ # </note>
14401
+ #
14402
+ # * You want to create a volume that is initialized at the default
14403
+ # rate.
14404
+ #
14405
+ # For more information, see [ Initialize Amazon EBS volumes][1] in the
14406
+ # *Amazon EC2 User Guide*.
14407
+ #
14408
+ # Valid range: 100 - 300 MiB/s
14409
+ #
14410
+ #
14411
+ #
14412
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
14413
+ # @return [Integer]
14414
+ #
14345
14415
  # @!attribute [rw] operator
14346
14416
  # Reserved for internal use.
14347
14417
  # @return [Types::OperatorRequest]
@@ -14368,6 +14438,7 @@ module Aws::EC2
14368
14438
  :multi_attach_enabled,
14369
14439
  :throughput,
14370
14440
  :client_token,
14441
+ :volume_initialization_rate,
14371
14442
  :operator,
14372
14443
  :dry_run)
14373
14444
  SENSITIVE = []
@@ -33703,6 +33774,44 @@ module Aws::EC2
33703
33774
  # [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption-requirements.html#ebs-encryption_supported_instances
33704
33775
  # @return [Boolean]
33705
33776
  #
33777
+ # @!attribute [rw] volume_initialization_rate
33778
+ # Specifies the Amazon EBS Provisioned Rate for Volume Initialization
33779
+ # (volume initialization rate), in MiB/s, at which to download the
33780
+ # snapshot blocks from Amazon S3 to the volume. This is also known as
33781
+ # *volume initialization*. Specifying a volume initialization rate
33782
+ # ensures that the volume is initialized at a predictable and
33783
+ # consistent rate after creation.
33784
+ #
33785
+ # This parameter is supported only for volumes created from snapshots.
33786
+ # Omit this parameter if:
33787
+ #
33788
+ # * You want to create the volume using fast snapshot restore. You
33789
+ # must specify a snapshot that is enabled for fast snapshot restore.
33790
+ # In this case, the volume is fully initialized at creation.
33791
+ #
33792
+ # <note markdown="1"> If you specify a snapshot that is enabled for fast snapshot
33793
+ # restore and a volume initialization rate, the volume will be
33794
+ # initialized at the specified rate instead of fast snapshot
33795
+ # restore.
33796
+ #
33797
+ # </note>
33798
+ #
33799
+ # * You want to create a volume that is initialized at the default
33800
+ # rate.
33801
+ #
33802
+ # For more information, see [ Initialize Amazon EBS volumes][1] in the
33803
+ # *Amazon EC2 User Guide*.
33804
+ #
33805
+ # This parameter is not supported when using [CreateImage][2].
33806
+ #
33807
+ # Valid range: 100 - 300 MiB/s
33808
+ #
33809
+ #
33810
+ #
33811
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
33812
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateImage.html
33813
+ # @return [Integer]
33814
+ #
33706
33815
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsBlockDevice AWS API Documentation
33707
33816
  #
33708
33817
  class EbsBlockDevice < Struct.new(
@@ -33714,7 +33823,8 @@ module Aws::EC2
33714
33823
  :kms_key_id,
33715
33824
  :throughput,
33716
33825
  :outpost_arn,
33717
- :encrypted)
33826
+ :encrypted,
33827
+ :volume_initialization_rate)
33718
33828
  SENSITIVE = []
33719
33829
  include Aws::Structure
33720
33830
  end
@@ -49361,6 +49471,12 @@ module Aws::EC2
49361
49471
  # The throughput that the volume supports, in MiB/s.
49362
49472
  # @return [Integer]
49363
49473
  #
49474
+ # @!attribute [rw] volume_initialization_rate
49475
+ # The Amazon EBS Provisioned Rate for Volume Initialization (volume
49476
+ # initialization rate) specified for the volume, in MiB/s. If no
49477
+ # volume initialization rate was specified, the value is `null`.
49478
+ # @return [Integer]
49479
+ #
49364
49480
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateEbsBlockDevice AWS API Documentation
49365
49481
  #
49366
49482
  class LaunchTemplateEbsBlockDevice < Struct.new(
@@ -49371,7 +49487,8 @@ module Aws::EC2
49371
49487
  :snapshot_id,
49372
49488
  :volume_size,
49373
49489
  :volume_type,
49374
- :throughput)
49490
+ :throughput,
49491
+ :volume_initialization_rate)
49375
49492
  SENSITIVE = []
49376
49493
  include Aws::Structure
49377
49494
  end
@@ -49457,6 +49574,41 @@ module Aws::EC2
49457
49574
  # Valid Range: Minimum value of 125. Maximum value of 1000.
49458
49575
  # @return [Integer]
49459
49576
  #
49577
+ # @!attribute [rw] volume_initialization_rate
49578
+ # Specifies the Amazon EBS Provisioned Rate for Volume Initialization
49579
+ # (volume initialization rate), in MiB/s, at which to download the
49580
+ # snapshot blocks from Amazon S3 to the volume. This is also known as
49581
+ # *volume initialization*. Specifying a volume initialization rate
49582
+ # ensures that the volume is initialized at a predictable and
49583
+ # consistent rate after creation.
49584
+ #
49585
+ # This parameter is supported only for volumes created from snapshots.
49586
+ # Omit this parameter if:
49587
+ #
49588
+ # * You want to create the volume using fast snapshot restore. You
49589
+ # must specify a snapshot that is enabled for fast snapshot restore.
49590
+ # In this case, the volume is fully initialized at creation.
49591
+ #
49592
+ # <note markdown="1"> If you specify a snapshot that is enabled for fast snapshot
49593
+ # restore and a volume initialization rate, the volume will be
49594
+ # initialized at the specified rate instead of fast snapshot
49595
+ # restore.
49596
+ #
49597
+ # </note>
49598
+ #
49599
+ # * You want to create a volume that is initialized at the default
49600
+ # rate.
49601
+ #
49602
+ # For more information, see [ Initialize Amazon EBS volumes][1] in the
49603
+ # *Amazon EC2 User Guide*.
49604
+ #
49605
+ # Valid range: 100 - 300 MiB/s
49606
+ #
49607
+ #
49608
+ #
49609
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
49610
+ # @return [Integer]
49611
+ #
49460
49612
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateEbsBlockDeviceRequest AWS API Documentation
49461
49613
  #
49462
49614
  class LaunchTemplateEbsBlockDeviceRequest < Struct.new(
@@ -49467,7 +49619,8 @@ module Aws::EC2
49467
49619
  :snapshot_id,
49468
49620
  :volume_size,
49469
49621
  :volume_type,
49470
- :throughput)
49622
+ :throughput,
49623
+ :volume_initialization_rate)
49471
49624
  SENSITIVE = []
49472
49625
  include Aws::Structure
49473
49626
  end
@@ -52422,7 +52575,7 @@ module Aws::EC2
52422
52575
  # maximum timeout specified in `sessionTimeoutHours` is reached. If
52423
52576
  # `true`, users are prompted to reconnect client VPN. If `false`,
52424
52577
  # client VPN attempts to reconnect automatically. The default value is
52425
- # `false`.
52578
+ # `true`.
52426
52579
  # @return [Boolean]
52427
52580
  #
52428
52581
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyClientVpnEndpointRequest AWS API Documentation
@@ -75092,6 +75245,13 @@ module Aws::EC2
75092
75245
  # The service provider that manages the volume.
75093
75246
  # @return [Types::OperatorResponse]
75094
75247
  #
75248
+ # @!attribute [rw] volume_initialization_rate
75249
+ # The Amazon EBS Provisioned Rate for Volume Initialization (volume
75250
+ # initialization rate) specified for the volume during creation, in
75251
+ # MiB/s. If no volume initialization rate was specified, the value is
75252
+ # `null`.
75253
+ # @return [Integer]
75254
+ #
75095
75255
  # @!attribute [rw] volume_id
75096
75256
  # The ID of the volume.
75097
75257
  # @return [String]
@@ -75145,6 +75305,7 @@ module Aws::EC2
75145
75305
  :throughput,
75146
75306
  :sse_type,
75147
75307
  :operator,
75308
+ :volume_initialization_rate,
75148
75309
  :volume_id,
75149
75310
  :size,
75150
75311
  :snapshot_id,
@@ -101,6 +101,15 @@ module Aws::EC2
101
101
  data[:operator]
102
102
  end
103
103
 
104
+ # The Amazon EBS Provisioned Rate for Volume Initialization (volume
105
+ # initialization rate) specified for the volume during creation, in
106
+ # MiB/s. If no volume initialization rate was specified, the value is
107
+ # `null`.
108
+ # @return [Integer]
109
+ def volume_initialization_rate
110
+ data[:volume_initialization_rate]
111
+ end
112
+
104
113
  # The size of the volume, in GiBs.
105
114
  # @return [Integer]
106
115
  def size
data/lib/aws-sdk-ec2.rb CHANGED
@@ -78,7 +78,7 @@ module Aws::EC2
78
78
  autoload :VpcPeeringConnection, 'aws-sdk-ec2/vpc_peering_connection'
79
79
  autoload :VpcAddress, 'aws-sdk-ec2/vpc_address'
80
80
 
81
- GEM_VERSION = '1.519.0'
81
+ GEM_VERSION = '1.520.0'
82
82
 
83
83
  end
84
84
 
data/sig/client.rbs CHANGED
@@ -1708,7 +1708,8 @@ module Aws
1708
1708
  kms_key_id: ::String?,
1709
1709
  throughput: ::Integer?,
1710
1710
  outpost_arn: ::String?,
1711
- encrypted: bool?
1711
+ encrypted: bool?,
1712
+ volume_initialization_rate: ::Integer?
1712
1713
  }?,
1713
1714
  no_device: ::String?,
1714
1715
  device_name: ::String?,
@@ -2035,7 +2036,8 @@ module Aws
2035
2036
  snapshot_id: ::String?,
2036
2037
  volume_size: ::Integer?,
2037
2038
  volume_type: ("standard" | "io1" | "io2" | "gp2" | "sc1" | "st1" | "gp3")?,
2038
- throughput: ::Integer?
2039
+ throughput: ::Integer?,
2040
+ volume_initialization_rate: ::Integer?
2039
2041
  }?,
2040
2042
  no_device: ::String?
2041
2043
  },
@@ -2307,7 +2309,8 @@ module Aws
2307
2309
  snapshot_id: ::String?,
2308
2310
  volume_size: ::Integer?,
2309
2311
  volume_type: ("standard" | "io1" | "io2" | "gp2" | "sc1" | "st1" | "gp3")?,
2310
- throughput: ::Integer?
2312
+ throughput: ::Integer?,
2313
+ volume_initialization_rate: ::Integer?
2311
2314
  }?,
2312
2315
  no_device: ::String?
2313
2316
  },
@@ -3081,7 +3084,8 @@ module Aws
3081
3084
  },
3082
3085
  ],
3083
3086
  ?image_id: ::String,
3084
- ?delete_replaced_root_volume: bool
3087
+ ?delete_replaced_root_volume: bool,
3088
+ ?volume_initialization_rate: ::Integer
3085
3089
  ) -> _CreateReplaceRootVolumeTaskResponseSuccess
3086
3090
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReplaceRootVolumeTaskResponseSuccess
3087
3091
 
@@ -4040,6 +4044,7 @@ module Aws
4040
4044
  def throughput: () -> ::Integer
4041
4045
  def sse_type: () -> ("sse-ebs" | "sse-kms" | "none")
4042
4046
  def operator: () -> Types::OperatorResponse
4047
+ def volume_initialization_rate: () -> ::Integer
4043
4048
  def volume_id: () -> ::String
4044
4049
  def size: () -> ::Integer
4045
4050
  def snapshot_id: () -> ::String
@@ -4074,6 +4079,7 @@ module Aws
4074
4079
  ?multi_attach_enabled: bool,
4075
4080
  ?throughput: ::Integer,
4076
4081
  ?client_token: ::String,
4082
+ ?volume_initialization_rate: ::Integer,
4077
4083
  ?operator: {
4078
4084
  principal: ::String?
4079
4085
  },
@@ -12488,7 +12494,8 @@ module Aws
12488
12494
  kms_key_id: ::String?,
12489
12495
  throughput: ::Integer?,
12490
12496
  outpost_arn: ::String?,
12491
- encrypted: bool?
12497
+ encrypted: bool?,
12498
+ volume_initialization_rate: ::Integer?
12492
12499
  }?,
12493
12500
  no_device: ::String?,
12494
12501
  device_name: ::String?,
@@ -12814,7 +12821,8 @@ module Aws
12814
12821
  kms_key_id: ::String?,
12815
12822
  throughput: ::Integer?,
12816
12823
  outpost_arn: ::String?,
12817
- encrypted: bool?
12824
+ encrypted: bool?,
12825
+ volume_initialization_rate: ::Integer?
12818
12826
  }?,
12819
12827
  no_device: ::String?,
12820
12828
  device_name: ::String?,
@@ -13124,7 +13132,8 @@ module Aws
13124
13132
  kms_key_id: ::String?,
13125
13133
  throughput: ::Integer?,
13126
13134
  outpost_arn: ::String?,
13127
- encrypted: bool?
13135
+ encrypted: bool?,
13136
+ volume_initialization_rate: ::Integer?
13128
13137
  }?,
13129
13138
  no_device: ::String?,
13130
13139
  device_name: ::String?,
@@ -13517,7 +13526,8 @@ module Aws
13517
13526
  kms_key_id: ::String?,
13518
13527
  throughput: ::Integer?,
13519
13528
  outpost_arn: ::String?,
13520
- encrypted: bool?
13529
+ encrypted: bool?,
13530
+ volume_initialization_rate: ::Integer?
13521
13531
  }?,
13522
13532
  no_device: ::String?,
13523
13533
  device_name: ::String?,
data/sig/instance.rbs CHANGED
@@ -272,7 +272,8 @@ module Aws
272
272
  kms_key_id: ::String?,
273
273
  throughput: ::Integer?,
274
274
  outpost_arn: ::String?,
275
- encrypted: bool?
275
+ encrypted: bool?,
276
+ volume_initialization_rate: ::Integer?
276
277
  }?,
277
278
  no_device: ::String?,
278
279
  device_name: ::String?,
data/sig/resource.rbs CHANGED
@@ -115,7 +115,8 @@ module Aws
115
115
  kms_key_id: ::String?,
116
116
  throughput: ::Integer?,
117
117
  outpost_arn: ::String?,
118
- encrypted: bool?
118
+ encrypted: bool?,
119
+ volume_initialization_rate: ::Integer?
119
120
  }?,
120
121
  no_device: ::String?,
121
122
  device_name: ::String?,
@@ -605,6 +606,7 @@ module Aws
605
606
  ?multi_attach_enabled: bool,
606
607
  ?throughput: ::Integer,
607
608
  ?client_token: ::String,
609
+ ?volume_initialization_rate: ::Integer,
608
610
  ?operator: {
609
611
  principal: ::String?
610
612
  },
@@ -723,7 +725,8 @@ module Aws
723
725
  kms_key_id: ::String?,
724
726
  throughput: ::Integer?,
725
727
  outpost_arn: ::String?,
726
- encrypted: bool?
728
+ encrypted: bool?,
729
+ volume_initialization_rate: ::Integer?
727
730
  }?,
728
731
  no_device: ::String?,
729
732
  device_name: ::String?,
data/sig/subnet.rbs CHANGED
@@ -107,7 +107,8 @@ module Aws
107
107
  kms_key_id: ::String?,
108
108
  throughput: ::Integer?,
109
109
  outpost_arn: ::String?,
110
- encrypted: bool?
110
+ encrypted: bool?,
111
+ volume_initialization_rate: ::Integer?
111
112
  }?,
112
113
  no_device: ::String?,
113
114
  device_name: ::String?,
data/sig/types.rbs CHANGED
@@ -2536,6 +2536,7 @@ module Aws::EC2
2536
2536
  attr_accessor tag_specifications: ::Array[Types::TagSpecification]
2537
2537
  attr_accessor image_id: ::String
2538
2538
  attr_accessor delete_replaced_root_volume: bool
2539
+ attr_accessor volume_initialization_rate: ::Integer
2539
2540
  SENSITIVE: []
2540
2541
  end
2541
2542
 
@@ -3189,6 +3190,7 @@ module Aws::EC2
3189
3190
  attr_accessor multi_attach_enabled: bool
3190
3191
  attr_accessor throughput: ::Integer
3191
3192
  attr_accessor client_token: ::String
3193
+ attr_accessor volume_initialization_rate: ::Integer
3192
3194
  attr_accessor operator: Types::OperatorRequest
3193
3195
  attr_accessor dry_run: bool
3194
3196
  SENSITIVE: []
@@ -7466,6 +7468,7 @@ module Aws::EC2
7466
7468
  attr_accessor throughput: ::Integer
7467
7469
  attr_accessor outpost_arn: ::String
7468
7470
  attr_accessor encrypted: bool
7471
+ attr_accessor volume_initialization_rate: ::Integer
7469
7472
  SENSITIVE: []
7470
7473
  end
7471
7474
 
@@ -10735,6 +10738,7 @@ module Aws::EC2
10735
10738
  attr_accessor volume_size: ::Integer
10736
10739
  attr_accessor volume_type: ("standard" | "io1" | "io2" | "gp2" | "sc1" | "st1" | "gp3")
10737
10740
  attr_accessor throughput: ::Integer
10741
+ attr_accessor volume_initialization_rate: ::Integer
10738
10742
  SENSITIVE: []
10739
10743
  end
10740
10744
 
@@ -10747,6 +10751,7 @@ module Aws::EC2
10747
10751
  attr_accessor volume_size: ::Integer
10748
10752
  attr_accessor volume_type: ("standard" | "io1" | "io2" | "gp2" | "sc1" | "st1" | "gp3")
10749
10753
  attr_accessor throughput: ::Integer
10754
+ attr_accessor volume_initialization_rate: ::Integer
10750
10755
  SENSITIVE: []
10751
10756
  end
10752
10757
 
@@ -16376,6 +16381,7 @@ module Aws::EC2
16376
16381
  attr_accessor throughput: ::Integer
16377
16382
  attr_accessor sse_type: ("sse-ebs" | "sse-kms" | "none")
16378
16383
  attr_accessor operator: Types::OperatorResponse
16384
+ attr_accessor volume_initialization_rate: ::Integer
16379
16385
  attr_accessor volume_id: ::String
16380
16386
  attr_accessor size: ::Integer
16381
16387
  attr_accessor snapshot_id: ::String
data/sig/volume.rbs CHANGED
@@ -45,6 +45,9 @@ module Aws
45
45
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Volume.html#operator-instance_method
46
46
  def operator: () -> Types::OperatorResponse
47
47
 
48
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Volume.html#volume_initialization_rate-instance_method
49
+ def volume_initialization_rate: () -> ::Integer
50
+
48
51
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Volume.html#size-instance_method
49
52
  def size: () -> ::Integer
50
53
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.519.0
4
+ version: 1.520.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services