aws-sdk-ec2 1.514.0 → 1.517.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +259 -149
- data/lib/aws-sdk-ec2/client_api.rb +16 -1
- data/lib/aws-sdk-ec2/instance.rb +36 -8
- data/lib/aws-sdk-ec2/types.rb +252 -45
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/classic_address.rbs +1 -1
- data/sig/client.rbs +10 -2
- data/sig/types.rbs +17 -1
- data/sig/vpc_address.rbs +1 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -6092,6 +6092,54 @@ module Aws::EC2
|
|
6092
6092
|
include Aws::Structure
|
6093
6093
|
end
|
6094
6094
|
|
6095
|
+
# Client Route Enforcement is a feature of Client VPN that helps enforce
|
6096
|
+
# administrator defined routes on devices connected through the VPN.
|
6097
|
+
# This feature helps improve your security posture by ensuring that
|
6098
|
+
# network traffic originating from a connected client is not
|
6099
|
+
# inadvertently sent outside the VPN tunnel.
|
6100
|
+
#
|
6101
|
+
# Client Route Enforcement works by monitoring the route table of a
|
6102
|
+
# connected device for routing policy changes to the VPN connection. If
|
6103
|
+
# the feature detects any VPN routing policy modifications, it will
|
6104
|
+
# automatically force an update to the route table, reverting it back to
|
6105
|
+
# the expected route configurations.
|
6106
|
+
#
|
6107
|
+
# @!attribute [rw] enforced
|
6108
|
+
# Enable or disable Client Route Enforcement. The state can either be
|
6109
|
+
# `true` (enabled) or `false` (disabled). The default is `false`.
|
6110
|
+
#
|
6111
|
+
# Valid values: `true | false`
|
6112
|
+
#
|
6113
|
+
# Default value: `false`
|
6114
|
+
# @return [Boolean]
|
6115
|
+
#
|
6116
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ClientRouteEnforcementOptions AWS API Documentation
|
6117
|
+
#
|
6118
|
+
class ClientRouteEnforcementOptions < Struct.new(
|
6119
|
+
:enforced)
|
6120
|
+
SENSITIVE = []
|
6121
|
+
include Aws::Structure
|
6122
|
+
end
|
6123
|
+
|
6124
|
+
# The current status of Client Route Enforcement.
|
6125
|
+
#
|
6126
|
+
# @!attribute [rw] enforced
|
6127
|
+
# Status of the client route enforcement feature, indicating whether
|
6128
|
+
# Client Route Enforcement is `true` (enabled) or `false` (disabled).
|
6129
|
+
#
|
6130
|
+
# Valid values: `true | false`
|
6131
|
+
#
|
6132
|
+
# Default value: `false`
|
6133
|
+
# @return [Boolean]
|
6134
|
+
#
|
6135
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ClientRouteEnforcementResponseOptions AWS API Documentation
|
6136
|
+
#
|
6137
|
+
class ClientRouteEnforcementResponseOptions < Struct.new(
|
6138
|
+
:enforced)
|
6139
|
+
SENSITIVE = []
|
6140
|
+
include Aws::Structure
|
6141
|
+
end
|
6142
|
+
|
6095
6143
|
# Describes the authentication methods used by a Client VPN endpoint.
|
6096
6144
|
# For more information, see [Authentication][1] in the *Client VPN
|
6097
6145
|
# Administrator Guide*.
|
@@ -6404,11 +6452,25 @@ module Aws::EC2
|
|
6404
6452
|
# is established.
|
6405
6453
|
# @return [Types::ClientLoginBannerResponseOptions]
|
6406
6454
|
#
|
6455
|
+
# @!attribute [rw] client_route_enforcement_options
|
6456
|
+
# Client route enforcement is a feature of the Client VPN service that
|
6457
|
+
# helps enforce administrator defined routes on devices connected
|
6458
|
+
# through the VPN. T his feature helps improve your security posture
|
6459
|
+
# by ensuring that network traffic originating from a connected client
|
6460
|
+
# is not inadvertently sent outside the VPN tunnel.
|
6461
|
+
#
|
6462
|
+
# Client route enforcement works by monitoring the route table of a
|
6463
|
+
# connected device for routing policy changes to the VPN connection.
|
6464
|
+
# If the feature detects any VPN routing policy modifications, it will
|
6465
|
+
# automatically force an update to the route table, reverting it back
|
6466
|
+
# to the expected route configurations.
|
6467
|
+
# @return [Types::ClientRouteEnforcementResponseOptions]
|
6468
|
+
#
|
6407
6469
|
# @!attribute [rw] disconnect_on_session_timeout
|
6408
6470
|
# Indicates whether the client VPN session is disconnected after the
|
6409
6471
|
# maximum `sessionTimeoutHours` is reached. If `true`, users are
|
6410
6472
|
# prompted to reconnect client VPN. If `false`, client VPN attempts to
|
6411
|
-
# reconnect automatically. The default value is `
|
6473
|
+
# reconnect automatically. The default value is `true`.
|
6412
6474
|
# @return [Boolean]
|
6413
6475
|
#
|
6414
6476
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ClientVpnEndpoint AWS API Documentation
|
@@ -6437,6 +6499,7 @@ module Aws::EC2
|
|
6437
6499
|
:client_connect_options,
|
6438
6500
|
:session_timeout_hours,
|
6439
6501
|
:client_login_banner_options,
|
6502
|
+
:client_route_enforcement_options,
|
6440
6503
|
:disconnect_on_session_timeout)
|
6441
6504
|
SENSITIVE = []
|
6442
6505
|
include Aws::Structure
|
@@ -8253,12 +8316,26 @@ module Aws::EC2
|
|
8253
8316
|
# is established.
|
8254
8317
|
# @return [Types::ClientLoginBannerOptions]
|
8255
8318
|
#
|
8319
|
+
# @!attribute [rw] client_route_enforcement_options
|
8320
|
+
# Client route enforcement is a feature of the Client VPN service that
|
8321
|
+
# helps enforce administrator defined routes on devices connected
|
8322
|
+
# through the VPN. T his feature helps improve your security posture
|
8323
|
+
# by ensuring that network traffic originating from a connected client
|
8324
|
+
# is not inadvertently sent outside the VPN tunnel.
|
8325
|
+
#
|
8326
|
+
# Client route enforcement works by monitoring the route table of a
|
8327
|
+
# connected device for routing policy changes to the VPN connection.
|
8328
|
+
# If the feature detects any VPN routing policy modifications, it will
|
8329
|
+
# automatically force an update to the route table, reverting it back
|
8330
|
+
# to the expected route configurations.
|
8331
|
+
# @return [Types::ClientRouteEnforcementOptions]
|
8332
|
+
#
|
8256
8333
|
# @!attribute [rw] disconnect_on_session_timeout
|
8257
8334
|
# Indicates whether the client VPN session is disconnected after the
|
8258
8335
|
# maximum timeout specified in `SessionTimeoutHours` is reached. If
|
8259
8336
|
# `true`, users are prompted to reconnect client VPN. If `false`,
|
8260
8337
|
# client VPN attempts to reconnect automatically. The default value is
|
8261
|
-
# `
|
8338
|
+
# `true`.
|
8262
8339
|
# @return [Boolean]
|
8263
8340
|
#
|
8264
8341
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateClientVpnEndpointRequest AWS API Documentation
|
@@ -8282,6 +8359,7 @@ module Aws::EC2
|
|
8282
8359
|
:client_connect_options,
|
8283
8360
|
:session_timeout_hours,
|
8284
8361
|
:client_login_banner_options,
|
8362
|
+
:client_route_enforcement_options,
|
8285
8363
|
:disconnect_on_session_timeout)
|
8286
8364
|
SENSITIVE = []
|
8287
8365
|
include Aws::Structure
|
@@ -9831,6 +9909,24 @@ module Aws::EC2
|
|
9831
9909
|
# addresses. This option is disabled by default.
|
9832
9910
|
# @return [Boolean]
|
9833
9911
|
#
|
9912
|
+
# @!attribute [rw] metered_account
|
9913
|
+
# A metered account is an Amazon Web Services account that is charged
|
9914
|
+
# for active IP addresses managed in IPAM. For more information, see
|
9915
|
+
# [Enable cost distribution][1] in the *Amazon VPC IPAM User Guide*.
|
9916
|
+
#
|
9917
|
+
# Possible values:
|
9918
|
+
#
|
9919
|
+
# * `ipam-owner` (default): The Amazon Web Services account which owns
|
9920
|
+
# the IPAM is charged for all active IP addresses managed in IPAM.
|
9921
|
+
#
|
9922
|
+
# * `resource-owner`: The Amazon Web Services account that owns the IP
|
9923
|
+
# address is charged for the active IP address.
|
9924
|
+
#
|
9925
|
+
#
|
9926
|
+
#
|
9927
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/ipam/ipam-enable-cost-distro.html
|
9928
|
+
# @return [String]
|
9929
|
+
#
|
9834
9930
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateIpamRequest AWS API Documentation
|
9835
9931
|
#
|
9836
9932
|
class CreateIpamRequest < Struct.new(
|
@@ -9840,7 +9936,8 @@ module Aws::EC2
|
|
9840
9936
|
:tag_specifications,
|
9841
9937
|
:client_token,
|
9842
9938
|
:tier,
|
9843
|
-
:enable_private_gua
|
9939
|
+
:enable_private_gua,
|
9940
|
+
:metered_account)
|
9844
9941
|
SENSITIVE = []
|
9845
9942
|
include Aws::Structure
|
9846
9943
|
end
|
@@ -11594,7 +11691,7 @@ module Aws::EC2
|
|
11594
11691
|
# @return [String]
|
11595
11692
|
#
|
11596
11693
|
# @!attribute [rw] peer_address
|
11597
|
-
# The IPv4 address of the peer.
|
11694
|
+
# The IPv4 address of the peer device.
|
11598
11695
|
# @return [String]
|
11599
11696
|
#
|
11600
11697
|
# @!attribute [rw] bgp_options
|
@@ -14353,8 +14450,6 @@ module Aws::EC2
|
|
14353
14450
|
# To use a private hosted zone, you must set the following VPC
|
14354
14451
|
# attributes to `true`: `enableDnsHostnames` and `enableDnsSupport`.
|
14355
14452
|
# Use ModifyVpcAttribute to set the VPC attributes.
|
14356
|
-
#
|
14357
|
-
# Default: `true`
|
14358
14453
|
# @return [Boolean]
|
14359
14454
|
#
|
14360
14455
|
# @!attribute [rw] tag_specifications
|
@@ -18810,7 +18905,9 @@ module Aws::EC2
|
|
18810
18905
|
# @return [String]
|
18811
18906
|
#
|
18812
18907
|
# @!attribute [rw] instance_count
|
18813
|
-
# The number of instances for which to reserve capacity.
|
18908
|
+
# The number of instances for which to reserve capacity. Each Capacity
|
18909
|
+
# Block can have up to 64 instances, and you can have up to 256
|
18910
|
+
# instances across Capacity Blocks.
|
18814
18911
|
# @return [Integer]
|
18815
18912
|
#
|
18816
18913
|
# @!attribute [rw] start_date_range
|
@@ -18822,7 +18919,9 @@ module Aws::EC2
|
|
18822
18919
|
# @return [Time]
|
18823
18920
|
#
|
18824
18921
|
# @!attribute [rw] capacity_duration_hours
|
18825
|
-
# The
|
18922
|
+
# The reservation duration for the Capacity Block, in hours. You must
|
18923
|
+
# specify the duration in 1-day increments up 14 days, and in 7-day
|
18924
|
+
# increments up to 182 days.
|
18826
18925
|
# @return [Integer]
|
18827
18926
|
#
|
18828
18927
|
# @!attribute [rw] next_token
|
@@ -22451,6 +22550,9 @@ module Aws::EC2
|
|
22451
22550
|
# latest generation instance type of an instance family (`true` \|
|
22452
22551
|
# `false`).
|
22453
22552
|
#
|
22553
|
+
# * `dedicated-hosts-supported` - Indicates whether the instance type
|
22554
|
+
# supports Dedicated Hosts. (`true` \| `false`)
|
22555
|
+
#
|
22454
22556
|
# * `ebs-info.ebs-optimized-info.baseline-bandwidth-in-mbps` - The
|
22455
22557
|
# baseline bandwidth performance for an EBS-optimized instance type,
|
22456
22558
|
# in Mbps.
|
@@ -36506,11 +36608,11 @@ module Aws::EC2
|
|
36506
36608
|
# Amazon EBS encryption. For more information, see [Supported instance
|
36507
36609
|
# types][2].
|
36508
36610
|
#
|
36509
|
-
# This parameter is not returned by .
|
36611
|
+
# This parameter is not returned by [DescribeImageAttribute][3].
|
36510
36612
|
#
|
36511
|
-
# For and , whether you can include
|
36512
|
-
# values differ depending on the type
|
36513
|
-
# creating.
|
36613
|
+
# For [CreateImage][4] and [RegisterImage][5], whether you can include
|
36614
|
+
# this parameter, and the allowed values differ depending on the type
|
36615
|
+
# of block device mapping you are creating.
|
36514
36616
|
#
|
36515
36617
|
# * If you are creating a block device mapping for a **new (empty)
|
36516
36618
|
# volume**, you can include this parameter, and specify either
|
@@ -36538,6 +36640,9 @@ module Aws::EC2
|
|
36538
36640
|
#
|
36539
36641
|
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
|
36540
36642
|
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption-requirements.html#ebs-encryption_supported_instances
|
36643
|
+
# [3]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeImageAttribute
|
36644
|
+
# [4]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateImage
|
36645
|
+
# [5]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RegisterImage
|
36541
36646
|
# @return [Boolean]
|
36542
36647
|
#
|
36543
36648
|
# @!attribute [rw] delete_on_termination
|
@@ -45123,6 +45228,9 @@ module Aws::EC2
|
|
45123
45228
|
#
|
45124
45229
|
# * For instance types with GPU accelerators, specify `gpu`.
|
45125
45230
|
#
|
45231
|
+
# * For instance types with Inference accelerators, specify
|
45232
|
+
# `inference`.
|
45233
|
+
#
|
45126
45234
|
# Default: Any accelerator type
|
45127
45235
|
# @return [Array<String>]
|
45128
45236
|
#
|
@@ -45606,6 +45714,9 @@ module Aws::EC2
|
|
45606
45714
|
#
|
45607
45715
|
# * For instance types with GPU accelerators, specify `gpu`.
|
45608
45716
|
#
|
45717
|
+
# * For instance types with Inference accelerators, specify
|
45718
|
+
# `inference`.
|
45719
|
+
#
|
45609
45720
|
# Default: Any accelerator type
|
45610
45721
|
# @return [Array<String>]
|
45611
45722
|
#
|
@@ -46677,6 +46788,24 @@ module Aws::EC2
|
|
46677
46788
|
# addresses. This option is disabled by default.
|
46678
46789
|
# @return [Boolean]
|
46679
46790
|
#
|
46791
|
+
# @!attribute [rw] metered_account
|
46792
|
+
# A metered account is an Amazon Web Services account that is charged
|
46793
|
+
# for active IP addresses managed in IPAM. For more information, see
|
46794
|
+
# [Enable cost distribution][1] in the *Amazon VPC IPAM User Guide*.
|
46795
|
+
#
|
46796
|
+
# Possible values:
|
46797
|
+
#
|
46798
|
+
# * `ipam-owner` (default): The Amazon Web Services account which owns
|
46799
|
+
# the IPAM is charged for all active IP addresses managed in IPAM.
|
46800
|
+
#
|
46801
|
+
# * `resource-owner`: The Amazon Web Services account that owns the IP
|
46802
|
+
# address is charged for the active IP address.
|
46803
|
+
#
|
46804
|
+
#
|
46805
|
+
#
|
46806
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/ipam/ipam-enable-cost-distro.html
|
46807
|
+
# @return [String]
|
46808
|
+
#
|
46680
46809
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipam AWS API Documentation
|
46681
46810
|
#
|
46682
46811
|
class Ipam < Struct.new(
|
@@ -46696,7 +46825,8 @@ module Aws::EC2
|
|
46696
46825
|
:resource_discovery_association_count,
|
46697
46826
|
:state_message,
|
46698
46827
|
:tier,
|
46699
|
-
:enable_private_gua
|
46828
|
+
:enable_private_gua,
|
46829
|
+
:metered_account)
|
46700
46830
|
SENSITIVE = []
|
46701
46831
|
include Aws::Structure
|
46702
46832
|
end
|
@@ -49658,11 +49788,13 @@ module Aws::EC2
|
|
49658
49788
|
# @return [String]
|
49659
49789
|
#
|
49660
49790
|
# @!attribute [rw] device_index
|
49661
|
-
# The device index for the network interface attachment.
|
49662
|
-
# interface
|
49663
|
-
#
|
49664
|
-
#
|
49665
|
-
#
|
49791
|
+
# The device index for the network interface attachment. The primary
|
49792
|
+
# network interface has a device index of 0. Each network interface is
|
49793
|
+
# of type `interface`, you must specify a device index. If you create
|
49794
|
+
# a launch template that includes secondary network interfaces but not
|
49795
|
+
# a primary network interface, then you must add a primary network
|
49796
|
+
# interface as a launch parameter when you launch an instance from the
|
49797
|
+
# template.
|
49666
49798
|
# @return [Integer]
|
49667
49799
|
#
|
49668
49800
|
# @!attribute [rw] groups
|
@@ -51880,12 +52012,26 @@ module Aws::EC2
|
|
51880
52012
|
# is established.
|
51881
52013
|
# @return [Types::ClientLoginBannerOptions]
|
51882
52014
|
#
|
52015
|
+
# @!attribute [rw] client_route_enforcement_options
|
52016
|
+
# Client route enforcement is a feature of the Client VPN service that
|
52017
|
+
# helps enforce administrator defined routes on devices connected
|
52018
|
+
# through the VPN. T his feature helps improve your security posture
|
52019
|
+
# by ensuring that network traffic originating from a connected client
|
52020
|
+
# is not inadvertently sent outside the VPN tunnel.
|
52021
|
+
#
|
52022
|
+
# Client route enforcement works by monitoring the route table of a
|
52023
|
+
# connected device for routing policy changes to the VPN connection.
|
52024
|
+
# If the feature detects any VPN routing policy modifications, it will
|
52025
|
+
# automatically force an update to the route table, reverting it back
|
52026
|
+
# to the expected route configurations.
|
52027
|
+
# @return [Types::ClientRouteEnforcementOptions]
|
52028
|
+
#
|
51883
52029
|
# @!attribute [rw] disconnect_on_session_timeout
|
51884
52030
|
# Indicates whether the client VPN session is disconnected after the
|
51885
52031
|
# maximum timeout specified in `sessionTimeoutHours` is reached. If
|
51886
52032
|
# `true`, users are prompted to reconnect client VPN. If `false`,
|
51887
52033
|
# client VPN attempts to reconnect automatically. The default value is
|
51888
|
-
# `
|
52034
|
+
# `true`.
|
51889
52035
|
# @return [Boolean]
|
51890
52036
|
#
|
51891
52037
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyClientVpnEndpointRequest AWS API Documentation
|
@@ -51905,6 +52051,7 @@ module Aws::EC2
|
|
51905
52051
|
:client_connect_options,
|
51906
52052
|
:session_timeout_hours,
|
51907
52053
|
:client_login_banner_options,
|
52054
|
+
:client_route_enforcement_options,
|
51908
52055
|
:disconnect_on_session_timeout)
|
51909
52056
|
SENSITIVE = []
|
51910
52057
|
include Aws::Structure
|
@@ -52435,6 +52582,14 @@ module Aws::EC2
|
|
52435
52582
|
# @!attribute [rw] attribute
|
52436
52583
|
# The name of the attribute to modify.
|
52437
52584
|
#
|
52585
|
+
# <note markdown="1"> When changing the instance type: If the original instance type is
|
52586
|
+
# configured for configurable bandwidth, and the desired instance type
|
52587
|
+
# doesn't support configurable bandwidth, first set the existing
|
52588
|
+
# bandwidth configuration to `default` using the
|
52589
|
+
# ModifyInstanceNetworkPerformanceOptions operation.
|
52590
|
+
#
|
52591
|
+
# </note>
|
52592
|
+
#
|
52438
52593
|
# You can modify the following attributes only:
|
52439
52594
|
# `disableApiTermination` \| `instanceType` \| `kernel` \| `ramdisk`
|
52440
52595
|
# \| `instanceInitiatedShutdownBehavior` \| `blockDeviceMapping` \|
|
@@ -53346,6 +53501,24 @@ module Aws::EC2
|
|
53346
53501
|
# addresses. This option is disabled by default.
|
53347
53502
|
# @return [Boolean]
|
53348
53503
|
#
|
53504
|
+
# @!attribute [rw] metered_account
|
53505
|
+
# A metered account is an Amazon Web Services account that is charged
|
53506
|
+
# for active IP addresses managed in IPAM. For more information, see
|
53507
|
+
# [Enable cost distribution][1] in the *Amazon VPC IPAM User Guide*.
|
53508
|
+
#
|
53509
|
+
# Possible values:
|
53510
|
+
#
|
53511
|
+
# * `ipam-owner` (default): The Amazon Web Services account which owns
|
53512
|
+
# the IPAM is charged for all active IP addresses managed in IPAM.
|
53513
|
+
#
|
53514
|
+
# * `resource-owner`: The Amazon Web Services account that owns the IP
|
53515
|
+
# address is charged for the active IP address.
|
53516
|
+
#
|
53517
|
+
#
|
53518
|
+
#
|
53519
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/ipam/ipam-enable-cost-distro.html
|
53520
|
+
# @return [String]
|
53521
|
+
#
|
53349
53522
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamRequest AWS API Documentation
|
53350
53523
|
#
|
53351
53524
|
class ModifyIpamRequest < Struct.new(
|
@@ -53355,7 +53528,8 @@ module Aws::EC2
|
|
53355
53528
|
:add_operating_regions,
|
53356
53529
|
:remove_operating_regions,
|
53357
53530
|
:tier,
|
53358
|
-
:enable_private_gua
|
53531
|
+
:enable_private_gua,
|
53532
|
+
:metered_account)
|
53359
53533
|
SENSITIVE = []
|
53360
53534
|
include Aws::Structure
|
53361
53535
|
end
|
@@ -58901,12 +59075,19 @@ module Aws::EC2
|
|
58901
59075
|
# unsupported instance families.
|
58902
59076
|
#
|
58903
59077
|
# If you specify an unsupported instance family as a value for
|
58904
|
-
# baseline performance, the API returns an empty response for
|
58905
|
-
#
|
59078
|
+
# baseline performance, the API returns an empty response for
|
59079
|
+
# [GetInstanceTypesFromInstanceRequirements][2] and an exception for
|
59080
|
+
# [CreateFleet][3], [RequestSpotFleet][4], [ModifyFleet][5], and
|
59081
|
+
# [ModifySpotFleetRequest][6].
|
58906
59082
|
#
|
58907
59083
|
#
|
58908
59084
|
#
|
58909
59085
|
# [1]: https://docs.aws.amazon.com/ec2/latest/instancetypes/instance-type-names.html
|
59086
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetInstanceTypesFromInstanceRequirements
|
59087
|
+
# [3]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateFleet
|
59088
|
+
# [4]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RequestSpotFleet
|
59089
|
+
# [5]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifyFleet
|
59090
|
+
# [6]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifySpotFleetRequest
|
58910
59091
|
# @return [String]
|
58911
59092
|
#
|
58912
59093
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PerformanceFactorReference AWS API Documentation
|
@@ -58964,12 +59145,19 @@ module Aws::EC2
|
|
58964
59145
|
# unsupported instance families.
|
58965
59146
|
#
|
58966
59147
|
# If you specify an unsupported instance family as a value for
|
58967
|
-
# baseline performance, the API returns an empty response for
|
58968
|
-
#
|
59148
|
+
# baseline performance, the API returns an empty response for
|
59149
|
+
# [GetInstanceTypesFromInstanceRequirements][2] and an exception for
|
59150
|
+
# [CreateFleet][3], [RequestSpotFleet][4], [ModifyFleet][5], and
|
59151
|
+
# [ModifySpotFleetRequest][6].
|
58969
59152
|
#
|
58970
59153
|
#
|
58971
59154
|
#
|
58972
59155
|
# [1]: https://docs.aws.amazon.com/ec2/latest/instancetypes/instance-type-names.html
|
59156
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetInstanceTypesFromInstanceRequirements
|
59157
|
+
# [3]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateFleet
|
59158
|
+
# [4]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RequestSpotFleet
|
59159
|
+
# [5]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifyFleet
|
59160
|
+
# [6]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifySpotFleetRequest
|
58973
59161
|
# @return [String]
|
58974
59162
|
#
|
58975
59163
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PerformanceFactorReferenceRequest AWS API Documentation
|
@@ -64537,15 +64725,15 @@ module Aws::EC2
|
|
64537
64725
|
# Amazon VPC Route Server simplifies routing for traffic between
|
64538
64726
|
# workloads that are deployed within a VPC and its internet gateways.
|
64539
64727
|
# With this feature, VPC Route Server dynamically updates VPC and
|
64540
|
-
# gateway route tables with your preferred IPv4 or IPv6 routes
|
64541
|
-
# achieve routing fault tolerance for those workloads. This enables
|
64542
|
-
# to automatically reroute traffic within a VPC, which increases the
|
64728
|
+
# internet gateway route tables with your preferred IPv4 or IPv6 routes
|
64729
|
+
# to achieve routing fault tolerance for those workloads. This enables
|
64730
|
+
# you to automatically reroute traffic within a VPC, which increases the
|
64543
64731
|
# manageability of VPC routing and interoperability with third-party
|
64544
64732
|
# workloads.
|
64545
64733
|
#
|
64546
64734
|
# Route server supports the follow route table types:
|
64547
64735
|
#
|
64548
|
-
# * VPC route tables
|
64736
|
+
# * VPC route tables not associated with subnets
|
64549
64737
|
#
|
64550
64738
|
# * Subnet route tables
|
64551
64739
|
#
|
@@ -64626,8 +64814,7 @@ module Aws::EC2
|
|
64626
64814
|
# Describes the association between a route server and a VPC.
|
64627
64815
|
#
|
64628
64816
|
# A route server association is the connection established between a
|
64629
|
-
# route server and a VPC.
|
64630
|
-
# enables the route server to work with appliances in your VPC.
|
64817
|
+
# route server and a VPC.
|
64631
64818
|
#
|
64632
64819
|
# @!attribute [rw] route_server_id
|
64633
64820
|
# The ID of the associated route server.
|
@@ -64761,9 +64948,12 @@ module Aws::EC2
|
|
64761
64948
|
# Describes a route server endpoint and its properties.
|
64762
64949
|
#
|
64763
64950
|
# A route server endpoint is an Amazon Web Services-managed component
|
64764
|
-
# inside a subnet that facilitates BGP (Border Gateway Protocol)
|
64765
|
-
# connections between your route server and your BGP peers.
|
64766
|
-
#
|
64951
|
+
# inside a subnet that facilitates [BGP (Border Gateway Protocol)][1]
|
64952
|
+
# connections between your route server and your BGP peers.
|
64953
|
+
#
|
64954
|
+
#
|
64955
|
+
#
|
64956
|
+
# [1]: https://en.wikipedia.org/wiki/Border_Gateway_Protocol
|
64767
64957
|
#
|
64768
64958
|
# @!attribute [rw] route_server_id
|
64769
64959
|
# The ID of the route server associated with this endpoint.
|
@@ -64819,9 +65009,10 @@ module Aws::EC2
|
|
64819
65009
|
|
64820
65010
|
# Describes a BGP peer configuration for a route server endpoint.
|
64821
65011
|
#
|
64822
|
-
# A route server peer is a
|
64823
|
-
# Amazon Web Services
|
64824
|
-
# security
|
65012
|
+
# A route server peer is a session between a route server endpoint and
|
65013
|
+
# the device deployed in Amazon Web Services (such as a firewall
|
65014
|
+
# appliance or other network security function running on an EC2
|
65015
|
+
# instance). The device must meet these requirements:
|
64825
65016
|
#
|
64826
65017
|
# * Have an elastic network interface in the VPC
|
64827
65018
|
#
|
@@ -64868,7 +65059,7 @@ module Aws::EC2
|
|
64868
65059
|
# @return [String]
|
64869
65060
|
#
|
64870
65061
|
# @!attribute [rw] peer_address
|
64871
|
-
# The IPv4 address of the peer.
|
65062
|
+
# The IPv4 address of the peer device.
|
64872
65063
|
# @return [String]
|
64873
65064
|
#
|
64874
65065
|
# @!attribute [rw] bgp_options
|
@@ -64969,8 +65160,8 @@ module Aws::EC2
|
|
64969
65160
|
# The [Forwarding Information Base (FIB)][2] serves as a forwarding
|
64970
65161
|
# table for what route server has determined are the best-path routes
|
64971
65162
|
# in the RIB after evaluating all available routing information and
|
64972
|
-
# policies. The FIB routes
|
64973
|
-
#
|
65163
|
+
# policies. The FIB routes are installed on the route tables. The FIB
|
65164
|
+
# is recomputed whenever there are changes to the RIB.
|
64974
65165
|
#
|
64975
65166
|
#
|
64976
65167
|
#
|
@@ -69684,12 +69875,22 @@ module Aws::EC2
|
|
69684
69875
|
# @return [Boolean]
|
69685
69876
|
#
|
69686
69877
|
# @!attribute [rw] force
|
69687
|
-
# Forces the
|
69688
|
-
#
|
69689
|
-
#
|
69690
|
-
#
|
69878
|
+
# Forces the instance to stop. The instance will first attempt a
|
69879
|
+
# graceful shutdown, which includes flushing file system caches and
|
69880
|
+
# metadata. If the graceful shutdown fails to complete within the
|
69881
|
+
# timeout period, the instance shuts down forcibly without flushing
|
69882
|
+
# the file system caches and metadata.
|
69883
|
+
#
|
69884
|
+
# After using this option, you must perform file system check and
|
69885
|
+
# repair procedures. This option is not recommended for Windows
|
69886
|
+
# instances. For more information, see [Troubleshoot Amazon EC2
|
69887
|
+
# instance stop issues][1] in the *Amazon EC2 User Guide*.
|
69691
69888
|
#
|
69692
69889
|
# Default: `false`
|
69890
|
+
#
|
69891
|
+
#
|
69892
|
+
#
|
69893
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstancesStopping.html
|
69693
69894
|
# @return [Boolean]
|
69694
69895
|
#
|
69695
69896
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/StopInstancesRequest AWS API Documentation
|
@@ -71692,7 +71893,10 @@ module Aws::EC2
|
|
71692
71893
|
#
|
71693
71894
|
# @!attribute [rw] default_route_table_association
|
71694
71895
|
# Indicates whether resource attachments are automatically associated
|
71695
|
-
# with the default association route table.
|
71896
|
+
# with the default association route table. Enabled by default. If
|
71897
|
+
# `defaultRouteTableAssociation` is set to `enable`, Amazon Web
|
71898
|
+
# Services Transit Gateway will create the default transit gateway
|
71899
|
+
# route table.
|
71696
71900
|
# @return [String]
|
71697
71901
|
#
|
71698
71902
|
# @!attribute [rw] association_default_route_table_id
|
@@ -71701,7 +71905,10 @@ module Aws::EC2
|
|
71701
71905
|
#
|
71702
71906
|
# @!attribute [rw] default_route_table_propagation
|
71703
71907
|
# Indicates whether resource attachments automatically propagate
|
71704
|
-
# routes to the default propagation route table.
|
71908
|
+
# routes to the default propagation route table. Enabled by default.
|
71909
|
+
# If `defaultRouteTablePropagation` is set to `enable`, Amazon Web
|
71910
|
+
# Services Transit Gateway will create the default transit gateway
|
71911
|
+
# route table.
|
71705
71912
|
# @return [String]
|
71706
71913
|
#
|
71707
71914
|
# @!attribute [rw] propagation_default_route_table_id
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/classic_address.rbs
CHANGED
@@ -54,7 +54,7 @@ module Aws
|
|
54
54
|
def carrier_ip: () -> ::String
|
55
55
|
|
56
56
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#service_managed-instance_method
|
57
|
-
def service_managed: () -> ("alb" | "nlb")
|
57
|
+
def service_managed: () -> ("alb" | "nlb" | "rnat")
|
58
58
|
|
59
59
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#instance_id-instance_method
|
60
60
|
def instance_id: () -> ::String
|
data/sig/client.rbs
CHANGED
@@ -1273,6 +1273,9 @@ module Aws
|
|
1273
1273
|
enabled: bool?,
|
1274
1274
|
banner_text: ::String?
|
1275
1275
|
},
|
1276
|
+
?client_route_enforcement_options: {
|
1277
|
+
enforced: bool?
|
1278
|
+
},
|
1276
1279
|
?disconnect_on_session_timeout: bool
|
1277
1280
|
) -> _CreateClientVpnEndpointResponseSuccess
|
1278
1281
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateClientVpnEndpointResponseSuccess
|
@@ -1848,7 +1851,8 @@ module Aws
|
|
1848
1851
|
],
|
1849
1852
|
?client_token: ::String,
|
1850
1853
|
?tier: ("free" | "advanced"),
|
1851
|
-
?enable_private_gua: bool
|
1854
|
+
?enable_private_gua: bool,
|
1855
|
+
?metered_account: ("ipam-owner" | "resource-owner")
|
1852
1856
|
) -> _CreateIpamResponseSuccess
|
1853
1857
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIpamResponseSuccess
|
1854
1858
|
|
@@ -10594,6 +10598,9 @@ module Aws
|
|
10594
10598
|
enabled: bool?,
|
10595
10599
|
banner_text: ::String?
|
10596
10600
|
},
|
10601
|
+
?client_route_enforcement_options: {
|
10602
|
+
enforced: bool?
|
10603
|
+
},
|
10597
10604
|
?disconnect_on_session_timeout: bool
|
10598
10605
|
) -> _ModifyClientVpnEndpointResponseSuccess
|
10599
10606
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyClientVpnEndpointResponseSuccess
|
@@ -11072,7 +11079,8 @@ module Aws
|
|
11072
11079
|
},
|
11073
11080
|
],
|
11074
11081
|
?tier: ("free" | "advanced"),
|
11075
|
-
?enable_private_gua: bool
|
11082
|
+
?enable_private_gua: bool,
|
11083
|
+
?metered_account: ("ipam-owner" | "resource-owner")
|
11076
11084
|
) -> _ModifyIpamResponseSuccess
|
11077
11085
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyIpamResponseSuccess
|
11078
11086
|
|