aws-sdk-ec2 1.495.0 → 1.496.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 +88 -9
- data/lib/aws-sdk-ec2/client_api.rb +45 -0
- data/lib/aws-sdk-ec2/instance.rb +7 -0
- data/lib/aws-sdk-ec2/placement_group.rb +4 -0
- data/lib/aws-sdk-ec2/resource.rb +10 -7
- data/lib/aws-sdk-ec2/subnet.rb +10 -7
- data/lib/aws-sdk-ec2/types.rb +204 -10
- data/lib/aws-sdk-ec2/vpc.rb +4 -7
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +22 -0
- data/sig/instance.rbs +3 -0
- data/sig/resource.rbs +3 -0
- data/sig/subnet.rbs +3 -0
- data/sig/types.rbs +38 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c92e97516147469d52cbce1367c73f20bdcc5c886b4c4dcf473dac266a078bb1
|
|
4
|
+
data.tar.gz: 1299d09c7467e6529390a1f73d9afc5e15a6d4d57b73aa528766a3225512279e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '0962242f5e81fbf754ef7538cd4b90985a51003fef6f6f7b55a2ef8e7d0d3bbdc0dfd8669ab50623da733790d3eab0ed2c55f3b3a36f96b376929203bc98a5d3'
|
|
7
|
+
data.tar.gz: '049574c4b5fc4b51d82c059cedf12a2500ca31eccd107ed07e1c2d450be44108eaa93fccf2e9937ae8233209456c2a2885abaae544e73e9870f74c809ecc34a2'
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.496.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -9086,6 +9086,9 @@ module Aws::EC2
|
|
|
9086
9086
|
# operator: {
|
|
9087
9087
|
# principal: "String",
|
|
9088
9088
|
# },
|
|
9089
|
+
# network_performance_options: {
|
|
9090
|
+
# bandwidth_weighting: "default", # accepts default, vpc-1, ebs-1
|
|
9091
|
+
# },
|
|
9089
9092
|
# },
|
|
9090
9093
|
# operator: {
|
|
9091
9094
|
# principal: "String",
|
|
@@ -9505,6 +9508,9 @@ module Aws::EC2
|
|
|
9505
9508
|
# operator: {
|
|
9506
9509
|
# principal: "String",
|
|
9507
9510
|
# },
|
|
9511
|
+
# network_performance_options: {
|
|
9512
|
+
# bandwidth_weighting: "default", # accepts default, vpc-1, ebs-1
|
|
9513
|
+
# },
|
|
9508
9514
|
# },
|
|
9509
9515
|
# resolve_alias: false,
|
|
9510
9516
|
# })
|
|
@@ -9671,6 +9677,7 @@ module Aws::EC2
|
|
|
9671
9677
|
# resp.launch_template_version.launch_template_data.disable_api_stop #=> Boolean
|
|
9672
9678
|
# resp.launch_template_version.launch_template_data.operator.managed #=> Boolean
|
|
9673
9679
|
# resp.launch_template_version.launch_template_data.operator.principal #=> String
|
|
9680
|
+
# resp.launch_template_version.launch_template_data.network_performance_options.bandwidth_weighting #=> String, one of "default", "vpc-1", "ebs-1"
|
|
9674
9681
|
# resp.launch_template_version.operator.managed #=> Boolean
|
|
9675
9682
|
# resp.launch_template_version.operator.principal #=> String
|
|
9676
9683
|
# resp.warning.errors #=> Array
|
|
@@ -26357,7 +26364,7 @@ module Aws::EC2
|
|
|
26357
26364
|
# `hpc7g.4xlarge` \| `hpc7g.8xlarge` \| `hpc7g.16xlarge`
|
|
26358
26365
|
#
|
|
26359
26366
|
# * `p3dn.24xlarge` \| `p4d.24xlarge` \| `p4de.24xlarge` \|
|
|
26360
|
-
# `p5.48xlarge` \| `p5e.48xlarge`
|
|
26367
|
+
# `p5.48xlarge` \| `p5e.48xlarge` \| `p5en.48xlarge`
|
|
26361
26368
|
#
|
|
26362
26369
|
# * `trn1.2xlarge` \| `trn1.32xlarge` \| `trn1n.32xlarge`
|
|
26363
26370
|
#
|
|
@@ -26653,6 +26660,10 @@ module Aws::EC2
|
|
|
26653
26660
|
#
|
|
26654
26661
|
# * `memory-info.size-in-mib` - The memory size.
|
|
26655
26662
|
#
|
|
26663
|
+
# * `network-info.bandwidth-weightings` - For instances that support
|
|
26664
|
+
# bandwidth weighting to boost performance (`default`, `vpc-1`,
|
|
26665
|
+
# `ebs-1`).
|
|
26666
|
+
#
|
|
26656
26667
|
# * `network-info.efa-info.maximum-efa-interfaces` - The maximum number
|
|
26657
26668
|
# of Elastic Fabric Adapters (EFAs) per instance.
|
|
26658
26669
|
#
|
|
@@ -26828,6 +26839,8 @@ module Aws::EC2
|
|
|
26828
26839
|
# resp.instance_types[0].network_info.efa_info.maximum_efa_interfaces #=> Integer
|
|
26829
26840
|
# resp.instance_types[0].network_info.encryption_in_transit_supported #=> Boolean
|
|
26830
26841
|
# resp.instance_types[0].network_info.ena_srd_supported #=> Boolean
|
|
26842
|
+
# resp.instance_types[0].network_info.bandwidth_weightings #=> Array
|
|
26843
|
+
# resp.instance_types[0].network_info.bandwidth_weightings[0] #=> String, one of "default", "vpc-1", "ebs-1"
|
|
26831
26844
|
# resp.instance_types[0].gpu_info.gpus #=> Array
|
|
26832
26845
|
# resp.instance_types[0].gpu_info.gpus[0].name #=> String
|
|
26833
26846
|
# resp.instance_types[0].gpu_info.gpus[0].manufacturer #=> String
|
|
@@ -27237,6 +27250,10 @@ module Aws::EC2
|
|
|
27237
27250
|
# * `network-interface.vpc-id` - The ID of the VPC for the network
|
|
27238
27251
|
# interface.
|
|
27239
27252
|
#
|
|
27253
|
+
# * `network-performance-options.bandwidth-weighting` - Where the
|
|
27254
|
+
# performance boost is applied, if applicable. Valid values:
|
|
27255
|
+
# `default`, `vpc-1`, `ebs-1`.
|
|
27256
|
+
#
|
|
27240
27257
|
# * `operator.managed` - A Boolean that indicates whether this is a
|
|
27241
27258
|
# managed instance.
|
|
27242
27259
|
#
|
|
@@ -27598,6 +27615,7 @@ module Aws::EC2
|
|
|
27598
27615
|
# resp.reservations[0].instances[0].tpm_support #=> String
|
|
27599
27616
|
# resp.reservations[0].instances[0].maintenance_options.auto_recovery #=> String, one of "disabled", "default"
|
|
27600
27617
|
# resp.reservations[0].instances[0].current_instance_boot_mode #=> String, one of "legacy-bios", "uefi"
|
|
27618
|
+
# resp.reservations[0].instances[0].network_performance_options.bandwidth_weighting #=> String, one of "default", "vpc-1", "ebs-1"
|
|
27601
27619
|
# resp.reservations[0].instances[0].operator.managed #=> Boolean
|
|
27602
27620
|
# resp.reservations[0].instances[0].operator.principal #=> String
|
|
27603
27621
|
# resp.reservations[0].instances[0].instance_id #=> String
|
|
@@ -28888,6 +28906,7 @@ module Aws::EC2
|
|
|
28888
28906
|
# resp.launch_template_versions[0].launch_template_data.disable_api_stop #=> Boolean
|
|
28889
28907
|
# resp.launch_template_versions[0].launch_template_data.operator.managed #=> Boolean
|
|
28890
28908
|
# resp.launch_template_versions[0].launch_template_data.operator.principal #=> String
|
|
28909
|
+
# resp.launch_template_versions[0].launch_template_data.network_performance_options.bandwidth_weighting #=> String, one of "default", "vpc-1", "ebs-1"
|
|
28891
28910
|
# resp.launch_template_versions[0].operator.managed #=> Boolean
|
|
28892
28911
|
# resp.launch_template_versions[0].operator.principal #=> String
|
|
28893
28912
|
# resp.next_token #=> String
|
|
@@ -31691,13 +31710,6 @@ module Aws::EC2
|
|
|
31691
31710
|
#
|
|
31692
31711
|
# * `network-interface-id` - The ID of the network interface.
|
|
31693
31712
|
#
|
|
31694
|
-
# * `operator.managed` - A Boolean that indicates whether this is a
|
|
31695
|
-
# managed network interface.
|
|
31696
|
-
#
|
|
31697
|
-
# * `operator.principal` - The principal that manages the network
|
|
31698
|
-
# interface. Only valid for managed network interfaces, where
|
|
31699
|
-
# `managed` is `true`.
|
|
31700
|
-
#
|
|
31701
31713
|
# * `owner-id` - The Amazon Web Services account ID of the network
|
|
31702
31714
|
# interface owner.
|
|
31703
31715
|
#
|
|
@@ -45564,6 +45576,7 @@ module Aws::EC2
|
|
|
45564
45576
|
# resp.launch_template_data.disable_api_stop #=> Boolean
|
|
45565
45577
|
# resp.launch_template_data.operator.managed #=> Boolean
|
|
45566
45578
|
# resp.launch_template_data.operator.principal #=> String
|
|
45579
|
+
# resp.launch_template_data.network_performance_options.bandwidth_weighting #=> String, one of "default", "vpc-1", "ebs-1"
|
|
45567
45580
|
#
|
|
45568
45581
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetLaunchTemplateData AWS API Documentation
|
|
45569
45582
|
#
|
|
@@ -50653,6 +50666,64 @@ module Aws::EC2
|
|
|
50653
50666
|
req.send_request(options)
|
|
50654
50667
|
end
|
|
50655
50668
|
|
|
50669
|
+
# Change the configuration of the network performance options for an
|
|
50670
|
+
# existing instance.
|
|
50671
|
+
#
|
|
50672
|
+
# @option params [required, String] :instance_id
|
|
50673
|
+
# The ID of the instance to update.
|
|
50674
|
+
#
|
|
50675
|
+
# @option params [required, String] :bandwidth_weighting
|
|
50676
|
+
# Specify the bandwidth weighting option to boost the associated type of
|
|
50677
|
+
# baseline bandwidth, as follows:
|
|
50678
|
+
#
|
|
50679
|
+
# default
|
|
50680
|
+
#
|
|
50681
|
+
# : This option uses the standard bandwidth configuration for your
|
|
50682
|
+
# instance type.
|
|
50683
|
+
#
|
|
50684
|
+
# vpc-1
|
|
50685
|
+
#
|
|
50686
|
+
# : This option boosts your networking baseline bandwidth and reduces
|
|
50687
|
+
# your EBS baseline bandwidth.
|
|
50688
|
+
#
|
|
50689
|
+
# ebs-1
|
|
50690
|
+
#
|
|
50691
|
+
# : This option boosts your EBS baseline bandwidth and reduces your
|
|
50692
|
+
# networking baseline bandwidth.
|
|
50693
|
+
#
|
|
50694
|
+
# @option params [Boolean] :dry_run
|
|
50695
|
+
# Checks whether you have the required permissions for the operation,
|
|
50696
|
+
# without actually making the request, and provides an error response.
|
|
50697
|
+
# If you have the required permissions, the error response is
|
|
50698
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
50699
|
+
#
|
|
50700
|
+
# @return [Types::ModifyInstanceNetworkPerformanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
50701
|
+
#
|
|
50702
|
+
# * {Types::ModifyInstanceNetworkPerformanceResult#instance_id #instance_id} => String
|
|
50703
|
+
# * {Types::ModifyInstanceNetworkPerformanceResult#bandwidth_weighting #bandwidth_weighting} => String
|
|
50704
|
+
#
|
|
50705
|
+
# @example Request syntax with placeholder values
|
|
50706
|
+
#
|
|
50707
|
+
# resp = client.modify_instance_network_performance_options({
|
|
50708
|
+
# instance_id: "InstanceId", # required
|
|
50709
|
+
# bandwidth_weighting: "default", # required, accepts default, vpc-1, ebs-1
|
|
50710
|
+
# dry_run: false,
|
|
50711
|
+
# })
|
|
50712
|
+
#
|
|
50713
|
+
# @example Response structure
|
|
50714
|
+
#
|
|
50715
|
+
# resp.instance_id #=> String
|
|
50716
|
+
# resp.bandwidth_weighting #=> String, one of "default", "vpc-1", "ebs-1"
|
|
50717
|
+
#
|
|
50718
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyInstanceNetworkPerformanceOptions AWS API Documentation
|
|
50719
|
+
#
|
|
50720
|
+
# @overload modify_instance_network_performance_options(params = {})
|
|
50721
|
+
# @param [Hash] params ({})
|
|
50722
|
+
def modify_instance_network_performance_options(params = {}, options = {})
|
|
50723
|
+
req = build_request(:modify_instance_network_performance_options, params)
|
|
50724
|
+
req.send_request(options)
|
|
50725
|
+
end
|
|
50726
|
+
|
|
50656
50727
|
# Modifies the placement attributes for a specified instance. You can do
|
|
50657
50728
|
# the following:
|
|
50658
50729
|
#
|
|
@@ -59898,6 +59969,10 @@ module Aws::EC2
|
|
|
59898
59969
|
# first IPv6 GUA address associated with the ENI becomes the primary
|
|
59899
59970
|
# IPv6 address.
|
|
59900
59971
|
#
|
|
59972
|
+
# @option params [Types::InstanceNetworkPerformanceOptionsRequest] :network_performance_options
|
|
59973
|
+
# Contains settings for the network performance options for the
|
|
59974
|
+
# instance.
|
|
59975
|
+
#
|
|
59901
59976
|
# @option params [Types::OperatorRequest] :operator
|
|
59902
59977
|
# Reserved for internal use.
|
|
59903
59978
|
#
|
|
@@ -60159,6 +60234,9 @@ module Aws::EC2
|
|
|
60159
60234
|
# },
|
|
60160
60235
|
# disable_api_stop: false,
|
|
60161
60236
|
# enable_primary_ipv_6: false,
|
|
60237
|
+
# network_performance_options: {
|
|
60238
|
+
# bandwidth_weighting: "default", # accepts default, vpc-1, ebs-1
|
|
60239
|
+
# },
|
|
60162
60240
|
# operator: {
|
|
60163
60241
|
# principal: "String",
|
|
60164
60242
|
# },
|
|
@@ -60357,6 +60435,7 @@ module Aws::EC2
|
|
|
60357
60435
|
# resp.instances[0].tpm_support #=> String
|
|
60358
60436
|
# resp.instances[0].maintenance_options.auto_recovery #=> String, one of "disabled", "default"
|
|
60359
60437
|
# resp.instances[0].current_instance_boot_mode #=> String, one of "legacy-bios", "uefi"
|
|
60438
|
+
# resp.instances[0].network_performance_options.bandwidth_weighting #=> String, one of "default", "vpc-1", "ebs-1"
|
|
60360
60439
|
# resp.instances[0].operator.managed #=> Boolean
|
|
60361
60440
|
# resp.instances[0].operator.principal #=> String
|
|
60362
60441
|
# resp.instances[0].instance_id #=> String
|
|
@@ -62992,7 +63071,7 @@ module Aws::EC2
|
|
|
62992
63071
|
tracer: tracer
|
|
62993
63072
|
)
|
|
62994
63073
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
62995
|
-
context[:gem_version] = '1.
|
|
63074
|
+
context[:gem_version] = '1.496.0'
|
|
62996
63075
|
Seahorse::Client::Request.new(handlers, context)
|
|
62997
63076
|
end
|
|
62998
63077
|
|
|
@@ -218,6 +218,8 @@ module Aws::EC2
|
|
|
218
218
|
AvailabilityZoneStringList = Shapes::ListShape.new(name: 'AvailabilityZoneStringList')
|
|
219
219
|
AvailableCapacity = Shapes::StructureShape.new(name: 'AvailableCapacity')
|
|
220
220
|
AvailableInstanceCapacityList = Shapes::ListShape.new(name: 'AvailableInstanceCapacityList')
|
|
221
|
+
BandwidthWeightingType = Shapes::StringShape.new(name: 'BandwidthWeightingType')
|
|
222
|
+
BandwidthWeightingTypeList = Shapes::ListShape.new(name: 'BandwidthWeightingTypeList')
|
|
221
223
|
BareMetal = Shapes::StringShape.new(name: 'BareMetal')
|
|
222
224
|
BareMetalFlag = Shapes::BooleanShape.new(name: 'BareMetalFlag')
|
|
223
225
|
BaselineBandwidthInGbps = Shapes::FloatShape.new(name: 'BaselineBandwidthInGbps')
|
|
@@ -1774,6 +1776,7 @@ module Aws::EC2
|
|
|
1774
1776
|
InstanceAttribute = Shapes::StructureShape.new(name: 'InstanceAttribute')
|
|
1775
1777
|
InstanceAttributeName = Shapes::StringShape.new(name: 'InstanceAttributeName')
|
|
1776
1778
|
InstanceAutoRecoveryState = Shapes::StringShape.new(name: 'InstanceAutoRecoveryState')
|
|
1779
|
+
InstanceBandwidthWeighting = Shapes::StringShape.new(name: 'InstanceBandwidthWeighting')
|
|
1777
1780
|
InstanceBlockDeviceMapping = Shapes::StructureShape.new(name: 'InstanceBlockDeviceMapping')
|
|
1778
1781
|
InstanceBlockDeviceMappingList = Shapes::ListShape.new(name: 'InstanceBlockDeviceMappingList')
|
|
1779
1782
|
InstanceBlockDeviceMappingSpecification = Shapes::StructureShape.new(name: 'InstanceBlockDeviceMappingSpecification')
|
|
@@ -1849,6 +1852,8 @@ module Aws::EC2
|
|
|
1849
1852
|
InstanceNetworkInterfaceList = Shapes::ListShape.new(name: 'InstanceNetworkInterfaceList')
|
|
1850
1853
|
InstanceNetworkInterfaceSpecification = Shapes::StructureShape.new(name: 'InstanceNetworkInterfaceSpecification')
|
|
1851
1854
|
InstanceNetworkInterfaceSpecificationList = Shapes::ListShape.new(name: 'InstanceNetworkInterfaceSpecificationList')
|
|
1855
|
+
InstanceNetworkPerformanceOptions = Shapes::StructureShape.new(name: 'InstanceNetworkPerformanceOptions')
|
|
1856
|
+
InstanceNetworkPerformanceOptionsRequest = Shapes::StructureShape.new(name: 'InstanceNetworkPerformanceOptionsRequest')
|
|
1852
1857
|
InstancePrivateIpAddress = Shapes::StructureShape.new(name: 'InstancePrivateIpAddress')
|
|
1853
1858
|
InstancePrivateIpAddressList = Shapes::ListShape.new(name: 'InstancePrivateIpAddressList')
|
|
1854
1859
|
InstanceRequirements = Shapes::StructureShape.new(name: 'InstanceRequirements')
|
|
@@ -2092,6 +2097,8 @@ module Aws::EC2
|
|
|
2092
2097
|
LaunchTemplateLicenseSpecificationListRequest = Shapes::ListShape.new(name: 'LaunchTemplateLicenseSpecificationListRequest')
|
|
2093
2098
|
LaunchTemplateName = Shapes::StringShape.new(name: 'LaunchTemplateName')
|
|
2094
2099
|
LaunchTemplateNameStringList = Shapes::ListShape.new(name: 'LaunchTemplateNameStringList')
|
|
2100
|
+
LaunchTemplateNetworkPerformanceOptions = Shapes::StructureShape.new(name: 'LaunchTemplateNetworkPerformanceOptions')
|
|
2101
|
+
LaunchTemplateNetworkPerformanceOptionsRequest = Shapes::StructureShape.new(name: 'LaunchTemplateNetworkPerformanceOptionsRequest')
|
|
2095
2102
|
LaunchTemplateOverrides = Shapes::StructureShape.new(name: 'LaunchTemplateOverrides')
|
|
2096
2103
|
LaunchTemplateOverridesList = Shapes::ListShape.new(name: 'LaunchTemplateOverridesList')
|
|
2097
2104
|
LaunchTemplatePlacement = Shapes::StructureShape.new(name: 'LaunchTemplatePlacement')
|
|
@@ -2251,6 +2258,8 @@ module Aws::EC2
|
|
|
2251
2258
|
ModifyInstanceMetadataDefaultsResult = Shapes::StructureShape.new(name: 'ModifyInstanceMetadataDefaultsResult')
|
|
2252
2259
|
ModifyInstanceMetadataOptionsRequest = Shapes::StructureShape.new(name: 'ModifyInstanceMetadataOptionsRequest')
|
|
2253
2260
|
ModifyInstanceMetadataOptionsResult = Shapes::StructureShape.new(name: 'ModifyInstanceMetadataOptionsResult')
|
|
2261
|
+
ModifyInstanceNetworkPerformanceRequest = Shapes::StructureShape.new(name: 'ModifyInstanceNetworkPerformanceRequest')
|
|
2262
|
+
ModifyInstanceNetworkPerformanceResult = Shapes::StructureShape.new(name: 'ModifyInstanceNetworkPerformanceResult')
|
|
2254
2263
|
ModifyInstancePlacementRequest = Shapes::StructureShape.new(name: 'ModifyInstancePlacementRequest')
|
|
2255
2264
|
ModifyInstancePlacementResult = Shapes::StructureShape.new(name: 'ModifyInstancePlacementResult')
|
|
2256
2265
|
ModifyIpamPoolRequest = Shapes::StructureShape.new(name: 'ModifyIpamPoolRequest')
|
|
@@ -4158,6 +4167,8 @@ module Aws::EC2
|
|
|
4158
4167
|
|
|
4159
4168
|
AvailableInstanceCapacityList.member = Shapes::ShapeRef.new(shape: InstanceCapacity, location_name: "item")
|
|
4160
4169
|
|
|
4170
|
+
BandwidthWeightingTypeList.member = Shapes::ShapeRef.new(shape: BandwidthWeightingType, location_name: "item")
|
|
4171
|
+
|
|
4161
4172
|
BaselineEbsBandwidthMbps.add_member(:min, Shapes::ShapeRef.new(shape: Integer, location_name: "min"))
|
|
4162
4173
|
BaselineEbsBandwidthMbps.add_member(:max, Shapes::ShapeRef.new(shape: Integer, location_name: "max"))
|
|
4163
4174
|
BaselineEbsBandwidthMbps.struct_class = Types::BaselineEbsBandwidthMbps
|
|
@@ -10600,6 +10611,7 @@ module Aws::EC2
|
|
|
10600
10611
|
Instance.add_member(:tpm_support, Shapes::ShapeRef.new(shape: String, location_name: "tpmSupport"))
|
|
10601
10612
|
Instance.add_member(:maintenance_options, Shapes::ShapeRef.new(shape: InstanceMaintenanceOptions, location_name: "maintenanceOptions"))
|
|
10602
10613
|
Instance.add_member(:current_instance_boot_mode, Shapes::ShapeRef.new(shape: InstanceBootModeValues, location_name: "currentInstanceBootMode"))
|
|
10614
|
+
Instance.add_member(:network_performance_options, Shapes::ShapeRef.new(shape: InstanceNetworkPerformanceOptions, location_name: "networkPerformanceOptions"))
|
|
10603
10615
|
Instance.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorResponse, location_name: "operator"))
|
|
10604
10616
|
Instance.add_member(:instance_id, Shapes::ShapeRef.new(shape: String, location_name: "instanceId"))
|
|
10605
10617
|
Instance.add_member(:image_id, Shapes::ShapeRef.new(shape: String, location_name: "imageId"))
|
|
@@ -10896,6 +10908,12 @@ module Aws::EC2
|
|
|
10896
10908
|
|
|
10897
10909
|
InstanceNetworkInterfaceSpecificationList.member = Shapes::ShapeRef.new(shape: InstanceNetworkInterfaceSpecification, location_name: "item")
|
|
10898
10910
|
|
|
10911
|
+
InstanceNetworkPerformanceOptions.add_member(:bandwidth_weighting, Shapes::ShapeRef.new(shape: InstanceBandwidthWeighting, location_name: "bandwidthWeighting"))
|
|
10912
|
+
InstanceNetworkPerformanceOptions.struct_class = Types::InstanceNetworkPerformanceOptions
|
|
10913
|
+
|
|
10914
|
+
InstanceNetworkPerformanceOptionsRequest.add_member(:bandwidth_weighting, Shapes::ShapeRef.new(shape: InstanceBandwidthWeighting, location_name: "BandwidthWeighting"))
|
|
10915
|
+
InstanceNetworkPerformanceOptionsRequest.struct_class = Types::InstanceNetworkPerformanceOptionsRequest
|
|
10916
|
+
|
|
10899
10917
|
InstancePrivateIpAddress.add_member(:association, Shapes::ShapeRef.new(shape: InstanceNetworkInterfaceAssociation, location_name: "association"))
|
|
10900
10918
|
InstancePrivateIpAddress.add_member(:primary, Shapes::ShapeRef.new(shape: Boolean, location_name: "primary"))
|
|
10901
10919
|
InstancePrivateIpAddress.add_member(:private_dns_name, Shapes::ShapeRef.new(shape: String, location_name: "privateDnsName"))
|
|
@@ -11734,6 +11752,12 @@ module Aws::EC2
|
|
|
11734
11752
|
|
|
11735
11753
|
LaunchTemplateNameStringList.member = Shapes::ShapeRef.new(shape: LaunchTemplateName, location_name: "item")
|
|
11736
11754
|
|
|
11755
|
+
LaunchTemplateNetworkPerformanceOptions.add_member(:bandwidth_weighting, Shapes::ShapeRef.new(shape: InstanceBandwidthWeighting, location_name: "bandwidthWeighting"))
|
|
11756
|
+
LaunchTemplateNetworkPerformanceOptions.struct_class = Types::LaunchTemplateNetworkPerformanceOptions
|
|
11757
|
+
|
|
11758
|
+
LaunchTemplateNetworkPerformanceOptionsRequest.add_member(:bandwidth_weighting, Shapes::ShapeRef.new(shape: InstanceBandwidthWeighting, location_name: "BandwidthWeighting"))
|
|
11759
|
+
LaunchTemplateNetworkPerformanceOptionsRequest.struct_class = Types::LaunchTemplateNetworkPerformanceOptionsRequest
|
|
11760
|
+
|
|
11737
11761
|
LaunchTemplateOverrides.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, location_name: "instanceType"))
|
|
11738
11762
|
LaunchTemplateOverrides.add_member(:spot_price, Shapes::ShapeRef.new(shape: String, location_name: "spotPrice"))
|
|
11739
11763
|
LaunchTemplateOverrides.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, location_name: "subnetId"))
|
|
@@ -12309,6 +12333,15 @@ module Aws::EC2
|
|
|
12309
12333
|
ModifyInstanceMetadataOptionsResult.add_member(:instance_metadata_options, Shapes::ShapeRef.new(shape: InstanceMetadataOptionsResponse, location_name: "instanceMetadataOptions"))
|
|
12310
12334
|
ModifyInstanceMetadataOptionsResult.struct_class = Types::ModifyInstanceMetadataOptionsResult
|
|
12311
12335
|
|
|
12336
|
+
ModifyInstanceNetworkPerformanceRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
|
12337
|
+
ModifyInstanceNetworkPerformanceRequest.add_member(:bandwidth_weighting, Shapes::ShapeRef.new(shape: InstanceBandwidthWeighting, required: true, location_name: "BandwidthWeighting"))
|
|
12338
|
+
ModifyInstanceNetworkPerformanceRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
|
12339
|
+
ModifyInstanceNetworkPerformanceRequest.struct_class = Types::ModifyInstanceNetworkPerformanceRequest
|
|
12340
|
+
|
|
12341
|
+
ModifyInstanceNetworkPerformanceResult.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "instanceId"))
|
|
12342
|
+
ModifyInstanceNetworkPerformanceResult.add_member(:bandwidth_weighting, Shapes::ShapeRef.new(shape: InstanceBandwidthWeighting, location_name: "bandwidthWeighting"))
|
|
12343
|
+
ModifyInstanceNetworkPerformanceResult.struct_class = Types::ModifyInstanceNetworkPerformanceResult
|
|
12344
|
+
|
|
12312
12345
|
ModifyInstancePlacementRequest.add_member(:group_name, Shapes::ShapeRef.new(shape: PlacementGroupName, location_name: "GroupName"))
|
|
12313
12346
|
ModifyInstancePlacementRequest.add_member(:partition_number, Shapes::ShapeRef.new(shape: Integer, location_name: "PartitionNumber"))
|
|
12314
12347
|
ModifyInstancePlacementRequest.add_member(:host_resource_group_arn, Shapes::ShapeRef.new(shape: String, location_name: "HostResourceGroupArn"))
|
|
@@ -13040,6 +13073,7 @@ module Aws::EC2
|
|
|
13040
13073
|
NetworkInfo.add_member(:efa_info, Shapes::ShapeRef.new(shape: EfaInfo, location_name: "efaInfo"))
|
|
13041
13074
|
NetworkInfo.add_member(:encryption_in_transit_supported, Shapes::ShapeRef.new(shape: EncryptionInTransitSupported, location_name: "encryptionInTransitSupported"))
|
|
13042
13075
|
NetworkInfo.add_member(:ena_srd_supported, Shapes::ShapeRef.new(shape: EnaSrdSupported, location_name: "enaSrdSupported"))
|
|
13076
|
+
NetworkInfo.add_member(:bandwidth_weightings, Shapes::ShapeRef.new(shape: BandwidthWeightingTypeList, location_name: "bandwidthWeightings"))
|
|
13043
13077
|
NetworkInfo.struct_class = Types::NetworkInfo
|
|
13044
13078
|
|
|
13045
13079
|
NetworkInsightsAccessScope.add_member(:network_insights_access_scope_id, Shapes::ShapeRef.new(shape: NetworkInsightsAccessScopeId, location_name: "networkInsightsAccessScopeId"))
|
|
@@ -14085,6 +14119,7 @@ module Aws::EC2
|
|
|
14085
14119
|
RequestLaunchTemplateData.add_member(:maintenance_options, Shapes::ShapeRef.new(shape: LaunchTemplateInstanceMaintenanceOptionsRequest, location_name: "MaintenanceOptions"))
|
|
14086
14120
|
RequestLaunchTemplateData.add_member(:disable_api_stop, Shapes::ShapeRef.new(shape: Boolean, location_name: "DisableApiStop"))
|
|
14087
14121
|
RequestLaunchTemplateData.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorRequest, location_name: "Operator"))
|
|
14122
|
+
RequestLaunchTemplateData.add_member(:network_performance_options, Shapes::ShapeRef.new(shape: LaunchTemplateNetworkPerformanceOptionsRequest, location_name: "NetworkPerformanceOptions"))
|
|
14088
14123
|
RequestLaunchTemplateData.struct_class = Types::RequestLaunchTemplateData
|
|
14089
14124
|
|
|
14090
14125
|
RequestSpotFleetRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
|
@@ -14359,6 +14394,7 @@ module Aws::EC2
|
|
|
14359
14394
|
ResponseLaunchTemplateData.add_member(:maintenance_options, Shapes::ShapeRef.new(shape: LaunchTemplateInstanceMaintenanceOptions, location_name: "maintenanceOptions"))
|
|
14360
14395
|
ResponseLaunchTemplateData.add_member(:disable_api_stop, Shapes::ShapeRef.new(shape: Boolean, location_name: "disableApiStop"))
|
|
14361
14396
|
ResponseLaunchTemplateData.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorResponse, location_name: "operator"))
|
|
14397
|
+
ResponseLaunchTemplateData.add_member(:network_performance_options, Shapes::ShapeRef.new(shape: LaunchTemplateNetworkPerformanceOptions, location_name: "networkPerformanceOptions"))
|
|
14362
14398
|
ResponseLaunchTemplateData.struct_class = Types::ResponseLaunchTemplateData
|
|
14363
14399
|
|
|
14364
14400
|
RestorableByStringList.member = Shapes::ShapeRef.new(shape: String)
|
|
@@ -14578,6 +14614,7 @@ module Aws::EC2
|
|
|
14578
14614
|
RunInstancesRequest.add_member(:maintenance_options, Shapes::ShapeRef.new(shape: InstanceMaintenanceOptionsRequest, location_name: "MaintenanceOptions"))
|
|
14579
14615
|
RunInstancesRequest.add_member(:disable_api_stop, Shapes::ShapeRef.new(shape: Boolean, location_name: "DisableApiStop"))
|
|
14580
14616
|
RunInstancesRequest.add_member(:enable_primary_ipv_6, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnablePrimaryIpv6"))
|
|
14617
|
+
RunInstancesRequest.add_member(:network_performance_options, Shapes::ShapeRef.new(shape: InstanceNetworkPerformanceOptionsRequest, location_name: "NetworkPerformanceOptions"))
|
|
14581
14618
|
RunInstancesRequest.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorRequest, location_name: "Operator"))
|
|
14582
14619
|
RunInstancesRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
|
14583
14620
|
RunInstancesRequest.add_member(:disable_api_termination, Shapes::ShapeRef.new(shape: Boolean, location_name: "disableApiTermination"))
|
|
@@ -21912,6 +21949,14 @@ module Aws::EC2
|
|
|
21912
21949
|
o.output = Shapes::ShapeRef.new(shape: ModifyInstanceMetadataOptionsResult)
|
|
21913
21950
|
end)
|
|
21914
21951
|
|
|
21952
|
+
api.add_operation(:modify_instance_network_performance_options, Seahorse::Model::Operation.new.tap do |o|
|
|
21953
|
+
o.name = "ModifyInstanceNetworkPerformanceOptions"
|
|
21954
|
+
o.http_method = "POST"
|
|
21955
|
+
o.http_request_uri = "/"
|
|
21956
|
+
o.input = Shapes::ShapeRef.new(shape: ModifyInstanceNetworkPerformanceRequest)
|
|
21957
|
+
o.output = Shapes::ShapeRef.new(shape: ModifyInstanceNetworkPerformanceResult)
|
|
21958
|
+
end)
|
|
21959
|
+
|
|
21915
21960
|
api.add_operation(:modify_instance_placement, Seahorse::Model::Operation.new.tap do |o|
|
|
21916
21961
|
o.name = "ModifyInstancePlacement"
|
|
21917
21962
|
o.http_method = "POST"
|
data/lib/aws-sdk-ec2/instance.rb
CHANGED
|
@@ -306,6 +306,13 @@ module Aws::EC2
|
|
|
306
306
|
data[:current_instance_boot_mode]
|
|
307
307
|
end
|
|
308
308
|
|
|
309
|
+
# Contains settings for the network performance options for your
|
|
310
|
+
# instance.
|
|
311
|
+
# @return [Types::InstanceNetworkPerformanceOptions]
|
|
312
|
+
def network_performance_options
|
|
313
|
+
data[:network_performance_options]
|
|
314
|
+
end
|
|
315
|
+
|
|
309
316
|
# The service provider that manages the instance.
|
|
310
317
|
# @return [Types::OperatorResponse]
|
|
311
318
|
def operator
|
|
@@ -572,6 +572,10 @@ module Aws::EC2
|
|
|
572
572
|
# * `network-interface.vpc-id` - The ID of the VPC for the network
|
|
573
573
|
# interface.
|
|
574
574
|
#
|
|
575
|
+
# * `network-performance-options.bandwidth-weighting` - Where the
|
|
576
|
+
# performance boost is applied, if applicable. Valid values:
|
|
577
|
+
# `default`, `vpc-1`, `ebs-1`.
|
|
578
|
+
#
|
|
575
579
|
# * `operator.managed` - A Boolean that indicates whether this is a
|
|
576
580
|
# managed instance.
|
|
577
581
|
#
|
data/lib/aws-sdk-ec2/resource.rb
CHANGED
|
@@ -212,6 +212,9 @@ module Aws::EC2
|
|
|
212
212
|
# },
|
|
213
213
|
# disable_api_stop: false,
|
|
214
214
|
# enable_primary_ipv_6: false,
|
|
215
|
+
# network_performance_options: {
|
|
216
|
+
# bandwidth_weighting: "default", # accepts default, vpc-1, ebs-1
|
|
217
|
+
# },
|
|
215
218
|
# operator: {
|
|
216
219
|
# principal: "String",
|
|
217
220
|
# },
|
|
@@ -547,6 +550,9 @@ module Aws::EC2
|
|
|
547
550
|
# attached to your instance and you enable a primary IPv6 address, the
|
|
548
551
|
# first IPv6 GUA address associated with the ENI becomes the primary
|
|
549
552
|
# IPv6 address.
|
|
553
|
+
# @option options [Types::InstanceNetworkPerformanceOptionsRequest] :network_performance_options
|
|
554
|
+
# Contains settings for the network performance options for the
|
|
555
|
+
# instance.
|
|
550
556
|
# @option options [Types::OperatorRequest] :operator
|
|
551
557
|
# Reserved for internal use.
|
|
552
558
|
# @option options [Boolean] :dry_run
|
|
@@ -2772,6 +2778,10 @@ module Aws::EC2
|
|
|
2772
2778
|
# * `network-interface.vpc-id` - The ID of the VPC for the network
|
|
2773
2779
|
# interface.
|
|
2774
2780
|
#
|
|
2781
|
+
# * `network-performance-options.bandwidth-weighting` - Where the
|
|
2782
|
+
# performance boost is applied, if applicable. Valid values:
|
|
2783
|
+
# `default`, `vpc-1`, `ebs-1`.
|
|
2784
|
+
#
|
|
2775
2785
|
# * `operator.managed` - A Boolean that indicates whether this is a
|
|
2776
2786
|
# managed instance.
|
|
2777
2787
|
#
|
|
@@ -3358,13 +3368,6 @@ module Aws::EC2
|
|
|
3358
3368
|
#
|
|
3359
3369
|
# * `network-interface-id` - The ID of the network interface.
|
|
3360
3370
|
#
|
|
3361
|
-
# * `operator.managed` - A Boolean that indicates whether this is a
|
|
3362
|
-
# managed network interface.
|
|
3363
|
-
#
|
|
3364
|
-
# * `operator.principal` - The principal that manages the network
|
|
3365
|
-
# interface. Only valid for managed network interfaces, where
|
|
3366
|
-
# `managed` is `true`.
|
|
3367
|
-
#
|
|
3368
3371
|
# * `owner-id` - The Amazon Web Services account ID of the network
|
|
3369
3372
|
# interface owner.
|
|
3370
3373
|
#
|
data/lib/aws-sdk-ec2/subnet.rb
CHANGED
|
@@ -453,6 +453,9 @@ module Aws::EC2
|
|
|
453
453
|
# },
|
|
454
454
|
# disable_api_stop: false,
|
|
455
455
|
# enable_primary_ipv_6: false,
|
|
456
|
+
# network_performance_options: {
|
|
457
|
+
# bandwidth_weighting: "default", # accepts default, vpc-1, ebs-1
|
|
458
|
+
# },
|
|
456
459
|
# operator: {
|
|
457
460
|
# principal: "String",
|
|
458
461
|
# },
|
|
@@ -783,6 +786,9 @@ module Aws::EC2
|
|
|
783
786
|
# attached to your instance and you enable a primary IPv6 address, the
|
|
784
787
|
# first IPv6 GUA address associated with the ENI becomes the primary
|
|
785
788
|
# IPv6 address.
|
|
789
|
+
# @option options [Types::InstanceNetworkPerformanceOptionsRequest] :network_performance_options
|
|
790
|
+
# Contains settings for the network performance options for the
|
|
791
|
+
# instance.
|
|
786
792
|
# @option options [Types::OperatorRequest] :operator
|
|
787
793
|
# Reserved for internal use.
|
|
788
794
|
# @option options [Boolean] :dry_run
|
|
@@ -1490,6 +1496,10 @@ module Aws::EC2
|
|
|
1490
1496
|
# * `network-interface.vpc-id` - The ID of the VPC for the network
|
|
1491
1497
|
# interface.
|
|
1492
1498
|
#
|
|
1499
|
+
# * `network-performance-options.bandwidth-weighting` - Where the
|
|
1500
|
+
# performance boost is applied, if applicable. Valid values:
|
|
1501
|
+
# `default`, `vpc-1`, `ebs-1`.
|
|
1502
|
+
#
|
|
1493
1503
|
# * `operator.managed` - A Boolean that indicates whether this is a
|
|
1494
1504
|
# managed instance.
|
|
1495
1505
|
#
|
|
@@ -1808,13 +1818,6 @@ module Aws::EC2
|
|
|
1808
1818
|
#
|
|
1809
1819
|
# * `network-interface-id` - The ID of the network interface.
|
|
1810
1820
|
#
|
|
1811
|
-
# * `operator.managed` - A Boolean that indicates whether this is a
|
|
1812
|
-
# managed network interface.
|
|
1813
|
-
#
|
|
1814
|
-
# * `operator.principal` - The principal that manages the network
|
|
1815
|
-
# interface. Only valid for managed network interfaces, where
|
|
1816
|
-
# `managed` is `true`.
|
|
1817
|
-
#
|
|
1818
1821
|
# * `owner-id` - The Amazon Web Services account ID of the network
|
|
1819
1822
|
# interface owner.
|
|
1820
1823
|
#
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -22027,6 +22027,10 @@ module Aws::EC2
|
|
|
22027
22027
|
#
|
|
22028
22028
|
# * `memory-info.size-in-mib` - The memory size.
|
|
22029
22029
|
#
|
|
22030
|
+
# * `network-info.bandwidth-weightings` - For instances that support
|
|
22031
|
+
# bandwidth weighting to boost performance (`default`, `vpc-1`,
|
|
22032
|
+
# `ebs-1`).
|
|
22033
|
+
#
|
|
22030
22034
|
# * `network-info.efa-info.maximum-efa-interfaces` - The maximum
|
|
22031
22035
|
# number of Elastic Fabric Adapters (EFAs) per instance.
|
|
22032
22036
|
#
|
|
@@ -22482,6 +22486,10 @@ module Aws::EC2
|
|
|
22482
22486
|
# * `network-interface.vpc-id` - The ID of the VPC for the network
|
|
22483
22487
|
# interface.
|
|
22484
22488
|
#
|
|
22489
|
+
# * `network-performance-options.bandwidth-weighting` - Where the
|
|
22490
|
+
# performance boost is applied, if applicable. Valid values:
|
|
22491
|
+
# `default`, `vpc-1`, `ebs-1`.
|
|
22492
|
+
#
|
|
22485
22493
|
# * `operator.managed` - A Boolean that indicates whether this is a
|
|
22486
22494
|
# managed instance.
|
|
22487
22495
|
#
|
|
@@ -24917,13 +24925,6 @@ module Aws::EC2
|
|
|
24917
24925
|
#
|
|
24918
24926
|
# * `network-interface-id` - The ID of the network interface.
|
|
24919
24927
|
#
|
|
24920
|
-
# * `operator.managed` - A Boolean that indicates whether this is a
|
|
24921
|
-
# managed network interface.
|
|
24922
|
-
#
|
|
24923
|
-
# * `operator.principal` - The principal that manages the network
|
|
24924
|
-
# interface. Only valid for managed network interfaces, where
|
|
24925
|
-
# `managed` is `true`.
|
|
24926
|
-
#
|
|
24927
24928
|
# * `owner-id` - The Amazon Web Services account ID of the network
|
|
24928
24929
|
# interface owner.
|
|
24929
24930
|
#
|
|
@@ -41939,6 +41940,11 @@ module Aws::EC2
|
|
|
41939
41940
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ami-boot.html
|
|
41940
41941
|
# @return [String]
|
|
41941
41942
|
#
|
|
41943
|
+
# @!attribute [rw] network_performance_options
|
|
41944
|
+
# Contains settings for the network performance options for your
|
|
41945
|
+
# instance.
|
|
41946
|
+
# @return [Types::InstanceNetworkPerformanceOptions]
|
|
41947
|
+
#
|
|
41942
41948
|
# @!attribute [rw] operator
|
|
41943
41949
|
# The service provider that manages the instance.
|
|
41944
41950
|
# @return [Types::OperatorResponse]
|
|
@@ -42085,6 +42091,7 @@ module Aws::EC2
|
|
|
42085
42091
|
:tpm_support,
|
|
42086
42092
|
:maintenance_options,
|
|
42087
42093
|
:current_instance_boot_mode,
|
|
42094
|
+
:network_performance_options,
|
|
42088
42095
|
:operator,
|
|
42089
42096
|
:instance_id,
|
|
42090
42097
|
:image_id,
|
|
@@ -43490,6 +43497,58 @@ module Aws::EC2
|
|
|
43490
43497
|
include Aws::Structure
|
|
43491
43498
|
end
|
|
43492
43499
|
|
|
43500
|
+
# With network performance options, you can adjust your bandwidth
|
|
43501
|
+
# preferences to meet the needs of the workload that runs on your
|
|
43502
|
+
# instance.
|
|
43503
|
+
#
|
|
43504
|
+
# @!attribute [rw] bandwidth_weighting
|
|
43505
|
+
# When you configure network bandwidth weighting, you can boost your
|
|
43506
|
+
# baseline bandwidth for either networking or EBS by up to 25%. The
|
|
43507
|
+
# total available baseline bandwidth for your instance remains the
|
|
43508
|
+
# same. The default option uses the standard bandwidth configuration
|
|
43509
|
+
# for your instance type.
|
|
43510
|
+
# @return [String]
|
|
43511
|
+
#
|
|
43512
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceNetworkPerformanceOptions AWS API Documentation
|
|
43513
|
+
#
|
|
43514
|
+
class InstanceNetworkPerformanceOptions < Struct.new(
|
|
43515
|
+
:bandwidth_weighting)
|
|
43516
|
+
SENSITIVE = []
|
|
43517
|
+
include Aws::Structure
|
|
43518
|
+
end
|
|
43519
|
+
|
|
43520
|
+
# Configure network performance options for your instance that are
|
|
43521
|
+
# geared towards performance improvements based on the workload that it
|
|
43522
|
+
# runs.
|
|
43523
|
+
#
|
|
43524
|
+
# @!attribute [rw] bandwidth_weighting
|
|
43525
|
+
# Specify the bandwidth weighting option to boost the associated type
|
|
43526
|
+
# of baseline bandwidth, as follows:
|
|
43527
|
+
#
|
|
43528
|
+
# default
|
|
43529
|
+
#
|
|
43530
|
+
# : This option uses the standard bandwidth configuration for your
|
|
43531
|
+
# instance type.
|
|
43532
|
+
#
|
|
43533
|
+
# vpc-1
|
|
43534
|
+
#
|
|
43535
|
+
# : This option boosts your networking baseline bandwidth and reduces
|
|
43536
|
+
# your EBS baseline bandwidth.
|
|
43537
|
+
#
|
|
43538
|
+
# ebs-1
|
|
43539
|
+
#
|
|
43540
|
+
# : This option boosts your EBS baseline bandwidth and reduces your
|
|
43541
|
+
# networking baseline bandwidth.
|
|
43542
|
+
# @return [String]
|
|
43543
|
+
#
|
|
43544
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceNetworkPerformanceOptionsRequest AWS API Documentation
|
|
43545
|
+
#
|
|
43546
|
+
class InstanceNetworkPerformanceOptionsRequest < Struct.new(
|
|
43547
|
+
:bandwidth_weighting)
|
|
43548
|
+
SENSITIVE = []
|
|
43549
|
+
include Aws::Structure
|
|
43550
|
+
end
|
|
43551
|
+
|
|
43493
43552
|
# Describes a private IPv4 address.
|
|
43494
43553
|
#
|
|
43495
43554
|
# @!attribute [rw] association
|
|
@@ -48507,6 +48566,58 @@ module Aws::EC2
|
|
|
48507
48566
|
include Aws::Structure
|
|
48508
48567
|
end
|
|
48509
48568
|
|
|
48569
|
+
# With network performance options, you can adjust your bandwidth
|
|
48570
|
+
# preferences to meet the needs of the workload that runs on your
|
|
48571
|
+
# instance at launch.
|
|
48572
|
+
#
|
|
48573
|
+
# @!attribute [rw] bandwidth_weighting
|
|
48574
|
+
# When you configure network bandwidth weighting, you can boost
|
|
48575
|
+
# baseline bandwidth for either networking or EBS by up to 25%. The
|
|
48576
|
+
# total available baseline bandwidth for your instance remains the
|
|
48577
|
+
# same. The default option uses the standard bandwidth configuration
|
|
48578
|
+
# for your instance type.
|
|
48579
|
+
# @return [String]
|
|
48580
|
+
#
|
|
48581
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateNetworkPerformanceOptions AWS API Documentation
|
|
48582
|
+
#
|
|
48583
|
+
class LaunchTemplateNetworkPerformanceOptions < Struct.new(
|
|
48584
|
+
:bandwidth_weighting)
|
|
48585
|
+
SENSITIVE = []
|
|
48586
|
+
include Aws::Structure
|
|
48587
|
+
end
|
|
48588
|
+
|
|
48589
|
+
# When you configure network performance options in your launch
|
|
48590
|
+
# template, your instance is geared for performance improvements based
|
|
48591
|
+
# on the workload that it runs as soon as it's available.
|
|
48592
|
+
#
|
|
48593
|
+
# @!attribute [rw] bandwidth_weighting
|
|
48594
|
+
# Specify the bandwidth weighting option to boost the associated type
|
|
48595
|
+
# of baseline bandwidth, as follows:
|
|
48596
|
+
#
|
|
48597
|
+
# default
|
|
48598
|
+
#
|
|
48599
|
+
# : This option uses the standard bandwidth configuration for your
|
|
48600
|
+
# instance type.
|
|
48601
|
+
#
|
|
48602
|
+
# vpc-1
|
|
48603
|
+
#
|
|
48604
|
+
# : This option boosts your networking baseline bandwidth and reduces
|
|
48605
|
+
# your EBS baseline bandwidth.
|
|
48606
|
+
#
|
|
48607
|
+
# ebs-1
|
|
48608
|
+
#
|
|
48609
|
+
# : This option boosts your EBS baseline bandwidth and reduces your
|
|
48610
|
+
# networking baseline bandwidth.
|
|
48611
|
+
# @return [String]
|
|
48612
|
+
#
|
|
48613
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateNetworkPerformanceOptionsRequest AWS API Documentation
|
|
48614
|
+
#
|
|
48615
|
+
class LaunchTemplateNetworkPerformanceOptionsRequest < Struct.new(
|
|
48616
|
+
:bandwidth_weighting)
|
|
48617
|
+
SENSITIVE = []
|
|
48618
|
+
include Aws::Structure
|
|
48619
|
+
end
|
|
48620
|
+
|
|
48510
48621
|
# Describes overrides for a launch template.
|
|
48511
48622
|
#
|
|
48512
48623
|
# @!attribute [rw] instance_type
|
|
@@ -51664,6 +51775,65 @@ module Aws::EC2
|
|
|
51664
51775
|
include Aws::Structure
|
|
51665
51776
|
end
|
|
51666
51777
|
|
|
51778
|
+
# @!attribute [rw] instance_id
|
|
51779
|
+
# The ID of the instance to update.
|
|
51780
|
+
# @return [String]
|
|
51781
|
+
#
|
|
51782
|
+
# @!attribute [rw] bandwidth_weighting
|
|
51783
|
+
# Specify the bandwidth weighting option to boost the associated type
|
|
51784
|
+
# of baseline bandwidth, as follows:
|
|
51785
|
+
#
|
|
51786
|
+
# default
|
|
51787
|
+
#
|
|
51788
|
+
# : This option uses the standard bandwidth configuration for your
|
|
51789
|
+
# instance type.
|
|
51790
|
+
#
|
|
51791
|
+
# vpc-1
|
|
51792
|
+
#
|
|
51793
|
+
# : This option boosts your networking baseline bandwidth and reduces
|
|
51794
|
+
# your EBS baseline bandwidth.
|
|
51795
|
+
#
|
|
51796
|
+
# ebs-1
|
|
51797
|
+
#
|
|
51798
|
+
# : This option boosts your EBS baseline bandwidth and reduces your
|
|
51799
|
+
# networking baseline bandwidth.
|
|
51800
|
+
# @return [String]
|
|
51801
|
+
#
|
|
51802
|
+
# @!attribute [rw] dry_run
|
|
51803
|
+
# Checks whether you have the required permissions for the operation,
|
|
51804
|
+
# without actually making the request, and provides an error response.
|
|
51805
|
+
# If you have the required permissions, the error response is
|
|
51806
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
51807
|
+
# @return [Boolean]
|
|
51808
|
+
#
|
|
51809
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyInstanceNetworkPerformanceRequest AWS API Documentation
|
|
51810
|
+
#
|
|
51811
|
+
class ModifyInstanceNetworkPerformanceRequest < Struct.new(
|
|
51812
|
+
:instance_id,
|
|
51813
|
+
:bandwidth_weighting,
|
|
51814
|
+
:dry_run)
|
|
51815
|
+
SENSITIVE = []
|
|
51816
|
+
include Aws::Structure
|
|
51817
|
+
end
|
|
51818
|
+
|
|
51819
|
+
# @!attribute [rw] instance_id
|
|
51820
|
+
# The instance ID that was updated.
|
|
51821
|
+
# @return [String]
|
|
51822
|
+
#
|
|
51823
|
+
# @!attribute [rw] bandwidth_weighting
|
|
51824
|
+
# Contains the updated configuration for bandwidth weighting on the
|
|
51825
|
+
# specified instance.
|
|
51826
|
+
# @return [String]
|
|
51827
|
+
#
|
|
51828
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyInstanceNetworkPerformanceResult AWS API Documentation
|
|
51829
|
+
#
|
|
51830
|
+
class ModifyInstanceNetworkPerformanceResult < Struct.new(
|
|
51831
|
+
:instance_id,
|
|
51832
|
+
:bandwidth_weighting)
|
|
51833
|
+
SENSITIVE = []
|
|
51834
|
+
include Aws::Structure
|
|
51835
|
+
end
|
|
51836
|
+
|
|
51667
51837
|
# @!attribute [rw] group_name
|
|
51668
51838
|
# The name of the placement group in which to place the instance. For
|
|
51669
51839
|
# spread placement groups, the instance must have a tenancy of
|
|
@@ -55752,6 +55922,11 @@ module Aws::EC2
|
|
|
55752
55922
|
# minimize tail latency of network traffic between EC2 instances.
|
|
55753
55923
|
# @return [Boolean]
|
|
55754
55924
|
#
|
|
55925
|
+
# @!attribute [rw] bandwidth_weightings
|
|
55926
|
+
# A list of valid settings for configurable bandwidth weighting for
|
|
55927
|
+
# the instance type, if supported.
|
|
55928
|
+
# @return [Array<String>]
|
|
55929
|
+
#
|
|
55755
55930
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkInfo AWS API Documentation
|
|
55756
55931
|
#
|
|
55757
55932
|
class NetworkInfo < Struct.new(
|
|
@@ -55767,7 +55942,8 @@ module Aws::EC2
|
|
|
55767
55942
|
:efa_supported,
|
|
55768
55943
|
:efa_info,
|
|
55769
55944
|
:encryption_in_transit_supported,
|
|
55770
|
-
:ena_srd_supported
|
|
55945
|
+
:ena_srd_supported,
|
|
55946
|
+
:bandwidth_weightings)
|
|
55771
55947
|
SENSITIVE = []
|
|
55772
55948
|
include Aws::Structure
|
|
55773
55949
|
end
|
|
@@ -60872,6 +61048,11 @@ module Aws::EC2
|
|
|
60872
61048
|
# The entity that manages the launch template.
|
|
60873
61049
|
# @return [Types::OperatorRequest]
|
|
60874
61050
|
#
|
|
61051
|
+
# @!attribute [rw] network_performance_options
|
|
61052
|
+
# Contains launch template settings to boost network performance for
|
|
61053
|
+
# the type of workload that runs on your instance.
|
|
61054
|
+
# @return [Types::LaunchTemplateNetworkPerformanceOptionsRequest]
|
|
61055
|
+
#
|
|
60875
61056
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RequestLaunchTemplateData AWS API Documentation
|
|
60876
61057
|
#
|
|
60877
61058
|
class RequestLaunchTemplateData < Struct.new(
|
|
@@ -60906,7 +61087,8 @@ module Aws::EC2
|
|
|
60906
61087
|
:private_dns_name_options,
|
|
60907
61088
|
:maintenance_options,
|
|
60908
61089
|
:disable_api_stop,
|
|
60909
|
-
:operator
|
|
61090
|
+
:operator,
|
|
61091
|
+
:network_performance_options)
|
|
60910
61092
|
SENSITIVE = [:user_data]
|
|
60911
61093
|
include Aws::Structure
|
|
60912
61094
|
end
|
|
@@ -62272,6 +62454,11 @@ module Aws::EC2
|
|
|
62272
62454
|
# The entity that manages the launch template.
|
|
62273
62455
|
# @return [Types::OperatorResponse]
|
|
62274
62456
|
#
|
|
62457
|
+
# @!attribute [rw] network_performance_options
|
|
62458
|
+
# Contains the launch template settings for network performance
|
|
62459
|
+
# options for your instance.
|
|
62460
|
+
# @return [Types::LaunchTemplateNetworkPerformanceOptions]
|
|
62461
|
+
#
|
|
62275
62462
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResponseLaunchTemplateData AWS API Documentation
|
|
62276
62463
|
#
|
|
62277
62464
|
class ResponseLaunchTemplateData < Struct.new(
|
|
@@ -62306,7 +62493,8 @@ module Aws::EC2
|
|
|
62306
62493
|
:private_dns_name_options,
|
|
62307
62494
|
:maintenance_options,
|
|
62308
62495
|
:disable_api_stop,
|
|
62309
|
-
:operator
|
|
62496
|
+
:operator,
|
|
62497
|
+
:network_performance_options)
|
|
62310
62498
|
SENSITIVE = [:user_data]
|
|
62311
62499
|
include Aws::Structure
|
|
62312
62500
|
end
|
|
@@ -63510,6 +63698,11 @@ module Aws::EC2
|
|
|
63510
63698
|
# ENI becomes the primary IPv6 address.
|
|
63511
63699
|
# @return [Boolean]
|
|
63512
63700
|
#
|
|
63701
|
+
# @!attribute [rw] network_performance_options
|
|
63702
|
+
# Contains settings for the network performance options for the
|
|
63703
|
+
# instance.
|
|
63704
|
+
# @return [Types::InstanceNetworkPerformanceOptionsRequest]
|
|
63705
|
+
#
|
|
63513
63706
|
# @!attribute [rw] operator
|
|
63514
63707
|
# Reserved for internal use.
|
|
63515
63708
|
# @return [Types::OperatorRequest]
|
|
@@ -63635,6 +63828,7 @@ module Aws::EC2
|
|
|
63635
63828
|
:maintenance_options,
|
|
63636
63829
|
:disable_api_stop,
|
|
63637
63830
|
:enable_primary_ipv_6,
|
|
63831
|
+
:network_performance_options,
|
|
63638
63832
|
:operator,
|
|
63639
63833
|
:dry_run,
|
|
63640
63834
|
:disable_api_termination,
|
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
|
@@ -1338,6 +1338,10 @@ module Aws::EC2
|
|
|
1338
1338
|
# * `network-interface.vpc-id` - The ID of the VPC for the network
|
|
1339
1339
|
# interface.
|
|
1340
1340
|
#
|
|
1341
|
+
# * `network-performance-options.bandwidth-weighting` - Where the
|
|
1342
|
+
# performance boost is applied, if applicable. Valid values:
|
|
1343
|
+
# `default`, `vpc-1`, `ebs-1`.
|
|
1344
|
+
#
|
|
1341
1345
|
# * `operator.managed` - A Boolean that indicates whether this is a
|
|
1342
1346
|
# managed instance.
|
|
1343
1347
|
#
|
|
@@ -1762,13 +1766,6 @@ module Aws::EC2
|
|
|
1762
1766
|
#
|
|
1763
1767
|
# * `network-interface-id` - The ID of the network interface.
|
|
1764
1768
|
#
|
|
1765
|
-
# * `operator.managed` - A Boolean that indicates whether this is a
|
|
1766
|
-
# managed network interface.
|
|
1767
|
-
#
|
|
1768
|
-
# * `operator.principal` - The principal that manages the network
|
|
1769
|
-
# interface. Only valid for managed network interfaces, where
|
|
1770
|
-
# `managed` is `true`.
|
|
1771
|
-
#
|
|
1772
1769
|
# * `owner-id` - The Amazon Web Services account ID of the network
|
|
1773
1770
|
# interface owner.
|
|
1774
1771
|
#
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -2216,6 +2216,9 @@ module Aws
|
|
|
2216
2216
|
disable_api_stop: bool?,
|
|
2217
2217
|
operator: {
|
|
2218
2218
|
principal: ::String?
|
|
2219
|
+
}?,
|
|
2220
|
+
network_performance_options: {
|
|
2221
|
+
bandwidth_weighting: ("default" | "vpc-1" | "ebs-1")?
|
|
2219
2222
|
}?
|
|
2220
2223
|
},
|
|
2221
2224
|
?operator: {
|
|
@@ -2485,6 +2488,9 @@ module Aws
|
|
|
2485
2488
|
disable_api_stop: bool?,
|
|
2486
2489
|
operator: {
|
|
2487
2490
|
principal: ::String?
|
|
2491
|
+
}?,
|
|
2492
|
+
network_performance_options: {
|
|
2493
|
+
bandwidth_weighting: ("default" | "vpc-1" | "ebs-1")?
|
|
2488
2494
|
}?
|
|
2489
2495
|
},
|
|
2490
2496
|
?resolve_alias: bool
|
|
@@ -10703,6 +10709,19 @@ module Aws
|
|
|
10703
10709
|
) -> _ModifyInstanceMetadataOptionsResponseSuccess
|
|
10704
10710
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyInstanceMetadataOptionsResponseSuccess
|
|
10705
10711
|
|
|
10712
|
+
interface _ModifyInstanceNetworkPerformanceOptionsResponseSuccess
|
|
10713
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ModifyInstanceNetworkPerformanceResult]
|
|
10714
|
+
def instance_id: () -> ::String
|
|
10715
|
+
def bandwidth_weighting: () -> ("default" | "vpc-1" | "ebs-1")
|
|
10716
|
+
end
|
|
10717
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Client.html#modify_instance_network_performance_options-instance_method
|
|
10718
|
+
def modify_instance_network_performance_options: (
|
|
10719
|
+
instance_id: ::String,
|
|
10720
|
+
bandwidth_weighting: ("default" | "vpc-1" | "ebs-1"),
|
|
10721
|
+
?dry_run: bool
|
|
10722
|
+
) -> _ModifyInstanceNetworkPerformanceOptionsResponseSuccess
|
|
10723
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyInstanceNetworkPerformanceOptionsResponseSuccess
|
|
10724
|
+
|
|
10706
10725
|
interface _ModifyInstancePlacementResponseSuccess
|
|
10707
10726
|
include ::Seahorse::Client::_ResponseSuccess[Types::ModifyInstancePlacementResult]
|
|
10708
10727
|
def return: () -> bool
|
|
@@ -13168,6 +13187,9 @@ module Aws
|
|
|
13168
13187
|
},
|
|
13169
13188
|
?disable_api_stop: bool,
|
|
13170
13189
|
?enable_primary_ipv_6: bool,
|
|
13190
|
+
?network_performance_options: {
|
|
13191
|
+
bandwidth_weighting: ("default" | "vpc-1" | "ebs-1")?
|
|
13192
|
+
},
|
|
13171
13193
|
?operator: {
|
|
13172
13194
|
principal: ::String?
|
|
13173
13195
|
},
|
data/sig/instance.rbs
CHANGED
|
@@ -126,6 +126,9 @@ module Aws
|
|
|
126
126
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Instance.html#current_instance_boot_mode-instance_method
|
|
127
127
|
def current_instance_boot_mode: () -> ("legacy-bios" | "uefi")
|
|
128
128
|
|
|
129
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Instance.html#network_performance_options-instance_method
|
|
130
|
+
def network_performance_options: () -> Types::InstanceNetworkPerformanceOptions
|
|
131
|
+
|
|
129
132
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Instance.html#operator-instance_method
|
|
130
133
|
def operator: () -> Types::OperatorResponse
|
|
131
134
|
|
data/sig/resource.rbs
CHANGED
data/sig/subnet.rbs
CHANGED
data/sig/types.rbs
CHANGED
|
@@ -9331,6 +9331,7 @@ module Aws::EC2
|
|
|
9331
9331
|
attr_accessor tpm_support: ::String
|
|
9332
9332
|
attr_accessor maintenance_options: Types::InstanceMaintenanceOptions
|
|
9333
9333
|
attr_accessor current_instance_boot_mode: ("legacy-bios" | "uefi")
|
|
9334
|
+
attr_accessor network_performance_options: Types::InstanceNetworkPerformanceOptions
|
|
9334
9335
|
attr_accessor operator: Types::OperatorResponse
|
|
9335
9336
|
attr_accessor instance_id: ::String
|
|
9336
9337
|
attr_accessor image_id: ::String
|
|
@@ -9648,6 +9649,16 @@ module Aws::EC2
|
|
|
9648
9649
|
SENSITIVE: []
|
|
9649
9650
|
end
|
|
9650
9651
|
|
|
9652
|
+
class InstanceNetworkPerformanceOptions
|
|
9653
|
+
attr_accessor bandwidth_weighting: ("default" | "vpc-1" | "ebs-1")
|
|
9654
|
+
SENSITIVE: []
|
|
9655
|
+
end
|
|
9656
|
+
|
|
9657
|
+
class InstanceNetworkPerformanceOptionsRequest
|
|
9658
|
+
attr_accessor bandwidth_weighting: ("default" | "vpc-1" | "ebs-1")
|
|
9659
|
+
SENSITIVE: []
|
|
9660
|
+
end
|
|
9661
|
+
|
|
9651
9662
|
class InstancePrivateIpAddress
|
|
9652
9663
|
attr_accessor association: Types::InstanceNetworkInterfaceAssociation
|
|
9653
9664
|
attr_accessor primary: bool
|
|
@@ -10532,6 +10543,16 @@ module Aws::EC2
|
|
|
10532
10543
|
SENSITIVE: []
|
|
10533
10544
|
end
|
|
10534
10545
|
|
|
10546
|
+
class LaunchTemplateNetworkPerformanceOptions
|
|
10547
|
+
attr_accessor bandwidth_weighting: ("default" | "vpc-1" | "ebs-1")
|
|
10548
|
+
SENSITIVE: []
|
|
10549
|
+
end
|
|
10550
|
+
|
|
10551
|
+
class LaunchTemplateNetworkPerformanceOptionsRequest
|
|
10552
|
+
attr_accessor bandwidth_weighting: ("default" | "vpc-1" | "ebs-1")
|
|
10553
|
+
SENSITIVE: []
|
|
10554
|
+
end
|
|
10555
|
+
|
|
10535
10556
|
class LaunchTemplateOverrides
|
|
10536
10557
|
attr_accessor instance_type: ("a1.medium" | "a1.large" | "a1.xlarge" | "a1.2xlarge" | "a1.4xlarge" | "a1.metal" | "c1.medium" | "c1.xlarge" | "c3.large" | "c3.xlarge" | "c3.2xlarge" | "c3.4xlarge" | "c3.8xlarge" | "c4.large" | "c4.xlarge" | "c4.2xlarge" | "c4.4xlarge" | "c4.8xlarge" | "c5.large" | "c5.xlarge" | "c5.2xlarge" | "c5.4xlarge" | "c5.9xlarge" | "c5.12xlarge" | "c5.18xlarge" | "c5.24xlarge" | "c5.metal" | "c5a.large" | "c5a.xlarge" | "c5a.2xlarge" | "c5a.4xlarge" | "c5a.8xlarge" | "c5a.12xlarge" | "c5a.16xlarge" | "c5a.24xlarge" | "c5ad.large" | "c5ad.xlarge" | "c5ad.2xlarge" | "c5ad.4xlarge" | "c5ad.8xlarge" | "c5ad.12xlarge" | "c5ad.16xlarge" | "c5ad.24xlarge" | "c5d.large" | "c5d.xlarge" | "c5d.2xlarge" | "c5d.4xlarge" | "c5d.9xlarge" | "c5d.12xlarge" | "c5d.18xlarge" | "c5d.24xlarge" | "c5d.metal" | "c5n.large" | "c5n.xlarge" | "c5n.2xlarge" | "c5n.4xlarge" | "c5n.9xlarge" | "c5n.18xlarge" | "c5n.metal" | "c6g.medium" | "c6g.large" | "c6g.xlarge" | "c6g.2xlarge" | "c6g.4xlarge" | "c6g.8xlarge" | "c6g.12xlarge" | "c6g.16xlarge" | "c6g.metal" | "c6gd.medium" | "c6gd.large" | "c6gd.xlarge" | "c6gd.2xlarge" | "c6gd.4xlarge" | "c6gd.8xlarge" | "c6gd.12xlarge" | "c6gd.16xlarge" | "c6gd.metal" | "c6gn.medium" | "c6gn.large" | "c6gn.xlarge" | "c6gn.2xlarge" | "c6gn.4xlarge" | "c6gn.8xlarge" | "c6gn.12xlarge" | "c6gn.16xlarge" | "c6i.large" | "c6i.xlarge" | "c6i.2xlarge" | "c6i.4xlarge" | "c6i.8xlarge" | "c6i.12xlarge" | "c6i.16xlarge" | "c6i.24xlarge" | "c6i.32xlarge" | "c6i.metal" | "cc1.4xlarge" | "cc2.8xlarge" | "cg1.4xlarge" | "cr1.8xlarge" | "d2.xlarge" | "d2.2xlarge" | "d2.4xlarge" | "d2.8xlarge" | "d3.xlarge" | "d3.2xlarge" | "d3.4xlarge" | "d3.8xlarge" | "d3en.xlarge" | "d3en.2xlarge" | "d3en.4xlarge" | "d3en.6xlarge" | "d3en.8xlarge" | "d3en.12xlarge" | "dl1.24xlarge" | "f1.2xlarge" | "f1.4xlarge" | "f1.16xlarge" | "g2.2xlarge" | "g2.8xlarge" | "g3.4xlarge" | "g3.8xlarge" | "g3.16xlarge" | "g3s.xlarge" | "g4ad.xlarge" | "g4ad.2xlarge" | "g4ad.4xlarge" | "g4ad.8xlarge" | "g4ad.16xlarge" | "g4dn.xlarge" | "g4dn.2xlarge" | "g4dn.4xlarge" | "g4dn.8xlarge" | "g4dn.12xlarge" | "g4dn.16xlarge" | "g4dn.metal" | "g5.xlarge" | "g5.2xlarge" | "g5.4xlarge" | "g5.8xlarge" | "g5.12xlarge" | "g5.16xlarge" | "g5.24xlarge" | "g5.48xlarge" | "g5g.xlarge" | "g5g.2xlarge" | "g5g.4xlarge" | "g5g.8xlarge" | "g5g.16xlarge" | "g5g.metal" | "hi1.4xlarge" | "hpc6a.48xlarge" | "hs1.8xlarge" | "h1.2xlarge" | "h1.4xlarge" | "h1.8xlarge" | "h1.16xlarge" | "i2.xlarge" | "i2.2xlarge" | "i2.4xlarge" | "i2.8xlarge" | "i3.large" | "i3.xlarge" | "i3.2xlarge" | "i3.4xlarge" | "i3.8xlarge" | "i3.16xlarge" | "i3.metal" | "i3en.large" | "i3en.xlarge" | "i3en.2xlarge" | "i3en.3xlarge" | "i3en.6xlarge" | "i3en.12xlarge" | "i3en.24xlarge" | "i3en.metal" | "im4gn.large" | "im4gn.xlarge" | "im4gn.2xlarge" | "im4gn.4xlarge" | "im4gn.8xlarge" | "im4gn.16xlarge" | "inf1.xlarge" | "inf1.2xlarge" | "inf1.6xlarge" | "inf1.24xlarge" | "is4gen.medium" | "is4gen.large" | "is4gen.xlarge" | "is4gen.2xlarge" | "is4gen.4xlarge" | "is4gen.8xlarge" | "m1.small" | "m1.medium" | "m1.large" | "m1.xlarge" | "m2.xlarge" | "m2.2xlarge" | "m2.4xlarge" | "m3.medium" | "m3.large" | "m3.xlarge" | "m3.2xlarge" | "m4.large" | "m4.xlarge" | "m4.2xlarge" | "m4.4xlarge" | "m4.10xlarge" | "m4.16xlarge" | "m5.large" | "m5.xlarge" | "m5.2xlarge" | "m5.4xlarge" | "m5.8xlarge" | "m5.12xlarge" | "m5.16xlarge" | "m5.24xlarge" | "m5.metal" | "m5a.large" | "m5a.xlarge" | "m5a.2xlarge" | "m5a.4xlarge" | "m5a.8xlarge" | "m5a.12xlarge" | "m5a.16xlarge" | "m5a.24xlarge" | "m5ad.large" | "m5ad.xlarge" | "m5ad.2xlarge" | "m5ad.4xlarge" | "m5ad.8xlarge" | "m5ad.12xlarge" | "m5ad.16xlarge" | "m5ad.24xlarge" | "m5d.large" | "m5d.xlarge" | "m5d.2xlarge" | "m5d.4xlarge" | "m5d.8xlarge" | "m5d.12xlarge" | "m5d.16xlarge" | "m5d.24xlarge" | "m5d.metal" | "m5dn.large" | "m5dn.xlarge" | "m5dn.2xlarge" | "m5dn.4xlarge" | "m5dn.8xlarge" | "m5dn.12xlarge" | "m5dn.16xlarge" | "m5dn.24xlarge" | "m5dn.metal" | "m5n.large" | "m5n.xlarge" | "m5n.2xlarge" | "m5n.4xlarge" | "m5n.8xlarge" | "m5n.12xlarge" | "m5n.16xlarge" | "m5n.24xlarge" | "m5n.metal" | "m5zn.large" | "m5zn.xlarge" | "m5zn.2xlarge" | "m5zn.3xlarge" | "m5zn.6xlarge" | "m5zn.12xlarge" | "m5zn.metal" | "m6a.large" | "m6a.xlarge" | "m6a.2xlarge" | "m6a.4xlarge" | "m6a.8xlarge" | "m6a.12xlarge" | "m6a.16xlarge" | "m6a.24xlarge" | "m6a.32xlarge" | "m6a.48xlarge" | "m6g.metal" | "m6g.medium" | "m6g.large" | "m6g.xlarge" | "m6g.2xlarge" | "m6g.4xlarge" | "m6g.8xlarge" | "m6g.12xlarge" | "m6g.16xlarge" | "m6gd.metal" | "m6gd.medium" | "m6gd.large" | "m6gd.xlarge" | "m6gd.2xlarge" | "m6gd.4xlarge" | "m6gd.8xlarge" | "m6gd.12xlarge" | "m6gd.16xlarge" | "m6i.large" | "m6i.xlarge" | "m6i.2xlarge" | "m6i.4xlarge" | "m6i.8xlarge" | "m6i.12xlarge" | "m6i.16xlarge" | "m6i.24xlarge" | "m6i.32xlarge" | "m6i.metal" | "mac1.metal" | "p2.xlarge" | "p2.8xlarge" | "p2.16xlarge" | "p3.2xlarge" | "p3.8xlarge" | "p3.16xlarge" | "p3dn.24xlarge" | "p4d.24xlarge" | "r3.large" | "r3.xlarge" | "r3.2xlarge" | "r3.4xlarge" | "r3.8xlarge" | "r4.large" | "r4.xlarge" | "r4.2xlarge" | "r4.4xlarge" | "r4.8xlarge" | "r4.16xlarge" | "r5.large" | "r5.xlarge" | "r5.2xlarge" | "r5.4xlarge" | "r5.8xlarge" | "r5.12xlarge" | "r5.16xlarge" | "r5.24xlarge" | "r5.metal" | "r5a.large" | "r5a.xlarge" | "r5a.2xlarge" | "r5a.4xlarge" | "r5a.8xlarge" | "r5a.12xlarge" | "r5a.16xlarge" | "r5a.24xlarge" | "r5ad.large" | "r5ad.xlarge" | "r5ad.2xlarge" | "r5ad.4xlarge" | "r5ad.8xlarge" | "r5ad.12xlarge" | "r5ad.16xlarge" | "r5ad.24xlarge" | "r5b.large" | "r5b.xlarge" | "r5b.2xlarge" | "r5b.4xlarge" | "r5b.8xlarge" | "r5b.12xlarge" | "r5b.16xlarge" | "r5b.24xlarge" | "r5b.metal" | "r5d.large" | "r5d.xlarge" | "r5d.2xlarge" | "r5d.4xlarge" | "r5d.8xlarge" | "r5d.12xlarge" | "r5d.16xlarge" | "r5d.24xlarge" | "r5d.metal" | "r5dn.large" | "r5dn.xlarge" | "r5dn.2xlarge" | "r5dn.4xlarge" | "r5dn.8xlarge" | "r5dn.12xlarge" | "r5dn.16xlarge" | "r5dn.24xlarge" | "r5dn.metal" | "r5n.large" | "r5n.xlarge" | "r5n.2xlarge" | "r5n.4xlarge" | "r5n.8xlarge" | "r5n.12xlarge" | "r5n.16xlarge" | "r5n.24xlarge" | "r5n.metal" | "r6g.medium" | "r6g.large" | "r6g.xlarge" | "r6g.2xlarge" | "r6g.4xlarge" | "r6g.8xlarge" | "r6g.12xlarge" | "r6g.16xlarge" | "r6g.metal" | "r6gd.medium" | "r6gd.large" | "r6gd.xlarge" | "r6gd.2xlarge" | "r6gd.4xlarge" | "r6gd.8xlarge" | "r6gd.12xlarge" | "r6gd.16xlarge" | "r6gd.metal" | "r6i.large" | "r6i.xlarge" | "r6i.2xlarge" | "r6i.4xlarge" | "r6i.8xlarge" | "r6i.12xlarge" | "r6i.16xlarge" | "r6i.24xlarge" | "r6i.32xlarge" | "r6i.metal" | "t1.micro" | "t2.nano" | "t2.micro" | "t2.small" | "t2.medium" | "t2.large" | "t2.xlarge" | "t2.2xlarge" | "t3.nano" | "t3.micro" | "t3.small" | "t3.medium" | "t3.large" | "t3.xlarge" | "t3.2xlarge" | "t3a.nano" | "t3a.micro" | "t3a.small" | "t3a.medium" | "t3a.large" | "t3a.xlarge" | "t3a.2xlarge" | "t4g.nano" | "t4g.micro" | "t4g.small" | "t4g.medium" | "t4g.large" | "t4g.xlarge" | "t4g.2xlarge" | "u-6tb1.56xlarge" | "u-6tb1.112xlarge" | "u-9tb1.112xlarge" | "u-12tb1.112xlarge" | "u-6tb1.metal" | "u-9tb1.metal" | "u-12tb1.metal" | "u-18tb1.metal" | "u-24tb1.metal" | "vt1.3xlarge" | "vt1.6xlarge" | "vt1.24xlarge" | "x1.16xlarge" | "x1.32xlarge" | "x1e.xlarge" | "x1e.2xlarge" | "x1e.4xlarge" | "x1e.8xlarge" | "x1e.16xlarge" | "x1e.32xlarge" | "x2iezn.2xlarge" | "x2iezn.4xlarge" | "x2iezn.6xlarge" | "x2iezn.8xlarge" | "x2iezn.12xlarge" | "x2iezn.metal" | "x2gd.medium" | "x2gd.large" | "x2gd.xlarge" | "x2gd.2xlarge" | "x2gd.4xlarge" | "x2gd.8xlarge" | "x2gd.12xlarge" | "x2gd.16xlarge" | "x2gd.metal" | "z1d.large" | "z1d.xlarge" | "z1d.2xlarge" | "z1d.3xlarge" | "z1d.6xlarge" | "z1d.12xlarge" | "z1d.metal" | "x2idn.16xlarge" | "x2idn.24xlarge" | "x2idn.32xlarge" | "x2iedn.xlarge" | "x2iedn.2xlarge" | "x2iedn.4xlarge" | "x2iedn.8xlarge" | "x2iedn.16xlarge" | "x2iedn.24xlarge" | "x2iedn.32xlarge" | "c6a.large" | "c6a.xlarge" | "c6a.2xlarge" | "c6a.4xlarge" | "c6a.8xlarge" | "c6a.12xlarge" | "c6a.16xlarge" | "c6a.24xlarge" | "c6a.32xlarge" | "c6a.48xlarge" | "c6a.metal" | "m6a.metal" | "i4i.large" | "i4i.xlarge" | "i4i.2xlarge" | "i4i.4xlarge" | "i4i.8xlarge" | "i4i.16xlarge" | "i4i.32xlarge" | "i4i.metal" | "x2idn.metal" | "x2iedn.metal" | "c7g.medium" | "c7g.large" | "c7g.xlarge" | "c7g.2xlarge" | "c7g.4xlarge" | "c7g.8xlarge" | "c7g.12xlarge" | "c7g.16xlarge" | "mac2.metal" | "c6id.large" | "c6id.xlarge" | "c6id.2xlarge" | "c6id.4xlarge" | "c6id.8xlarge" | "c6id.12xlarge" | "c6id.16xlarge" | "c6id.24xlarge" | "c6id.32xlarge" | "c6id.metal" | "m6id.large" | "m6id.xlarge" | "m6id.2xlarge" | "m6id.4xlarge" | "m6id.8xlarge" | "m6id.12xlarge" | "m6id.16xlarge" | "m6id.24xlarge" | "m6id.32xlarge" | "m6id.metal" | "r6id.large" | "r6id.xlarge" | "r6id.2xlarge" | "r6id.4xlarge" | "r6id.8xlarge" | "r6id.12xlarge" | "r6id.16xlarge" | "r6id.24xlarge" | "r6id.32xlarge" | "r6id.metal" | "r6a.large" | "r6a.xlarge" | "r6a.2xlarge" | "r6a.4xlarge" | "r6a.8xlarge" | "r6a.12xlarge" | "r6a.16xlarge" | "r6a.24xlarge" | "r6a.32xlarge" | "r6a.48xlarge" | "r6a.metal" | "p4de.24xlarge" | "u-3tb1.56xlarge" | "u-18tb1.112xlarge" | "u-24tb1.112xlarge" | "trn1.2xlarge" | "trn1.32xlarge" | "hpc6id.32xlarge" | "c6in.large" | "c6in.xlarge" | "c6in.2xlarge" | "c6in.4xlarge" | "c6in.8xlarge" | "c6in.12xlarge" | "c6in.16xlarge" | "c6in.24xlarge" | "c6in.32xlarge" | "m6in.large" | "m6in.xlarge" | "m6in.2xlarge" | "m6in.4xlarge" | "m6in.8xlarge" | "m6in.12xlarge" | "m6in.16xlarge" | "m6in.24xlarge" | "m6in.32xlarge" | "m6idn.large" | "m6idn.xlarge" | "m6idn.2xlarge" | "m6idn.4xlarge" | "m6idn.8xlarge" | "m6idn.12xlarge" | "m6idn.16xlarge" | "m6idn.24xlarge" | "m6idn.32xlarge" | "r6in.large" | "r6in.xlarge" | "r6in.2xlarge" | "r6in.4xlarge" | "r6in.8xlarge" | "r6in.12xlarge" | "r6in.16xlarge" | "r6in.24xlarge" | "r6in.32xlarge" | "r6idn.large" | "r6idn.xlarge" | "r6idn.2xlarge" | "r6idn.4xlarge" | "r6idn.8xlarge" | "r6idn.12xlarge" | "r6idn.16xlarge" | "r6idn.24xlarge" | "r6idn.32xlarge" | "c7g.metal" | "m7g.medium" | "m7g.large" | "m7g.xlarge" | "m7g.2xlarge" | "m7g.4xlarge" | "m7g.8xlarge" | "m7g.12xlarge" | "m7g.16xlarge" | "m7g.metal" | "r7g.medium" | "r7g.large" | "r7g.xlarge" | "r7g.2xlarge" | "r7g.4xlarge" | "r7g.8xlarge" | "r7g.12xlarge" | "r7g.16xlarge" | "r7g.metal" | "c6in.metal" | "m6in.metal" | "m6idn.metal" | "r6in.metal" | "r6idn.metal" | "inf2.xlarge" | "inf2.8xlarge" | "inf2.24xlarge" | "inf2.48xlarge" | "trn1n.32xlarge" | "i4g.large" | "i4g.xlarge" | "i4g.2xlarge" | "i4g.4xlarge" | "i4g.8xlarge" | "i4g.16xlarge" | "hpc7g.4xlarge" | "hpc7g.8xlarge" | "hpc7g.16xlarge" | "c7gn.medium" | "c7gn.large" | "c7gn.xlarge" | "c7gn.2xlarge" | "c7gn.4xlarge" | "c7gn.8xlarge" | "c7gn.12xlarge" | "c7gn.16xlarge" | "p5.48xlarge" | "m7i.large" | "m7i.xlarge" | "m7i.2xlarge" | "m7i.4xlarge" | "m7i.8xlarge" | "m7i.12xlarge" | "m7i.16xlarge" | "m7i.24xlarge" | "m7i.48xlarge" | "m7i-flex.large" | "m7i-flex.xlarge" | "m7i-flex.2xlarge" | "m7i-flex.4xlarge" | "m7i-flex.8xlarge" | "m7a.medium" | "m7a.large" | "m7a.xlarge" | "m7a.2xlarge" | "m7a.4xlarge" | "m7a.8xlarge" | "m7a.12xlarge" | "m7a.16xlarge" | "m7a.24xlarge" | "m7a.32xlarge" | "m7a.48xlarge" | "m7a.metal-48xl" | "hpc7a.12xlarge" | "hpc7a.24xlarge" | "hpc7a.48xlarge" | "hpc7a.96xlarge" | "c7gd.medium" | "c7gd.large" | "c7gd.xlarge" | "c7gd.2xlarge" | "c7gd.4xlarge" | "c7gd.8xlarge" | "c7gd.12xlarge" | "c7gd.16xlarge" | "m7gd.medium" | "m7gd.large" | "m7gd.xlarge" | "m7gd.2xlarge" | "m7gd.4xlarge" | "m7gd.8xlarge" | "m7gd.12xlarge" | "m7gd.16xlarge" | "r7gd.medium" | "r7gd.large" | "r7gd.xlarge" | "r7gd.2xlarge" | "r7gd.4xlarge" | "r7gd.8xlarge" | "r7gd.12xlarge" | "r7gd.16xlarge" | "r7a.medium" | "r7a.large" | "r7a.xlarge" | "r7a.2xlarge" | "r7a.4xlarge" | "r7a.8xlarge" | "r7a.12xlarge" | "r7a.16xlarge" | "r7a.24xlarge" | "r7a.32xlarge" | "r7a.48xlarge" | "c7i.large" | "c7i.xlarge" | "c7i.2xlarge" | "c7i.4xlarge" | "c7i.8xlarge" | "c7i.12xlarge" | "c7i.16xlarge" | "c7i.24xlarge" | "c7i.48xlarge" | "mac2-m2pro.metal" | "r7iz.large" | "r7iz.xlarge" | "r7iz.2xlarge" | "r7iz.4xlarge" | "r7iz.8xlarge" | "r7iz.12xlarge" | "r7iz.16xlarge" | "r7iz.32xlarge" | "c7a.medium" | "c7a.large" | "c7a.xlarge" | "c7a.2xlarge" | "c7a.4xlarge" | "c7a.8xlarge" | "c7a.12xlarge" | "c7a.16xlarge" | "c7a.24xlarge" | "c7a.32xlarge" | "c7a.48xlarge" | "c7a.metal-48xl" | "r7a.metal-48xl" | "r7i.large" | "r7i.xlarge" | "r7i.2xlarge" | "r7i.4xlarge" | "r7i.8xlarge" | "r7i.12xlarge" | "r7i.16xlarge" | "r7i.24xlarge" | "r7i.48xlarge" | "dl2q.24xlarge" | "mac2-m2.metal" | "i4i.12xlarge" | "i4i.24xlarge" | "c7i.metal-24xl" | "c7i.metal-48xl" | "m7i.metal-24xl" | "m7i.metal-48xl" | "r7i.metal-24xl" | "r7i.metal-48xl" | "r7iz.metal-16xl" | "r7iz.metal-32xl" | "c7gd.metal" | "m7gd.metal" | "r7gd.metal" | "g6.xlarge" | "g6.2xlarge" | "g6.4xlarge" | "g6.8xlarge" | "g6.12xlarge" | "g6.16xlarge" | "g6.24xlarge" | "g6.48xlarge" | "gr6.4xlarge" | "gr6.8xlarge" | "c7i-flex.large" | "c7i-flex.xlarge" | "c7i-flex.2xlarge" | "c7i-flex.4xlarge" | "c7i-flex.8xlarge" | "u7i-12tb.224xlarge" | "u7in-16tb.224xlarge" | "u7in-24tb.224xlarge" | "u7in-32tb.224xlarge" | "u7ib-12tb.224xlarge" | "c7gn.metal" | "r8g.medium" | "r8g.large" | "r8g.xlarge" | "r8g.2xlarge" | "r8g.4xlarge" | "r8g.8xlarge" | "r8g.12xlarge" | "r8g.16xlarge" | "r8g.24xlarge" | "r8g.48xlarge" | "r8g.metal-24xl" | "r8g.metal-48xl" | "mac2-m1ultra.metal" | "g6e.xlarge" | "g6e.2xlarge" | "g6e.4xlarge" | "g6e.8xlarge" | "g6e.12xlarge" | "g6e.16xlarge" | "g6e.24xlarge" | "g6e.48xlarge" | "c8g.medium" | "c8g.large" | "c8g.xlarge" | "c8g.2xlarge" | "c8g.4xlarge" | "c8g.8xlarge" | "c8g.12xlarge" | "c8g.16xlarge" | "c8g.24xlarge" | "c8g.48xlarge" | "c8g.metal-24xl" | "c8g.metal-48xl" | "m8g.medium" | "m8g.large" | "m8g.xlarge" | "m8g.2xlarge" | "m8g.4xlarge" | "m8g.8xlarge" | "m8g.12xlarge" | "m8g.16xlarge" | "m8g.24xlarge" | "m8g.48xlarge" | "m8g.metal-24xl" | "m8g.metal-48xl" | "x8g.medium" | "x8g.large" | "x8g.xlarge" | "x8g.2xlarge" | "x8g.4xlarge" | "x8g.8xlarge" | "x8g.12xlarge" | "x8g.16xlarge" | "x8g.24xlarge" | "x8g.48xlarge" | "x8g.metal-24xl" | "x8g.metal-48xl" | "i7ie.large" | "i7ie.xlarge" | "i7ie.2xlarge" | "i7ie.3xlarge" | "i7ie.6xlarge" | "i7ie.12xlarge" | "i7ie.18xlarge" | "i7ie.24xlarge" | "i7ie.48xlarge" | "i8g.large" | "i8g.xlarge" | "i8g.2xlarge" | "i8g.4xlarge" | "i8g.8xlarge" | "i8g.12xlarge" | "i8g.16xlarge" | "i8g.24xlarge" | "i8g.metal-24xl")
|
|
10537
10558
|
attr_accessor spot_price: ::String
|
|
@@ -11219,6 +11240,19 @@ module Aws::EC2
|
|
|
11219
11240
|
SENSITIVE: []
|
|
11220
11241
|
end
|
|
11221
11242
|
|
|
11243
|
+
class ModifyInstanceNetworkPerformanceRequest
|
|
11244
|
+
attr_accessor instance_id: ::String
|
|
11245
|
+
attr_accessor bandwidth_weighting: ("default" | "vpc-1" | "ebs-1")
|
|
11246
|
+
attr_accessor dry_run: bool
|
|
11247
|
+
SENSITIVE: []
|
|
11248
|
+
end
|
|
11249
|
+
|
|
11250
|
+
class ModifyInstanceNetworkPerformanceResult
|
|
11251
|
+
attr_accessor instance_id: ::String
|
|
11252
|
+
attr_accessor bandwidth_weighting: ("default" | "vpc-1" | "ebs-1")
|
|
11253
|
+
SENSITIVE: []
|
|
11254
|
+
end
|
|
11255
|
+
|
|
11222
11256
|
class ModifyInstancePlacementRequest
|
|
11223
11257
|
attr_accessor group_name: ::String
|
|
11224
11258
|
attr_accessor partition_number: ::Integer
|
|
@@ -12163,6 +12197,7 @@ module Aws::EC2
|
|
|
12163
12197
|
attr_accessor efa_info: Types::EfaInfo
|
|
12164
12198
|
attr_accessor encryption_in_transit_supported: bool
|
|
12165
12199
|
attr_accessor ena_srd_supported: bool
|
|
12200
|
+
attr_accessor bandwidth_weightings: ::Array[("default" | "vpc-1" | "ebs-1")]
|
|
12166
12201
|
SENSITIVE: []
|
|
12167
12202
|
end
|
|
12168
12203
|
|
|
@@ -13338,6 +13373,7 @@ module Aws::EC2
|
|
|
13338
13373
|
attr_accessor maintenance_options: Types::LaunchTemplateInstanceMaintenanceOptionsRequest
|
|
13339
13374
|
attr_accessor disable_api_stop: bool
|
|
13340
13375
|
attr_accessor operator: Types::OperatorRequest
|
|
13376
|
+
attr_accessor network_performance_options: Types::LaunchTemplateNetworkPerformanceOptionsRequest
|
|
13341
13377
|
SENSITIVE: [:user_data]
|
|
13342
13378
|
end
|
|
13343
13379
|
|
|
@@ -13634,6 +13670,7 @@ module Aws::EC2
|
|
|
13634
13670
|
attr_accessor maintenance_options: Types::LaunchTemplateInstanceMaintenanceOptions
|
|
13635
13671
|
attr_accessor disable_api_stop: bool
|
|
13636
13672
|
attr_accessor operator: Types::OperatorResponse
|
|
13673
|
+
attr_accessor network_performance_options: Types::LaunchTemplateNetworkPerformanceOptions
|
|
13637
13674
|
SENSITIVE: [:user_data]
|
|
13638
13675
|
end
|
|
13639
13676
|
|
|
@@ -13885,6 +13922,7 @@ module Aws::EC2
|
|
|
13885
13922
|
attr_accessor maintenance_options: Types::InstanceMaintenanceOptionsRequest
|
|
13886
13923
|
attr_accessor disable_api_stop: bool
|
|
13887
13924
|
attr_accessor enable_primary_ipv_6: bool
|
|
13925
|
+
attr_accessor network_performance_options: Types::InstanceNetworkPerformanceOptionsRequest
|
|
13888
13926
|
attr_accessor operator: Types::OperatorRequest
|
|
13889
13927
|
attr_accessor dry_run: bool
|
|
13890
13928
|
attr_accessor disable_api_termination: bool
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-ec2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.496.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-12-
|
|
11
|
+
date: 2024-12-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|