aws-sdk-ec2 1.419.0 → 1.420.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +221 -79
- data/lib/aws-sdk-ec2/client_api.rb +52 -2
- data/lib/aws-sdk-ec2/endpoints.rb +14 -0
- data/lib/aws-sdk-ec2/instance.rb +16 -3
- data/lib/aws-sdk-ec2/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-ec2/types.rb +279 -123
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -6312,8 +6312,8 @@ module Aws::EC2
|
|
6312
6312
|
# min: 1,
|
6313
6313
|
# max: 1,
|
6314
6314
|
# },
|
6315
|
-
# accelerator_manufacturers: ["
|
6316
|
-
# accelerator_names: ["a100"], # accepts a100,
|
6315
|
+
# accelerator_manufacturers: ["amazon-web-services"], # accepts amazon-web-services, amd, nvidia, xilinx
|
6316
|
+
# accelerator_names: ["a100"], # accepts a100, inferentia, k520, k80, m60, radeon-pro-v520, t4, vu9p, v100
|
6317
6317
|
# accelerator_total_memory_mi_b: {
|
6318
6318
|
# min: 1,
|
6319
6319
|
# max: 1,
|
@@ -6400,9 +6400,9 @@ module Aws::EC2
|
|
6400
6400
|
# resp.errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_count.min #=> Integer
|
6401
6401
|
# resp.errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_count.max #=> Integer
|
6402
6402
|
# resp.errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_manufacturers #=> Array
|
6403
|
-
# resp.errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_manufacturers[0] #=> String, one of "
|
6403
|
+
# resp.errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_manufacturers[0] #=> String, one of "amazon-web-services", "amd", "nvidia", "xilinx"
|
6404
6404
|
# resp.errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names #=> Array
|
6405
|
-
# resp.errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names[0] #=> String, one of "a100", "
|
6405
|
+
# resp.errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names[0] #=> String, one of "a100", "inferentia", "k520", "k80", "m60", "radeon-pro-v520", "t4", "vu9p", "v100"
|
6406
6406
|
# resp.errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_total_memory_mi_b.min #=> Integer
|
6407
6407
|
# resp.errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_total_memory_mi_b.max #=> Integer
|
6408
6408
|
# resp.errors[0].launch_template_and_overrides.overrides.instance_requirements.network_bandwidth_gbps.min #=> Float
|
@@ -6455,9 +6455,9 @@ module Aws::EC2
|
|
6455
6455
|
# resp.instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_count.min #=> Integer
|
6456
6456
|
# resp.instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_count.max #=> Integer
|
6457
6457
|
# resp.instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_manufacturers #=> Array
|
6458
|
-
# resp.instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_manufacturers[0] #=> String, one of "
|
6458
|
+
# resp.instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_manufacturers[0] #=> String, one of "amazon-web-services", "amd", "nvidia", "xilinx"
|
6459
6459
|
# resp.instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names #=> Array
|
6460
|
-
# resp.instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names[0] #=> String, one of "a100", "
|
6460
|
+
# resp.instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names[0] #=> String, one of "a100", "inferentia", "k520", "k80", "m60", "radeon-pro-v520", "t4", "vu9p", "v100"
|
6461
6461
|
# resp.instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_total_memory_mi_b.min #=> Integer
|
6462
6462
|
# resp.instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_total_memory_mi_b.max #=> Integer
|
6463
6463
|
# resp.instances[0].launch_template_and_overrides.overrides.instance_requirements.network_bandwidth_gbps.min #=> Float
|
@@ -6786,9 +6786,22 @@ module Aws::EC2
|
|
6786
6786
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/creating-an-ami-ebs.html
|
6787
6787
|
#
|
6788
6788
|
# @option params [Array<Types::BlockDeviceMapping>] :block_device_mappings
|
6789
|
-
# The block device mappings.
|
6790
|
-
#
|
6791
|
-
#
|
6789
|
+
# The block device mappings.
|
6790
|
+
#
|
6791
|
+
# When using the CreateImage action:
|
6792
|
+
#
|
6793
|
+
# * You can't change the volume size using the VolumeSize parameter. If
|
6794
|
+
# you want a different volume size, you must first change the volume
|
6795
|
+
# size of the source instance.
|
6796
|
+
#
|
6797
|
+
# * You can't modify the encryption status of existing volumes or
|
6798
|
+
# snapshots. To create an AMI with volumes or snapshots that have a
|
6799
|
+
# different encryption status (for example, where the source volume
|
6800
|
+
# and snapshots are unencrypted, and you want to create an AMI with
|
6801
|
+
# encrypted volumes or snapshots), use the CopyImage action.
|
6802
|
+
#
|
6803
|
+
# * The only option that can be changed for existing mappings or
|
6804
|
+
# snapshots is `DeleteOnTermination`.
|
6792
6805
|
#
|
6793
6806
|
# @option params [String] :description
|
6794
6807
|
# A description for the new image.
|
@@ -8252,8 +8265,8 @@ module Aws::EC2
|
|
8252
8265
|
# min: 1,
|
8253
8266
|
# max: 1,
|
8254
8267
|
# },
|
8255
|
-
# accelerator_manufacturers: ["
|
8256
|
-
# accelerator_names: ["a100"], # accepts a100,
|
8268
|
+
# accelerator_manufacturers: ["amazon-web-services"], # accepts amazon-web-services, amd, nvidia, xilinx
|
8269
|
+
# accelerator_names: ["a100"], # accepts a100, inferentia, k520, k80, m60, radeon-pro-v520, t4, vu9p, v100
|
8257
8270
|
# accelerator_total_memory_mi_b: {
|
8258
8271
|
# min: 1,
|
8259
8272
|
# max: 1,
|
@@ -8643,8 +8656,8 @@ module Aws::EC2
|
|
8643
8656
|
# min: 1,
|
8644
8657
|
# max: 1,
|
8645
8658
|
# },
|
8646
|
-
# accelerator_manufacturers: ["
|
8647
|
-
# accelerator_names: ["a100"], # accepts a100,
|
8659
|
+
# accelerator_manufacturers: ["amazon-web-services"], # accepts amazon-web-services, amd, nvidia, xilinx
|
8660
|
+
# accelerator_names: ["a100"], # accepts a100, inferentia, k520, k80, m60, radeon-pro-v520, t4, vu9p, v100
|
8648
8661
|
# accelerator_total_memory_mi_b: {
|
8649
8662
|
# min: 1,
|
8650
8663
|
# max: 1,
|
@@ -8808,9 +8821,9 @@ module Aws::EC2
|
|
8808
8821
|
# resp.launch_template_version.launch_template_data.instance_requirements.accelerator_count.min #=> Integer
|
8809
8822
|
# resp.launch_template_version.launch_template_data.instance_requirements.accelerator_count.max #=> Integer
|
8810
8823
|
# resp.launch_template_version.launch_template_data.instance_requirements.accelerator_manufacturers #=> Array
|
8811
|
-
# resp.launch_template_version.launch_template_data.instance_requirements.accelerator_manufacturers[0] #=> String, one of "
|
8824
|
+
# resp.launch_template_version.launch_template_data.instance_requirements.accelerator_manufacturers[0] #=> String, one of "amazon-web-services", "amd", "nvidia", "xilinx"
|
8812
8825
|
# resp.launch_template_version.launch_template_data.instance_requirements.accelerator_names #=> Array
|
8813
|
-
# resp.launch_template_version.launch_template_data.instance_requirements.accelerator_names[0] #=> String, one of "a100", "
|
8826
|
+
# resp.launch_template_version.launch_template_data.instance_requirements.accelerator_names[0] #=> String, one of "a100", "inferentia", "k520", "k80", "m60", "radeon-pro-v520", "t4", "vu9p", "v100"
|
8814
8827
|
# resp.launch_template_version.launch_template_data.instance_requirements.accelerator_total_memory_mi_b.min #=> Integer
|
8815
8828
|
# resp.launch_template_version.launch_template_data.instance_requirements.accelerator_total_memory_mi_b.max #=> Integer
|
8816
8829
|
# resp.launch_template_version.launch_template_data.instance_requirements.network_bandwidth_gbps.min #=> Float
|
@@ -13341,7 +13354,7 @@ module Aws::EC2
|
|
13341
13354
|
#
|
13342
13355
|
# @option params [Array<String>] :security_group_ids
|
13343
13356
|
# The IDs of the security groups to associate with the Verified Access
|
13344
|
-
# endpoint.
|
13357
|
+
# endpoint. Required if `AttachmentType` is set to `vpc`.
|
13345
13358
|
#
|
13346
13359
|
# @option params [Types::CreateVerifiedAccessEndpointLoadBalancerOptions] :load_balancer_options
|
13347
13360
|
# The load balancer details. This parameter is required if the endpoint
|
@@ -13379,7 +13392,7 @@ module Aws::EC2
|
|
13379
13392
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
13380
13393
|
#
|
13381
13394
|
# @option params [Types::VerifiedAccessSseSpecificationRequest] :sse_specification
|
13382
|
-
#
|
13395
|
+
# The options for server side encryption.
|
13383
13396
|
#
|
13384
13397
|
# @return [Types::CreateVerifiedAccessEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13385
13398
|
#
|
@@ -13507,7 +13520,7 @@ module Aws::EC2
|
|
13507
13520
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
13508
13521
|
#
|
13509
13522
|
# @option params [Types::VerifiedAccessSseSpecificationRequest] :sse_specification
|
13510
|
-
#
|
13523
|
+
# The options for server side encryption.
|
13511
13524
|
#
|
13512
13525
|
# @return [Types::CreateVerifiedAccessGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13513
13526
|
#
|
@@ -13698,7 +13711,7 @@ module Aws::EC2
|
|
13698
13711
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
13699
13712
|
#
|
13700
13713
|
# @option params [Types::VerifiedAccessSseSpecificationRequest] :sse_specification
|
13701
|
-
#
|
13714
|
+
# The options for server side encryption.
|
13702
13715
|
#
|
13703
13716
|
# @return [Types::CreateVerifiedAccessTrustProviderResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13704
13717
|
#
|
@@ -18555,7 +18568,7 @@ module Aws::EC2
|
|
18555
18568
|
# connection if it's in the `active` state. The owner of the requester
|
18556
18569
|
# VPC can delete a VPC peering connection in the `pending-acceptance`
|
18557
18570
|
# state. You cannot delete a VPC peering connection that's in the
|
18558
|
-
# `failed` state.
|
18571
|
+
# `failed` or `rejected` state.
|
18559
18572
|
#
|
18560
18573
|
# @option params [Boolean] :dry_run
|
18561
18574
|
# Checks whether you have the required permissions for the action,
|
@@ -21500,20 +21513,17 @@ module Aws::EC2
|
|
21500
21513
|
req.send_request(options)
|
21501
21514
|
end
|
21502
21515
|
|
21503
|
-
# Describe details for Windows AMIs that are configured for
|
21504
|
-
#
|
21516
|
+
# Describe details for Windows AMIs that are configured for Windows fast
|
21517
|
+
# launch.
|
21505
21518
|
#
|
21506
21519
|
# @option params [Array<String>] :image_ids
|
21507
|
-
#
|
21520
|
+
# Specify one or more Windows AMI image IDs for the request.
|
21508
21521
|
#
|
21509
21522
|
# @option params [Array<Types::Filter>] :filters
|
21510
21523
|
# Use the following filters to streamline results.
|
21511
21524
|
#
|
21512
21525
|
# * `resource-type` - The resource type for pre-provisioning.
|
21513
21526
|
#
|
21514
|
-
# * `launch-template` - The launch template that is associated with the
|
21515
|
-
# pre-provisioned Windows AMI.
|
21516
|
-
#
|
21517
21527
|
# * `owner-id` - The owner ID for the pre-provisioning resource.
|
21518
21528
|
#
|
21519
21529
|
# * `state` - The current state of fast launching for the Windows AMI.
|
@@ -21960,9 +21970,9 @@ module Aws::EC2
|
|
21960
21970
|
# resp.fleets[0].launch_template_configs[0].overrides[0].instance_requirements.accelerator_count.min #=> Integer
|
21961
21971
|
# resp.fleets[0].launch_template_configs[0].overrides[0].instance_requirements.accelerator_count.max #=> Integer
|
21962
21972
|
# resp.fleets[0].launch_template_configs[0].overrides[0].instance_requirements.accelerator_manufacturers #=> Array
|
21963
|
-
# resp.fleets[0].launch_template_configs[0].overrides[0].instance_requirements.accelerator_manufacturers[0] #=> String, one of "
|
21973
|
+
# resp.fleets[0].launch_template_configs[0].overrides[0].instance_requirements.accelerator_manufacturers[0] #=> String, one of "amazon-web-services", "amd", "nvidia", "xilinx"
|
21964
21974
|
# resp.fleets[0].launch_template_configs[0].overrides[0].instance_requirements.accelerator_names #=> Array
|
21965
|
-
# resp.fleets[0].launch_template_configs[0].overrides[0].instance_requirements.accelerator_names[0] #=> String, one of "a100", "
|
21975
|
+
# resp.fleets[0].launch_template_configs[0].overrides[0].instance_requirements.accelerator_names[0] #=> String, one of "a100", "inferentia", "k520", "k80", "m60", "radeon-pro-v520", "t4", "vu9p", "v100"
|
21966
21976
|
# resp.fleets[0].launch_template_configs[0].overrides[0].instance_requirements.accelerator_total_memory_mi_b.min #=> Integer
|
21967
21977
|
# resp.fleets[0].launch_template_configs[0].overrides[0].instance_requirements.accelerator_total_memory_mi_b.max #=> Integer
|
21968
21978
|
# resp.fleets[0].launch_template_configs[0].overrides[0].instance_requirements.network_bandwidth_gbps.min #=> Float
|
@@ -22040,9 +22050,9 @@ module Aws::EC2
|
|
22040
22050
|
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_count.min #=> Integer
|
22041
22051
|
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_count.max #=> Integer
|
22042
22052
|
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_manufacturers #=> Array
|
22043
|
-
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_manufacturers[0] #=> String, one of "
|
22053
|
+
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_manufacturers[0] #=> String, one of "amazon-web-services", "amd", "nvidia", "xilinx"
|
22044
22054
|
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names #=> Array
|
22045
|
-
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names[0] #=> String, one of "a100", "
|
22055
|
+
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names[0] #=> String, one of "a100", "inferentia", "k520", "k80", "m60", "radeon-pro-v520", "t4", "vu9p", "v100"
|
22046
22056
|
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_total_memory_mi_b.min #=> Integer
|
22047
22057
|
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_total_memory_mi_b.max #=> Integer
|
22048
22058
|
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.instance_requirements.network_bandwidth_gbps.min #=> Float
|
@@ -22095,9 +22105,9 @@ module Aws::EC2
|
|
22095
22105
|
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_count.min #=> Integer
|
22096
22106
|
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_count.max #=> Integer
|
22097
22107
|
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_manufacturers #=> Array
|
22098
|
-
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_manufacturers[0] #=> String, one of "
|
22108
|
+
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_manufacturers[0] #=> String, one of "amazon-web-services", "amd", "nvidia", "xilinx"
|
22099
22109
|
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names #=> Array
|
22100
|
-
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names[0] #=> String, one of "a100", "
|
22110
|
+
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names[0] #=> String, one of "a100", "inferentia", "k520", "k80", "m60", "radeon-pro-v520", "t4", "vu9p", "v100"
|
22101
22111
|
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_total_memory_mi_b.min #=> Integer
|
22102
22112
|
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_total_memory_mi_b.max #=> Integer
|
22103
22113
|
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.instance_requirements.network_bandwidth_gbps.min #=> Float
|
@@ -24279,6 +24289,134 @@ module Aws::EC2
|
|
24279
24289
|
req.send_request(options)
|
24280
24290
|
end
|
24281
24291
|
|
24292
|
+
# Describes a tree-based hierarchy that represents the physical host
|
24293
|
+
# placement of your EC2 instances within an Availability Zone or Local
|
24294
|
+
# Zone. You can use this information to determine the relative proximity
|
24295
|
+
# of your EC2 instances within the Amazon Web Services network to
|
24296
|
+
# support your tightly coupled workloads.
|
24297
|
+
#
|
24298
|
+
# **Limitations**
|
24299
|
+
#
|
24300
|
+
# * Supported zones
|
24301
|
+
#
|
24302
|
+
# * Availability Zone
|
24303
|
+
#
|
24304
|
+
# * Local Zone
|
24305
|
+
#
|
24306
|
+
# * Supported instance types
|
24307
|
+
#
|
24308
|
+
# * `hpc6a.48xlarge` \| `hpc6id.32xlarge` \| `hpc7a.12xlarge` \|
|
24309
|
+
# `hpc7a.24xlarge` \| `hpc7a.48xlarge` \| `hpc7a.96xlarge` \|
|
24310
|
+
# `hpc7g.4xlarge` \| `hpc7g.8xlarge` \| `hpc7g.16xlarge`
|
24311
|
+
#
|
24312
|
+
# * `p3dn.24xlarge` \| `p4d.24xlarge` \| `p4de.24xlarge` \|
|
24313
|
+
# `p5.48xlarge`
|
24314
|
+
#
|
24315
|
+
# * `trn1.2xlarge` \| `trn1.32xlarge` \| `trn1n.32xlarge`
|
24316
|
+
#
|
24317
|
+
# For more information, see [Amazon EC2 instance topology][1] in the
|
24318
|
+
# *Amazon EC2 User Guide*.
|
24319
|
+
#
|
24320
|
+
#
|
24321
|
+
#
|
24322
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-topology.html
|
24323
|
+
#
|
24324
|
+
# @option params [Boolean] :dry_run
|
24325
|
+
# Checks whether you have the required permissions for the action,
|
24326
|
+
# without actually making the request, and provides an error response.
|
24327
|
+
# If you have the required permissions, the error response is
|
24328
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
24329
|
+
#
|
24330
|
+
# @option params [String] :next_token
|
24331
|
+
# The token returned from a previous paginated request. Pagination
|
24332
|
+
# continues from the end of the items returned by the previous request.
|
24333
|
+
#
|
24334
|
+
# @option params [Integer] :max_results
|
24335
|
+
# The maximum number of items to return for this request. To get the
|
24336
|
+
# next page of items, make another request with the token returned in
|
24337
|
+
# the output. For more information, see [Pagination][1].
|
24338
|
+
#
|
24339
|
+
# You can't specify this parameter and the instance IDs parameter in
|
24340
|
+
# the same request.
|
24341
|
+
#
|
24342
|
+
# Default: `20`
|
24343
|
+
#
|
24344
|
+
#
|
24345
|
+
#
|
24346
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
24347
|
+
#
|
24348
|
+
# @option params [Array<String>] :instance_ids
|
24349
|
+
# The instance IDs.
|
24350
|
+
#
|
24351
|
+
# Default: Describes all your instances.
|
24352
|
+
#
|
24353
|
+
# Constraints: Maximum 100 explicitly specified instance IDs.
|
24354
|
+
#
|
24355
|
+
# @option params [Array<String>] :group_names
|
24356
|
+
# The name of the placement group that each instance is in.
|
24357
|
+
#
|
24358
|
+
# Constraints: Maximum 100 explicitly specified placement group names.
|
24359
|
+
#
|
24360
|
+
# @option params [Array<Types::Filter>] :filters
|
24361
|
+
# The filters.
|
24362
|
+
#
|
24363
|
+
# * `availability-zone` - The name of the Availability Zone (for
|
24364
|
+
# example, `us-west-2a`) or Local Zone (for example,
|
24365
|
+
# `us-west-2-lax-1b`) that the instance is in.
|
24366
|
+
#
|
24367
|
+
# * `instance-type` - The instance type (for example, `p4d.24xlarge`) or
|
24368
|
+
# instance family (for example, `p4d*`). You can use the `*` wildcard
|
24369
|
+
# to match zero or more characters, or the `?` wildcard to match zero
|
24370
|
+
# or one character.
|
24371
|
+
#
|
24372
|
+
# * `zone-id` - The ID of the Availability Zone (for example,
|
24373
|
+
# `usw2-az2`) or Local Zone (for example, `usw2-lax1-az1`) that the
|
24374
|
+
# instance is in.
|
24375
|
+
#
|
24376
|
+
# @return [Types::DescribeInstanceTopologyResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
24377
|
+
#
|
24378
|
+
# * {Types::DescribeInstanceTopologyResult#instances #instances} => Array<Types::InstanceTopology>
|
24379
|
+
# * {Types::DescribeInstanceTopologyResult#next_token #next_token} => String
|
24380
|
+
#
|
24381
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
24382
|
+
#
|
24383
|
+
# @example Request syntax with placeholder values
|
24384
|
+
#
|
24385
|
+
# resp = client.describe_instance_topology({
|
24386
|
+
# dry_run: false,
|
24387
|
+
# next_token: "String",
|
24388
|
+
# max_results: 1,
|
24389
|
+
# instance_ids: ["InstanceId"],
|
24390
|
+
# group_names: ["PlacementGroupName"],
|
24391
|
+
# filters: [
|
24392
|
+
# {
|
24393
|
+
# name: "String",
|
24394
|
+
# values: ["String"],
|
24395
|
+
# },
|
24396
|
+
# ],
|
24397
|
+
# })
|
24398
|
+
#
|
24399
|
+
# @example Response structure
|
24400
|
+
#
|
24401
|
+
# resp.instances #=> Array
|
24402
|
+
# resp.instances[0].instance_id #=> String
|
24403
|
+
# resp.instances[0].instance_type #=> String
|
24404
|
+
# resp.instances[0].group_name #=> String
|
24405
|
+
# resp.instances[0].network_nodes #=> Array
|
24406
|
+
# resp.instances[0].network_nodes[0] #=> String
|
24407
|
+
# resp.instances[0].availability_zone #=> String
|
24408
|
+
# resp.instances[0].zone_id #=> String
|
24409
|
+
# resp.next_token #=> String
|
24410
|
+
#
|
24411
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceTopology AWS API Documentation
|
24412
|
+
#
|
24413
|
+
# @overload describe_instance_topology(params = {})
|
24414
|
+
# @param [Hash] params ({})
|
24415
|
+
def describe_instance_topology(params = {}, options = {})
|
24416
|
+
req = build_request(:describe_instance_topology, params)
|
24417
|
+
req.send_request(options)
|
24418
|
+
end
|
24419
|
+
|
24282
24420
|
# Returns a list of all instance types offered. The results can be
|
24283
24421
|
# filtered by location (Region or Availability Zone). If no location is
|
24284
24422
|
# specified, the instance types offered in the current Region are
|
@@ -26457,9 +26595,9 @@ module Aws::EC2
|
|
26457
26595
|
# resp.launch_template_versions[0].launch_template_data.instance_requirements.accelerator_count.min #=> Integer
|
26458
26596
|
# resp.launch_template_versions[0].launch_template_data.instance_requirements.accelerator_count.max #=> Integer
|
26459
26597
|
# resp.launch_template_versions[0].launch_template_data.instance_requirements.accelerator_manufacturers #=> Array
|
26460
|
-
# resp.launch_template_versions[0].launch_template_data.instance_requirements.accelerator_manufacturers[0] #=> String, one of "
|
26598
|
+
# resp.launch_template_versions[0].launch_template_data.instance_requirements.accelerator_manufacturers[0] #=> String, one of "amazon-web-services", "amd", "nvidia", "xilinx"
|
26461
26599
|
# resp.launch_template_versions[0].launch_template_data.instance_requirements.accelerator_names #=> Array
|
26462
|
-
# resp.launch_template_versions[0].launch_template_data.instance_requirements.accelerator_names[0] #=> String, one of "a100", "
|
26600
|
+
# resp.launch_template_versions[0].launch_template_data.instance_requirements.accelerator_names[0] #=> String, one of "a100", "inferentia", "k520", "k80", "m60", "radeon-pro-v520", "t4", "vu9p", "v100"
|
26463
26601
|
# resp.launch_template_versions[0].launch_template_data.instance_requirements.accelerator_total_memory_mi_b.min #=> Integer
|
26464
26602
|
# resp.launch_template_versions[0].launch_template_data.instance_requirements.accelerator_total_memory_mi_b.max #=> Integer
|
26465
26603
|
# resp.launch_template_versions[0].launch_template_data.instance_requirements.network_bandwidth_gbps.min #=> Float
|
@@ -32127,9 +32265,9 @@ module Aws::EC2
|
|
32127
32265
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].instance_requirements.accelerator_count.min #=> Integer
|
32128
32266
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].instance_requirements.accelerator_count.max #=> Integer
|
32129
32267
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].instance_requirements.accelerator_manufacturers #=> Array
|
32130
|
-
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].instance_requirements.accelerator_manufacturers[0] #=> String, one of "
|
32268
|
+
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].instance_requirements.accelerator_manufacturers[0] #=> String, one of "amazon-web-services", "amd", "nvidia", "xilinx"
|
32131
32269
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].instance_requirements.accelerator_names #=> Array
|
32132
|
-
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].instance_requirements.accelerator_names[0] #=> String, one of "a100", "
|
32270
|
+
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].instance_requirements.accelerator_names[0] #=> String, one of "a100", "inferentia", "k520", "k80", "m60", "radeon-pro-v520", "t4", "vu9p", "v100"
|
32133
32271
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].instance_requirements.accelerator_total_memory_mi_b.min #=> Integer
|
32134
32272
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].instance_requirements.accelerator_total_memory_mi_b.max #=> Integer
|
32135
32273
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].instance_requirements.network_bandwidth_gbps.min #=> Float
|
@@ -32178,9 +32316,9 @@ module Aws::EC2
|
|
32178
32316
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_template_configs[0].overrides[0].instance_requirements.accelerator_count.min #=> Integer
|
32179
32317
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_template_configs[0].overrides[0].instance_requirements.accelerator_count.max #=> Integer
|
32180
32318
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_template_configs[0].overrides[0].instance_requirements.accelerator_manufacturers #=> Array
|
32181
|
-
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_template_configs[0].overrides[0].instance_requirements.accelerator_manufacturers[0] #=> String, one of "
|
32319
|
+
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_template_configs[0].overrides[0].instance_requirements.accelerator_manufacturers[0] #=> String, one of "amazon-web-services", "amd", "nvidia", "xilinx"
|
32182
32320
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_template_configs[0].overrides[0].instance_requirements.accelerator_names #=> Array
|
32183
|
-
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_template_configs[0].overrides[0].instance_requirements.accelerator_names[0] #=> String, one of "a100", "
|
32321
|
+
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_template_configs[0].overrides[0].instance_requirements.accelerator_names[0] #=> String, one of "a100", "inferentia", "k520", "k80", "m60", "radeon-pro-v520", "t4", "vu9p", "v100"
|
32184
32322
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_template_configs[0].overrides[0].instance_requirements.accelerator_total_memory_mi_b.min #=> Integer
|
32185
32323
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_template_configs[0].overrides[0].instance_requirements.accelerator_total_memory_mi_b.max #=> Integer
|
32186
32324
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_template_configs[0].overrides[0].instance_requirements.network_bandwidth_gbps.min #=> Float
|
@@ -37431,22 +37569,22 @@ module Aws::EC2
|
|
37431
37569
|
req.send_request(options)
|
37432
37570
|
end
|
37433
37571
|
|
37434
|
-
# Discontinue
|
37435
|
-
# pre-provisioned snapshots.
|
37436
|
-
# uses the standard launch process for each
|
37437
|
-
#
|
37438
|
-
#
|
37572
|
+
# Discontinue Windows fast launch for a Windows AMI, and clean up
|
37573
|
+
# existing pre-provisioned snapshots. After you disable Windows fast
|
37574
|
+
# launch, the AMI uses the standard launch process for each new
|
37575
|
+
# instance. Amazon EC2 must remove all pre-provisioned snapshots before
|
37576
|
+
# you can enable Windows fast launch again.
|
37439
37577
|
#
|
37440
|
-
# <note markdown="1">
|
37578
|
+
# <note markdown="1"> You can only change these settings for Windows AMIs that you own or
|
37579
|
+
# that have been shared with you.
|
37441
37580
|
#
|
37442
37581
|
# </note>
|
37443
37582
|
#
|
37444
37583
|
# @option params [required, String] :image_id
|
37445
|
-
#
|
37446
|
-
# removing pre-provisioned snapshots.
|
37584
|
+
# Specify the ID of the image for which to disable Windows fast launch.
|
37447
37585
|
#
|
37448
37586
|
# @option params [Boolean] :force
|
37449
|
-
# Forces the image settings to turn off
|
37587
|
+
# Forces the image settings to turn off Windows fast launch for your
|
37450
37588
|
# Windows AMI. This parameter overrides any errors that are encountered
|
37451
37589
|
# while cleaning up resources in your account.
|
37452
37590
|
#
|
@@ -37561,10 +37699,10 @@ module Aws::EC2
|
|
37561
37699
|
# Sets the AMI state to `disabled` and removes all launch permissions
|
37562
37700
|
# from the AMI. A disabled AMI can't be used for instance launches.
|
37563
37701
|
#
|
37564
|
-
# A disabled AMI can't be shared. If
|
37565
|
-
#
|
37566
|
-
#
|
37567
|
-
#
|
37702
|
+
# A disabled AMI can't be shared. If an AMI was public or previously
|
37703
|
+
# shared, it is made private. If an AMI was shared with an Amazon Web
|
37704
|
+
# Services account, organization, or Organizational Unit, they lose
|
37705
|
+
# access to the disabled AMI.
|
37568
37706
|
#
|
37569
37707
|
# A disabled AMI does not appear in [DescribeImages][1] API calls by
|
37570
37708
|
# default.
|
@@ -38082,7 +38220,7 @@ module Aws::EC2
|
|
38082
38220
|
#
|
38083
38221
|
# resp = client.disassociate_client_vpn_target_network({
|
38084
38222
|
# client_vpn_endpoint_id: "ClientVpnEndpointId", # required
|
38085
|
-
# association_id: "
|
38223
|
+
# association_id: "String", # required
|
38086
38224
|
# dry_run: false,
|
38087
38225
|
# })
|
38088
38226
|
#
|
@@ -38880,7 +39018,7 @@ module Aws::EC2
|
|
38880
39018
|
req.send_request(options)
|
38881
39019
|
end
|
38882
39020
|
|
38883
|
-
# When you enable
|
39021
|
+
# When you enable Windows fast launch for a Windows AMI, images are
|
38884
39022
|
# pre-provisioned, using snapshots to launch instances up to 65% faster.
|
38885
39023
|
# To create the optimized Windows image, Amazon EC2 launches an instance
|
38886
39024
|
# and runs through Sysprep steps, rebooting as required. Then it creates
|
@@ -38888,22 +39026,23 @@ module Aws::EC2
|
|
38888
39026
|
# reserved snapshots are automatically replenished as they are used,
|
38889
39027
|
# depending on your settings for launch frequency.
|
38890
39028
|
#
|
38891
|
-
# <note markdown="1">
|
39029
|
+
# <note markdown="1"> You can only change these settings for Windows AMIs that you own or
|
39030
|
+
# that have been shared with you.
|
38892
39031
|
#
|
38893
39032
|
# </note>
|
38894
39033
|
#
|
38895
39034
|
# @option params [required, String] :image_id
|
38896
|
-
#
|
39035
|
+
# Specify the ID of the image for which to enable Windows fast launch.
|
38897
39036
|
#
|
38898
39037
|
# @option params [String] :resource_type
|
38899
|
-
# The type of resource to use for pre-provisioning the
|
38900
|
-
#
|
39038
|
+
# The type of resource to use for pre-provisioning the AMI for Windows
|
39039
|
+
# fast launch. Supported values include: `snapshot`, which is the
|
38901
39040
|
# default value.
|
38902
39041
|
#
|
38903
39042
|
# @option params [Types::FastLaunchSnapshotConfigurationRequest] :snapshot_configuration
|
38904
39043
|
# Configuration settings for creating and managing the snapshots that
|
38905
|
-
# are used for pre-provisioning the
|
38906
|
-
#
|
39044
|
+
# are used for pre-provisioning the AMI for Windows fast launch. The
|
39045
|
+
# associated `ResourceType` must be `snapshot`.
|
38907
39046
|
#
|
38908
39047
|
# @option params [Types::FastLaunchLaunchTemplateSpecificationRequest] :launch_template
|
38909
39048
|
# The launch template to use when launching Windows instances from
|
@@ -38912,7 +39051,7 @@ module Aws::EC2
|
|
38912
39051
|
#
|
38913
39052
|
# @option params [Integer] :max_parallel_launches
|
38914
39053
|
# The maximum number of instances that Amazon EC2 can launch at the same
|
38915
|
-
# time to create pre-provisioned snapshots for Windows
|
39054
|
+
# time to create pre-provisioned snapshots for Windows fast launch.
|
38916
39055
|
# Value must be `6` or greater.
|
38917
39056
|
#
|
38918
39057
|
# @option params [Boolean] :dry_run
|
@@ -40162,6 +40301,7 @@ module Aws::EC2
|
|
40162
40301
|
# * {Types::GetCoipPoolUsageResult#coip_pool_id #coip_pool_id} => String
|
40163
40302
|
# * {Types::GetCoipPoolUsageResult#coip_address_usages #coip_address_usages} => Array<Types::CoipAddressUsage>
|
40164
40303
|
# * {Types::GetCoipPoolUsageResult#local_gateway_route_table_id #local_gateway_route_table_id} => String
|
40304
|
+
# * {Types::GetCoipPoolUsageResult#next_token #next_token} => String
|
40165
40305
|
#
|
40166
40306
|
# @example Request syntax with placeholder values
|
40167
40307
|
#
|
@@ -40187,6 +40327,7 @@ module Aws::EC2
|
|
40187
40327
|
# resp.coip_address_usages[0].aws_service #=> String
|
40188
40328
|
# resp.coip_address_usages[0].co_ip #=> String
|
40189
40329
|
# resp.local_gateway_route_table_id #=> String
|
40330
|
+
# resp.next_token #=> String
|
40190
40331
|
#
|
40191
40332
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetCoipPoolUsage AWS API Documentation
|
40192
40333
|
#
|
@@ -40777,8 +40918,8 @@ module Aws::EC2
|
|
40777
40918
|
# min: 1,
|
40778
40919
|
# max: 1,
|
40779
40920
|
# },
|
40780
|
-
# accelerator_manufacturers: ["
|
40781
|
-
# accelerator_names: ["a100"], # accepts a100,
|
40921
|
+
# accelerator_manufacturers: ["amazon-web-services"], # accepts amazon-web-services, amd, nvidia, xilinx
|
40922
|
+
# accelerator_names: ["a100"], # accepts a100, inferentia, k520, k80, m60, radeon-pro-v520, t4, vu9p, v100
|
40782
40923
|
# accelerator_total_memory_mi_b: {
|
40783
40924
|
# min: 1,
|
40784
40925
|
# max: 1,
|
@@ -41584,9 +41725,9 @@ module Aws::EC2
|
|
41584
41725
|
# resp.launch_template_data.instance_requirements.accelerator_count.min #=> Integer
|
41585
41726
|
# resp.launch_template_data.instance_requirements.accelerator_count.max #=> Integer
|
41586
41727
|
# resp.launch_template_data.instance_requirements.accelerator_manufacturers #=> Array
|
41587
|
-
# resp.launch_template_data.instance_requirements.accelerator_manufacturers[0] #=> String, one of "
|
41728
|
+
# resp.launch_template_data.instance_requirements.accelerator_manufacturers[0] #=> String, one of "amazon-web-services", "amd", "nvidia", "xilinx"
|
41588
41729
|
# resp.launch_template_data.instance_requirements.accelerator_names #=> Array
|
41589
|
-
# resp.launch_template_data.instance_requirements.accelerator_names[0] #=> String, one of "a100", "
|
41730
|
+
# resp.launch_template_data.instance_requirements.accelerator_names[0] #=> String, one of "a100", "inferentia", "k520", "k80", "m60", "radeon-pro-v520", "t4", "vu9p", "v100"
|
41590
41731
|
# resp.launch_template_data.instance_requirements.accelerator_total_memory_mi_b.min #=> Integer
|
41591
41732
|
# resp.launch_template_data.instance_requirements.accelerator_total_memory_mi_b.max #=> Integer
|
41592
41733
|
# resp.launch_template_data.instance_requirements.network_bandwidth_gbps.min #=> Float
|
@@ -42652,8 +42793,8 @@ module Aws::EC2
|
|
42652
42793
|
# min: 1,
|
42653
42794
|
# max: 1,
|
42654
42795
|
# },
|
42655
|
-
# accelerator_manufacturers: ["
|
42656
|
-
# accelerator_names: ["a100"], # accepts a100,
|
42796
|
+
# accelerator_manufacturers: ["amazon-web-services"], # accepts amazon-web-services, amd, nvidia, xilinx
|
42797
|
+
# accelerator_names: ["a100"], # accepts a100, inferentia, k520, k80, m60, radeon-pro-v520, t4, vu9p, v100
|
42657
42798
|
# accelerator_total_memory_mi_b: {
|
42658
42799
|
# min: 1,
|
42659
42800
|
# max: 1,
|
@@ -45101,8 +45242,8 @@ module Aws::EC2
|
|
45101
45242
|
# min: 1,
|
45102
45243
|
# max: 1,
|
45103
45244
|
# },
|
45104
|
-
# accelerator_manufacturers: ["
|
45105
|
-
# accelerator_names: ["a100"], # accepts a100,
|
45245
|
+
# accelerator_manufacturers: ["amazon-web-services"], # accepts amazon-web-services, amd, nvidia, xilinx
|
45246
|
+
# accelerator_names: ["a100"], # accepts a100, inferentia, k520, k80, m60, radeon-pro-v520, t4, vu9p, v100
|
45106
45247
|
# accelerator_total_memory_mi_b: {
|
45107
45248
|
# min: 1,
|
45108
45249
|
# max: 1,
|
@@ -47697,8 +47838,8 @@ module Aws::EC2
|
|
47697
47838
|
# min: 1,
|
47698
47839
|
# max: 1,
|
47699
47840
|
# },
|
47700
|
-
# accelerator_manufacturers: ["
|
47701
|
-
# accelerator_names: ["a100"], # accepts a100,
|
47841
|
+
# accelerator_manufacturers: ["amazon-web-services"], # accepts amazon-web-services, amd, nvidia, xilinx
|
47842
|
+
# accelerator_names: ["a100"], # accepts a100, inferentia, k520, k80, m60, radeon-pro-v520, t4, vu9p, v100
|
47702
47843
|
# accelerator_total_memory_mi_b: {
|
47703
47844
|
# min: 1,
|
47704
47845
|
# max: 1,
|
@@ -48483,7 +48624,7 @@ module Aws::EC2
|
|
48483
48624
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
48484
48625
|
#
|
48485
48626
|
# @option params [Types::VerifiedAccessSseSpecificationRequest] :sse_specification
|
48486
|
-
#
|
48627
|
+
# The options for server side encryption.
|
48487
48628
|
#
|
48488
48629
|
# @return [Types::ModifyVerifiedAccessEndpointPolicyResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
48489
48630
|
#
|
@@ -48621,7 +48762,7 @@ module Aws::EC2
|
|
48621
48762
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
48622
48763
|
#
|
48623
48764
|
# @option params [Types::VerifiedAccessSseSpecificationRequest] :sse_specification
|
48624
|
-
#
|
48765
|
+
# The options for server side encryption.
|
48625
48766
|
#
|
48626
48767
|
# @return [Types::ModifyVerifiedAccessGroupPolicyResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
48627
48768
|
#
|
@@ -48843,7 +48984,7 @@ module Aws::EC2
|
|
48843
48984
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
48844
48985
|
#
|
48845
48986
|
# @option params [Types::VerifiedAccessSseSpecificationRequest] :sse_specification
|
48846
|
-
#
|
48987
|
+
# The options for server side encryption.
|
48847
48988
|
#
|
48848
48989
|
# @return [Types::ModifyVerifiedAccessTrustProviderResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
48849
48990
|
#
|
@@ -50090,7 +50231,8 @@ module Aws::EC2
|
|
50090
50231
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
50091
50232
|
#
|
50092
50233
|
# @option params [Boolean] :skip_tunnel_replacement
|
50093
|
-
# Choose whether or not to trigger immediate tunnel replacement.
|
50234
|
+
# Choose whether or not to trigger immediate tunnel replacement. This is
|
50235
|
+
# only applicable when turning on or off `EnableTunnelLifecycleControl`.
|
50094
50236
|
#
|
50095
50237
|
# Valid values: `True` \| `False`
|
50096
50238
|
#
|
@@ -52843,8 +52985,8 @@ module Aws::EC2
|
|
52843
52985
|
# min: 1,
|
52844
52986
|
# max: 1,
|
52845
52987
|
# },
|
52846
|
-
# accelerator_manufacturers: ["
|
52847
|
-
# accelerator_names: ["a100"], # accepts a100,
|
52988
|
+
# accelerator_manufacturers: ["amazon-web-services"], # accepts amazon-web-services, amd, nvidia, xilinx
|
52989
|
+
# accelerator_names: ["a100"], # accepts a100, inferentia, k520, k80, m60, radeon-pro-v520, t4, vu9p, v100
|
52848
52990
|
# accelerator_total_memory_mi_b: {
|
52849
52991
|
# min: 1,
|
52850
52992
|
# max: 1,
|
@@ -52912,8 +53054,8 @@ module Aws::EC2
|
|
52912
53054
|
# min: 1,
|
52913
53055
|
# max: 1,
|
52914
53056
|
# },
|
52915
|
-
# accelerator_manufacturers: ["
|
52916
|
-
# accelerator_names: ["a100"], # accepts a100,
|
53057
|
+
# accelerator_manufacturers: ["amazon-web-services"], # accepts amazon-web-services, amd, nvidia, xilinx
|
53058
|
+
# accelerator_names: ["a100"], # accepts a100, inferentia, k520, k80, m60, radeon-pro-v520, t4, vu9p, v100
|
52917
53059
|
# accelerator_total_memory_mi_b: {
|
52918
53060
|
# min: 1,
|
52919
53061
|
# max: 1,
|
@@ -57642,7 +57784,7 @@ module Aws::EC2
|
|
57642
57784
|
params: params,
|
57643
57785
|
config: config)
|
57644
57786
|
context[:gem_name] = 'aws-sdk-ec2'
|
57645
|
-
context[:gem_version] = '1.
|
57787
|
+
context[:gem_version] = '1.420.0'
|
57646
57788
|
Seahorse::Client::Request.new(handlers, context)
|
57647
57789
|
end
|
57648
57790
|
|