aws-sdk-ec2 1.514.0 → 1.516.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +153 -82
- data/lib/aws-sdk-ec2/client_api.rb +11 -0
- data/lib/aws-sdk-ec2/instance.rb +8 -0
- data/lib/aws-sdk-ec2/types.rb +137 -23
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/classic_address.rbs +1 -1
- data/sig/client.rbs +6 -0
- data/sig/types.rbs +14 -1
- data/sig/vpc_address.rbs +1 -1
- 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: 668a55cb6c253c445bc938e04fabc6e18b9d1e5e886451a6c038f91a52eebc74
|
4
|
+
data.tar.gz: a9b6b9f89cc21726efd63f940b3e3f1c9f5354c76a91f04d39c6481b18b91a57
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4fd3ab1d73e8121d66b5ca69606eb542556a4389fcc22de99a4096a539bb51681bd234f6f041728b7e5ea0cbeb45921be1e84d9d556cb3a3f767a510ec7be9e4
|
7
|
+
data.tar.gz: f86d2cd04454ce525d0d99d518e40fdb2fd1477dcd81d9db4df89bb5714b0c1eafbb5a68860bd3368ce3281ec41b8416a2729e76dfc403a66ec66273868e92c7
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.516.0 (2025-04-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added support for ClientRouteEnforcementOptions flag in CreateClientVpnEndpoint and ModifyClientVpnEndpoint requests and DescribeClientVpnEndpoints responses
|
8
|
+
|
9
|
+
1.515.0 (2025-04-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Doc-only updates for Amazon EC2
|
13
|
+
|
4
14
|
1.514.0 (2025-03-31)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.516.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -2425,15 +2425,14 @@ module Aws::EC2
|
|
2425
2425
|
# Associates a route server with a VPC to enable dynamic route updates.
|
2426
2426
|
#
|
2427
2427
|
# A route server association is the connection established between a
|
2428
|
-
# route server and a VPC.
|
2429
|
-
# enables the route server to work with appliances in your VPC.
|
2428
|
+
# route server and a VPC.
|
2430
2429
|
#
|
2431
2430
|
# For more information see [Dynamic routing in your VPC with VPC Route
|
2432
2431
|
# Server][1] in the *Amazon VPC User Guide*.
|
2433
2432
|
#
|
2434
2433
|
#
|
2435
2434
|
#
|
2436
|
-
# [1]: https://docs.aws.amazon.com/
|
2435
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/dynamic-routing-route-server.html
|
2437
2436
|
#
|
2438
2437
|
# @option params [required, String] :route_server_id
|
2439
2438
|
# The unique identifier for the route server to be associated.
|
@@ -6091,6 +6090,19 @@ module Aws::EC2
|
|
6091
6090
|
# on Amazon Web Services provided clients when a VPN session is
|
6092
6091
|
# established.
|
6093
6092
|
#
|
6093
|
+
# @option params [Types::ClientRouteEnforcementOptions] :client_route_enforcement_options
|
6094
|
+
# Client route enforcement is a feature of the Client VPN service that
|
6095
|
+
# helps enforce administrator defined routes on devices connected
|
6096
|
+
# through the VPN. T his feature helps improve your security posture by
|
6097
|
+
# ensuring that network traffic originating from a connected client is
|
6098
|
+
# not inadvertently sent outside the VPN tunnel.
|
6099
|
+
#
|
6100
|
+
# Client route enforcement works by monitoring the route table of a
|
6101
|
+
# connected device for routing policy changes to the VPN connection. If
|
6102
|
+
# the feature detects any VPN routing policy modifications, it will
|
6103
|
+
# automatically force an update to the route table, reverting it back to
|
6104
|
+
# the expected route configurations.
|
6105
|
+
#
|
6094
6106
|
# @option params [Boolean] :disconnect_on_session_timeout
|
6095
6107
|
# Indicates whether the client VPN session is disconnected after the
|
6096
6108
|
# maximum timeout specified in `SessionTimeoutHours` is reached. If
|
@@ -6158,6 +6170,9 @@ module Aws::EC2
|
|
6158
6170
|
# enabled: false,
|
6159
6171
|
# banner_text: "String",
|
6160
6172
|
# },
|
6173
|
+
# client_route_enforcement_options: {
|
6174
|
+
# enforced: false,
|
6175
|
+
# },
|
6161
6176
|
# disconnect_on_session_timeout: false,
|
6162
6177
|
# })
|
6163
6178
|
#
|
@@ -12120,15 +12135,15 @@ module Aws::EC2
|
|
12120
12135
|
# Amazon VPC Route Server simplifies routing for traffic between
|
12121
12136
|
# workloads that are deployed within a VPC and its internet gateways.
|
12122
12137
|
# With this feature, VPC Route Server dynamically updates VPC and
|
12123
|
-
# gateway route tables with your preferred IPv4 or IPv6 routes
|
12124
|
-
# achieve routing fault tolerance for those workloads. This enables
|
12125
|
-
# to automatically reroute traffic within a VPC, which increases the
|
12138
|
+
# internet gateway route tables with your preferred IPv4 or IPv6 routes
|
12139
|
+
# to achieve routing fault tolerance for those workloads. This enables
|
12140
|
+
# you to automatically reroute traffic within a VPC, which increases the
|
12126
12141
|
# manageability of VPC routing and interoperability with third-party
|
12127
12142
|
# workloads.
|
12128
12143
|
#
|
12129
12144
|
# Route server supports the follow route table types:
|
12130
12145
|
#
|
12131
|
-
# * VPC route tables
|
12146
|
+
# * VPC route tables not associated with subnets
|
12132
12147
|
#
|
12133
12148
|
# * Subnet route tables
|
12134
12149
|
#
|
@@ -12144,7 +12159,7 @@ module Aws::EC2
|
|
12144
12159
|
#
|
12145
12160
|
#
|
12146
12161
|
# [1]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-connect.html
|
12147
|
-
# [2]: https://docs.aws.amazon.com/
|
12162
|
+
# [2]: https://docs.aws.amazon.com/vpc/latest/userguide/dynamic-routing-route-server.html
|
12148
12163
|
#
|
12149
12164
|
# @option params [required, Integer] :amazon_side_asn
|
12150
12165
|
# The private Autonomous System Number (ASN) for the Amazon side of the
|
@@ -12241,9 +12256,16 @@ module Aws::EC2
|
|
12241
12256
|
# Creates a new endpoint for a route server in a specified subnet.
|
12242
12257
|
#
|
12243
12258
|
# A route server endpoint is an Amazon Web Services-managed component
|
12244
|
-
# inside a subnet that facilitates BGP (Border Gateway Protocol)
|
12245
|
-
# connections between your route server and your BGP peers.
|
12246
|
-
#
|
12259
|
+
# inside a subnet that facilitates [BGP (Border Gateway Protocol)][1]
|
12260
|
+
# connections between your route server and your BGP peers.
|
12261
|
+
#
|
12262
|
+
# For more information see [Dynamic routing in your VPC with VPC Route
|
12263
|
+
# Server][2] in the *Amazon VPC User Guide*.
|
12264
|
+
#
|
12265
|
+
#
|
12266
|
+
#
|
12267
|
+
# [1]: https://en.wikipedia.org/wiki/Border_Gateway_Protocol
|
12268
|
+
# [2]: https://docs.aws.amazon.com/vpc/latest/userguide/dynamic-routing-route-server.html
|
12247
12269
|
#
|
12248
12270
|
# @option params [required, String] :route_server_id
|
12249
12271
|
# The ID of the route server for which to create an endpoint.
|
@@ -12316,9 +12338,10 @@ module Aws::EC2
|
|
12316
12338
|
|
12317
12339
|
# Creates a new BGP peer for a specified route server endpoint.
|
12318
12340
|
#
|
12319
|
-
# A route server peer is a
|
12320
|
-
# Amazon Web Services
|
12321
|
-
# security
|
12341
|
+
# A route server peer is a session between a route server endpoint and
|
12342
|
+
# the device deployed in Amazon Web Services (such as a firewall
|
12343
|
+
# appliance or other network security function running on an EC2
|
12344
|
+
# instance). The device must meet these requirements:
|
12322
12345
|
#
|
12323
12346
|
# * Have an elastic network interface in the VPC
|
12324
12347
|
#
|
@@ -12326,11 +12349,18 @@ module Aws::EC2
|
|
12326
12349
|
#
|
12327
12350
|
# * Can initiate BGP sessions
|
12328
12351
|
#
|
12352
|
+
# For more information see [Dynamic routing in your VPC with VPC Route
|
12353
|
+
# Server][1] in the *Amazon VPC User Guide*.
|
12354
|
+
#
|
12355
|
+
#
|
12356
|
+
#
|
12357
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/dynamic-routing-route-server.html
|
12358
|
+
#
|
12329
12359
|
# @option params [required, String] :route_server_endpoint_id
|
12330
12360
|
# The ID of the route server endpoint for which to create a peer.
|
12331
12361
|
#
|
12332
12362
|
# @option params [required, String] :peer_address
|
12333
|
-
# The IPv4 address of the peer.
|
12363
|
+
# The IPv4 address of the peer device.
|
12334
12364
|
#
|
12335
12365
|
# @option params [required, Types::RouteServerBgpOptionsRequest] :bgp_options
|
12336
12366
|
# The BGP options for the peer, including ASN (Autonomous System Number)
|
@@ -18885,15 +18915,15 @@ module Aws::EC2
|
|
18885
18915
|
# Amazon VPC Route Server simplifies routing for traffic between
|
18886
18916
|
# workloads that are deployed within a VPC and its internet gateways.
|
18887
18917
|
# With this feature, VPC Route Server dynamically updates VPC and
|
18888
|
-
# gateway route tables with your preferred IPv4 or IPv6 routes
|
18889
|
-
# achieve routing fault tolerance for those workloads. This enables
|
18890
|
-
# to automatically reroute traffic within a VPC, which increases the
|
18918
|
+
# internet gateway route tables with your preferred IPv4 or IPv6 routes
|
18919
|
+
# to achieve routing fault tolerance for those workloads. This enables
|
18920
|
+
# you to automatically reroute traffic within a VPC, which increases the
|
18891
18921
|
# manageability of VPC routing and interoperability with third-party
|
18892
18922
|
# workloads.
|
18893
18923
|
#
|
18894
18924
|
# Route server supports the follow route table types:
|
18895
18925
|
#
|
18896
|
-
# * VPC route tables
|
18926
|
+
# * VPC route tables not associated with subnets
|
18897
18927
|
#
|
18898
18928
|
# * Subnet route tables
|
18899
18929
|
#
|
@@ -18909,7 +18939,7 @@ module Aws::EC2
|
|
18909
18939
|
#
|
18910
18940
|
#
|
18911
18941
|
# [1]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-connect.html
|
18912
|
-
# [2]: https://docs.aws.amazon.com/
|
18942
|
+
# [2]: https://docs.aws.amazon.com/vpc/latest/userguide/dynamic-routing-route-server.html
|
18913
18943
|
#
|
18914
18944
|
# @option params [required, String] :route_server_id
|
18915
18945
|
# The ID of the route server to delete.
|
@@ -18956,9 +18986,12 @@ module Aws::EC2
|
|
18956
18986
|
# Deletes the specified route server endpoint.
|
18957
18987
|
#
|
18958
18988
|
# A route server endpoint is an Amazon Web Services-managed component
|
18959
|
-
# inside a subnet that facilitates BGP (Border Gateway Protocol)
|
18960
|
-
# connections between your route server and your BGP peers.
|
18961
|
-
#
|
18989
|
+
# inside a subnet that facilitates [BGP (Border Gateway Protocol)][1]
|
18990
|
+
# connections between your route server and your BGP peers.
|
18991
|
+
#
|
18992
|
+
#
|
18993
|
+
#
|
18994
|
+
# [1]: https://en.wikipedia.org/wiki/Border_Gateway_Protocol
|
18962
18995
|
#
|
18963
18996
|
# @option params [required, String] :route_server_endpoint_id
|
18964
18997
|
# The ID of the route server endpoint to delete.
|
@@ -19005,9 +19038,10 @@ module Aws::EC2
|
|
19005
19038
|
|
19006
19039
|
# Deletes the specified BGP peer from a route server.
|
19007
19040
|
#
|
19008
|
-
# A route server peer is a
|
19009
|
-
# Amazon Web Services
|
19010
|
-
# security
|
19041
|
+
# A route server peer is a session between a route server endpoint and
|
19042
|
+
# the device deployed in Amazon Web Services (such as a firewall
|
19043
|
+
# appliance or other network security function running on an EC2
|
19044
|
+
# instance). The device must meet these requirements:
|
19011
19045
|
#
|
19012
19046
|
# * Have an elastic network interface in the VPC
|
19013
19047
|
#
|
@@ -21021,27 +21055,35 @@ module Aws::EC2
|
|
21021
21055
|
req.send_request(options)
|
21022
21056
|
end
|
21023
21057
|
|
21024
|
-
# Deregisters the specified AMI.
|
21025
|
-
#
|
21058
|
+
# Deregisters the specified AMI. A deregistered AMI can't be used to
|
21059
|
+
# launch new instances.
|
21026
21060
|
#
|
21027
|
-
# If
|
21028
|
-
#
|
21029
|
-
#
|
21030
|
-
#
|
21061
|
+
# If a deregistered EBS-backed AMI matches a Recycle Bin retention rule,
|
21062
|
+
# it moves to the Recycle Bin for the specified retention period. It can
|
21063
|
+
# be restored before its retention period expires, after which it is
|
21064
|
+
# permanently deleted. If the deregistered AMI doesn't match a
|
21065
|
+
# retention rule, it is permanently deleted immediately. For more
|
21066
|
+
# information, see [Recycle Bin][1] in the *Amazon EBS User Guide*.
|
21067
|
+
#
|
21068
|
+
# Deregistering an AMI does not delete the following:
|
21031
21069
|
#
|
21032
|
-
#
|
21033
|
-
#
|
21034
|
-
# costs for those instances until you terminate them.
|
21070
|
+
# * Instances already launched from the AMI. You'll continue to incur
|
21071
|
+
# usage costs for the instances until you terminate them.
|
21035
21072
|
#
|
21036
|
-
#
|
21037
|
-
#
|
21038
|
-
#
|
21039
|
-
#
|
21040
|
-
#
|
21073
|
+
# * For EBS-backed AMIs: The snapshots that were created of the root and
|
21074
|
+
# data volumes of the instance during AMI creation. You'll continue
|
21075
|
+
# to incur snapshot storage costs.
|
21076
|
+
#
|
21077
|
+
# * For instance store-backed AMIs: The files uploaded to Amazon S3
|
21078
|
+
# during AMI creation. You'll continue to incur S3 storage costs.
|
21079
|
+
#
|
21080
|
+
# For more information, see [Deregister an Amazon EC2 AMI][2] in the
|
21081
|
+
# *Amazon EC2 User Guide*.
|
21041
21082
|
#
|
21042
21083
|
#
|
21043
21084
|
#
|
21044
21085
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/recycle-bin.html
|
21086
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/deregister-ami.html
|
21045
21087
|
#
|
21046
21088
|
# @option params [required, String] :image_id
|
21047
21089
|
# The ID of the AMI.
|
@@ -21552,7 +21594,7 @@ module Aws::EC2
|
|
21552
21594
|
# resp.addresses[0].customer_owned_ip #=> String
|
21553
21595
|
# resp.addresses[0].customer_owned_ipv_4_pool #=> String
|
21554
21596
|
# resp.addresses[0].carrier_ip #=> String
|
21555
|
-
# resp.addresses[0].service_managed #=> String, one of "alb", "nlb"
|
21597
|
+
# resp.addresses[0].service_managed #=> String, one of "alb", "nlb", "rnat"
|
21556
21598
|
# resp.addresses[0].instance_id #=> String
|
21557
21599
|
# resp.addresses[0].public_ip #=> String
|
21558
21600
|
#
|
@@ -23129,6 +23171,7 @@ module Aws::EC2
|
|
23129
23171
|
# resp.client_vpn_endpoints[0].session_timeout_hours #=> Integer
|
23130
23172
|
# resp.client_vpn_endpoints[0].client_login_banner_options.enabled #=> Boolean
|
23131
23173
|
# resp.client_vpn_endpoints[0].client_login_banner_options.banner_text #=> String
|
23174
|
+
# resp.client_vpn_endpoints[0].client_route_enforcement_options.enforced #=> Boolean
|
23132
23175
|
# resp.client_vpn_endpoints[0].disconnect_on_session_timeout #=> Boolean
|
23133
23176
|
# resp.next_token #=> String
|
23134
23177
|
#
|
@@ -27375,6 +27418,9 @@ module Aws::EC2
|
|
27375
27418
|
# latest generation instance type of an instance family (`true` \|
|
27376
27419
|
# `false`).
|
27377
27420
|
#
|
27421
|
+
# * `dedicated-hosts-supported` - Indicates whether the instance type
|
27422
|
+
# supports Dedicated Hosts. (`true` \| `false`)
|
27423
|
+
#
|
27378
27424
|
# * `ebs-info.ebs-optimized-info.baseline-bandwidth-in-mbps` - The
|
27379
27425
|
# baseline bandwidth performance for an EBS-optimized instance type,
|
27380
27426
|
# in Mbps.
|
@@ -33821,16 +33867,16 @@ module Aws::EC2
|
|
33821
33867
|
# Describes one or more route server endpoints.
|
33822
33868
|
#
|
33823
33869
|
# A route server endpoint is an Amazon Web Services-managed component
|
33824
|
-
# inside a subnet that facilitates BGP (Border Gateway Protocol)
|
33825
|
-
# connections between your route server and your BGP peers.
|
33826
|
-
# endpoints per subnet for redundancy.
|
33870
|
+
# inside a subnet that facilitates [BGP (Border Gateway Protocol)][1]
|
33871
|
+
# connections between your route server and your BGP peers.
|
33827
33872
|
#
|
33828
33873
|
# For more information see [Dynamic routing in your VPC with VPC Route
|
33829
|
-
# Server][
|
33874
|
+
# Server][2] in the *Amazon VPC User Guide*.
|
33830
33875
|
#
|
33831
33876
|
#
|
33832
33877
|
#
|
33833
|
-
# [1]: https://
|
33878
|
+
# [1]: https://en.wikipedia.org/wiki/Border_Gateway_Protocol
|
33879
|
+
# [2]: https://docs.aws.amazon.com/vpc/latest/userguide/dynamic-routing-route-server.html
|
33834
33880
|
#
|
33835
33881
|
# @option params [Array<String>] :route_server_endpoint_ids
|
33836
33882
|
# The IDs of the route server endpoints to describe.
|
@@ -33899,9 +33945,10 @@ module Aws::EC2
|
|
33899
33945
|
|
33900
33946
|
# Describes one or more route server peers.
|
33901
33947
|
#
|
33902
|
-
# A route server peer is a
|
33903
|
-
# Amazon Web Services
|
33904
|
-
# security
|
33948
|
+
# A route server peer is a session between a route server endpoint and
|
33949
|
+
# the device deployed in Amazon Web Services (such as a firewall
|
33950
|
+
# appliance or other network security function running on an EC2
|
33951
|
+
# instance). The device must meet these requirements:
|
33905
33952
|
#
|
33906
33953
|
# * Have an elastic network interface in the VPC
|
33907
33954
|
#
|
@@ -33914,7 +33961,7 @@ module Aws::EC2
|
|
33914
33961
|
#
|
33915
33962
|
#
|
33916
33963
|
#
|
33917
|
-
# [1]: https://docs.aws.amazon.com/
|
33964
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/dynamic-routing-route-server.html
|
33918
33965
|
#
|
33919
33966
|
# @option params [Array<String>] :route_server_peer_ids
|
33920
33967
|
# The IDs of the route server peers to describe.
|
@@ -33992,15 +34039,15 @@ module Aws::EC2
|
|
33992
34039
|
# Amazon VPC Route Server simplifies routing for traffic between
|
33993
34040
|
# workloads that are deployed within a VPC and its internet gateways.
|
33994
34041
|
# With this feature, VPC Route Server dynamically updates VPC and
|
33995
|
-
# gateway route tables with your preferred IPv4 or IPv6 routes
|
33996
|
-
# achieve routing fault tolerance for those workloads. This enables
|
33997
|
-
# to automatically reroute traffic within a VPC, which increases the
|
34042
|
+
# internet gateway route tables with your preferred IPv4 or IPv6 routes
|
34043
|
+
# to achieve routing fault tolerance for those workloads. This enables
|
34044
|
+
# you to automatically reroute traffic within a VPC, which increases the
|
33998
34045
|
# manageability of VPC routing and interoperability with third-party
|
33999
34046
|
# workloads.
|
34000
34047
|
#
|
34001
34048
|
# Route server supports the follow route table types:
|
34002
34049
|
#
|
34003
|
-
# * VPC route tables
|
34050
|
+
# * VPC route tables not associated with subnets
|
34004
34051
|
#
|
34005
34052
|
# * Subnet route tables
|
34006
34053
|
#
|
@@ -34016,7 +34063,7 @@ module Aws::EC2
|
|
34016
34063
|
#
|
34017
34064
|
#
|
34018
34065
|
# [1]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-connect.html
|
34019
|
-
# [2]: https://docs.aws.amazon.com/
|
34066
|
+
# [2]: https://docs.aws.amazon.com/vpc/latest/userguide/dynamic-routing-route-server.html
|
34020
34067
|
#
|
34021
34068
|
# @option params [Array<String>] :route_server_ids
|
34022
34069
|
# The IDs of the route servers to describe.
|
@@ -40268,7 +40315,8 @@ module Aws::EC2
|
|
40268
40315
|
end
|
40269
40316
|
|
40270
40317
|
# Describes the principals (service consumers) that are permitted to
|
40271
|
-
# discover your VPC endpoint service.
|
40318
|
+
# discover your VPC endpoint service. Principal ARNs with path
|
40319
|
+
# components aren't supported.
|
40272
40320
|
#
|
40273
40321
|
# @option params [Boolean] :dry_run
|
40274
40322
|
# Checks whether you have the required permissions for the action,
|
@@ -42153,15 +42201,15 @@ module Aws::EC2
|
|
42153
42201
|
# Amazon VPC Route Server simplifies routing for traffic between
|
42154
42202
|
# workloads that are deployed within a VPC and its internet gateways.
|
42155
42203
|
# With this feature, VPC Route Server dynamically updates VPC and
|
42156
|
-
# gateway route tables with your preferred IPv4 or IPv6 routes
|
42157
|
-
# achieve routing fault tolerance for those workloads. This enables
|
42158
|
-
# to automatically reroute traffic within a VPC, which increases the
|
42204
|
+
# internet gateway route tables with your preferred IPv4 or IPv6 routes
|
42205
|
+
# to achieve routing fault tolerance for those workloads. This enables
|
42206
|
+
# you to automatically reroute traffic within a VPC, which increases the
|
42159
42207
|
# manageability of VPC routing and interoperability with third-party
|
42160
42208
|
# workloads.
|
42161
42209
|
#
|
42162
42210
|
# Route server supports the follow route table types:
|
42163
42211
|
#
|
42164
|
-
# * VPC route tables
|
42212
|
+
# * VPC route tables not associated with subnets
|
42165
42213
|
#
|
42166
42214
|
# * Subnet route tables
|
42167
42215
|
#
|
@@ -42177,7 +42225,7 @@ module Aws::EC2
|
|
42177
42225
|
#
|
42178
42226
|
#
|
42179
42227
|
# [1]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-connect.html
|
42180
|
-
# [2]: https://docs.aws.amazon.com/
|
42228
|
+
# [2]: https://docs.aws.amazon.com/vpc/latest/userguide/dynamic-routing-route-server.html
|
42181
42229
|
#
|
42182
42230
|
# @option params [required, String] :route_server_id
|
42183
42231
|
# The ID of the route server for which to disable propagation.
|
@@ -42976,15 +43024,14 @@ module Aws::EC2
|
|
42976
43024
|
# Disassociates a route server from a VPC.
|
42977
43025
|
#
|
42978
43026
|
# A route server association is the connection established between a
|
42979
|
-
# route server and a VPC.
|
42980
|
-
# enables the route server to work with appliances in your VPC.
|
43027
|
+
# route server and a VPC.
|
42981
43028
|
#
|
42982
43029
|
# For more information see [Dynamic routing in your VPC with VPC Route
|
42983
43030
|
# Server][1] in the *Amazon VPC User Guide*.
|
42984
43031
|
#
|
42985
43032
|
#
|
42986
43033
|
#
|
42987
|
-
# [1]: https://docs.aws.amazon.com/
|
43034
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/dynamic-routing-route-server.html
|
42988
43035
|
#
|
42989
43036
|
# @option params [required, String] :route_server_id
|
42990
43037
|
# The ID of the route server to disassociate.
|
@@ -44083,7 +44130,7 @@ module Aws::EC2
|
|
44083
44130
|
#
|
44084
44131
|
#
|
44085
44132
|
#
|
44086
|
-
# [1]: https://docs.aws.amazon.com/
|
44133
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/dynamic-routing-route-server.html
|
44087
44134
|
#
|
44088
44135
|
# @option params [required, String] :route_server_id
|
44089
44136
|
# The ID of the route server for which to enable propagation.
|
@@ -47599,15 +47646,14 @@ module Aws::EC2
|
|
47599
47646
|
# server.
|
47600
47647
|
#
|
47601
47648
|
# A route server association is the connection established between a
|
47602
|
-
# route server and a VPC.
|
47603
|
-
# enables the route server to work with appliances in your VPC.
|
47649
|
+
# route server and a VPC.
|
47604
47650
|
#
|
47605
47651
|
# For more information see [Dynamic routing in your VPC with VPC Route
|
47606
47652
|
# Server][1] in the *Amazon VPC User Guide*.
|
47607
47653
|
#
|
47608
47654
|
#
|
47609
47655
|
#
|
47610
|
-
# [1]: https://docs.aws.amazon.com/
|
47656
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/dynamic-routing-route-server.html
|
47611
47657
|
#
|
47612
47658
|
# @option params [required, String] :route_server_id
|
47613
47659
|
# The ID of the route server for which to get association information.
|
@@ -47655,15 +47701,15 @@ module Aws::EC2
|
|
47655
47701
|
# Amazon VPC Route Server simplifies routing for traffic between
|
47656
47702
|
# workloads that are deployed within a VPC and its internet gateways.
|
47657
47703
|
# With this feature, VPC Route Server dynamically updates VPC and
|
47658
|
-
# gateway route tables with your preferred IPv4 or IPv6 routes
|
47659
|
-
# achieve routing fault tolerance for those workloads. This enables
|
47660
|
-
# to automatically reroute traffic within a VPC, which increases the
|
47704
|
+
# internet gateway route tables with your preferred IPv4 or IPv6 routes
|
47705
|
+
# to achieve routing fault tolerance for those workloads. This enables
|
47706
|
+
# you to automatically reroute traffic within a VPC, which increases the
|
47661
47707
|
# manageability of VPC routing and interoperability with third-party
|
47662
47708
|
# workloads.
|
47663
47709
|
#
|
47664
47710
|
# Route server supports the follow route table types:
|
47665
47711
|
#
|
47666
|
-
# * VPC route tables
|
47712
|
+
# * VPC route tables not associated with subnets
|
47667
47713
|
#
|
47668
47714
|
# * Subnet route tables
|
47669
47715
|
#
|
@@ -47729,15 +47775,15 @@ module Aws::EC2
|
|
47729
47775
|
# Amazon VPC Route Server simplifies routing for traffic between
|
47730
47776
|
# workloads that are deployed within a VPC and its internet gateways.
|
47731
47777
|
# With this feature, VPC Route Server dynamically updates VPC and
|
47732
|
-
# gateway route tables with your preferred IPv4 or IPv6 routes
|
47733
|
-
# achieve routing fault tolerance for those workloads. This enables
|
47734
|
-
# to automatically reroute traffic within a VPC, which increases the
|
47778
|
+
# internet gateway route tables with your preferred IPv4 or IPv6 routes
|
47779
|
+
# to achieve routing fault tolerance for those workloads. This enables
|
47780
|
+
# you to automatically reroute traffic within a VPC, which increases the
|
47735
47781
|
# manageability of VPC routing and interoperability with third-party
|
47736
47782
|
# workloads.
|
47737
47783
|
#
|
47738
47784
|
# Route server supports the follow route table types:
|
47739
47785
|
#
|
47740
|
-
# * VPC route tables
|
47786
|
+
# * VPC route tables not associated with subnets
|
47741
47787
|
#
|
47742
47788
|
# * Subnet route tables
|
47743
47789
|
#
|
@@ -50454,6 +50500,19 @@ module Aws::EC2
|
|
50454
50500
|
# on Amazon Web Services provided clients when a VPN session is
|
50455
50501
|
# established.
|
50456
50502
|
#
|
50503
|
+
# @option params [Types::ClientRouteEnforcementOptions] :client_route_enforcement_options
|
50504
|
+
# Client route enforcement is a feature of the Client VPN service that
|
50505
|
+
# helps enforce administrator defined routes on devices connected
|
50506
|
+
# through the VPN. T his feature helps improve your security posture by
|
50507
|
+
# ensuring that network traffic originating from a connected client is
|
50508
|
+
# not inadvertently sent outside the VPN tunnel.
|
50509
|
+
#
|
50510
|
+
# Client route enforcement works by monitoring the route table of a
|
50511
|
+
# connected device for routing policy changes to the VPN connection. If
|
50512
|
+
# the feature detects any VPN routing policy modifications, it will
|
50513
|
+
# automatically force an update to the route table, reverting it back to
|
50514
|
+
# the expected route configurations.
|
50515
|
+
#
|
50457
50516
|
# @option params [Boolean] :disconnect_on_session_timeout
|
50458
50517
|
# Indicates whether the client VPN session is disconnected after the
|
50459
50518
|
# maximum timeout specified in `sessionTimeoutHours` is reached. If
|
@@ -50494,6 +50553,9 @@ module Aws::EC2
|
|
50494
50553
|
# enabled: false,
|
50495
50554
|
# banner_text: "String",
|
50496
50555
|
# },
|
50556
|
+
# client_route_enforcement_options: {
|
50557
|
+
# enforced: false,
|
50558
|
+
# },
|
50497
50559
|
# disconnect_on_session_timeout: false,
|
50498
50560
|
# })
|
50499
50561
|
#
|
@@ -51391,6 +51453,14 @@ module Aws::EC2
|
|
51391
51453
|
# @option params [String] :attribute
|
51392
51454
|
# The name of the attribute to modify.
|
51393
51455
|
#
|
51456
|
+
# <note markdown="1"> When changing the instance type: If the original instance type is
|
51457
|
+
# configured for configurable bandwidth, and the desired instance type
|
51458
|
+
# doesn't support configurable bandwidth, first set the existing
|
51459
|
+
# bandwidth configuration to `default` using the
|
51460
|
+
# ModifyInstanceNetworkPerformanceOptions operation.
|
51461
|
+
#
|
51462
|
+
# </note>
|
51463
|
+
#
|
51394
51464
|
# You can modify the following attributes only: `disableApiTermination`
|
51395
51465
|
# \| `instanceType` \| `kernel` \| `ramdisk` \|
|
51396
51466
|
# `instanceInitiatedShutdownBehavior` \| `blockDeviceMapping` \|
|
@@ -53359,15 +53429,15 @@ module Aws::EC2
|
|
53359
53429
|
# Amazon VPC Route Server simplifies routing for traffic between
|
53360
53430
|
# workloads that are deployed within a VPC and its internet gateways.
|
53361
53431
|
# With this feature, VPC Route Server dynamically updates VPC and
|
53362
|
-
# gateway route tables with your preferred IPv4 or IPv6 routes
|
53363
|
-
# achieve routing fault tolerance for those workloads. This enables
|
53364
|
-
# to automatically reroute traffic within a VPC, which increases the
|
53432
|
+
# internet gateway route tables with your preferred IPv4 or IPv6 routes
|
53433
|
+
# to achieve routing fault tolerance for those workloads. This enables
|
53434
|
+
# you to automatically reroute traffic within a VPC, which increases the
|
53365
53435
|
# manageability of VPC routing and interoperability with third-party
|
53366
53436
|
# workloads.
|
53367
53437
|
#
|
53368
53438
|
# Route server supports the follow route table types:
|
53369
53439
|
#
|
53370
|
-
# * VPC route tables
|
53440
|
+
# * VPC route tables not associated with subnets
|
53371
53441
|
#
|
53372
53442
|
# * Subnet route tables
|
53373
53443
|
#
|
@@ -53383,7 +53453,7 @@ module Aws::EC2
|
|
53383
53453
|
#
|
53384
53454
|
#
|
53385
53455
|
# [1]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-connect.html
|
53386
|
-
# [2]: https://docs.aws.amazon.com/
|
53456
|
+
# [2]: https://docs.aws.amazon.com/vpc/latest/userguide/dynamic-routing-route-server.html
|
53387
53457
|
#
|
53388
53458
|
# @option params [required, String] :route_server_id
|
53389
53459
|
# The ID of the route server to modify.
|
@@ -55887,6 +55957,7 @@ module Aws::EC2
|
|
55887
55957
|
# Modifies the permissions for your VPC endpoint service. You can add or
|
55888
55958
|
# remove permissions for service consumers (Amazon Web Services
|
55889
55959
|
# accounts, users, and IAM roles) to connect to your endpoint service.
|
55960
|
+
# Principal ARNs with path components aren't supported.
|
55890
55961
|
#
|
55891
55962
|
# If you grant permissions to all principals, the service is public. Any
|
55892
55963
|
# users who know the name of a public service can send a request to
|
@@ -64703,7 +64774,7 @@ module Aws::EC2
|
|
64703
64774
|
tracer: tracer
|
64704
64775
|
)
|
64705
64776
|
context[:gem_name] = 'aws-sdk-ec2'
|
64706
|
-
context[:gem_version] = '1.
|
64777
|
+
context[:gem_version] = '1.516.0'
|
64707
64778
|
Seahorse::Client::Request.new(handlers, context)
|
64708
64779
|
end
|
64709
64780
|
|
@@ -367,6 +367,8 @@ module Aws::EC2
|
|
367
367
|
ClientData = Shapes::StructureShape.new(name: 'ClientData')
|
368
368
|
ClientLoginBannerOptions = Shapes::StructureShape.new(name: 'ClientLoginBannerOptions')
|
369
369
|
ClientLoginBannerResponseOptions = Shapes::StructureShape.new(name: 'ClientLoginBannerResponseOptions')
|
370
|
+
ClientRouteEnforcementOptions = Shapes::StructureShape.new(name: 'ClientRouteEnforcementOptions')
|
371
|
+
ClientRouteEnforcementResponseOptions = Shapes::StructureShape.new(name: 'ClientRouteEnforcementResponseOptions')
|
370
372
|
ClientSecretType = Shapes::StringShape.new(name: 'ClientSecretType')
|
371
373
|
ClientVpnAuthentication = Shapes::StructureShape.new(name: 'ClientVpnAuthentication')
|
372
374
|
ClientVpnAuthenticationList = Shapes::ListShape.new(name: 'ClientVpnAuthenticationList')
|
@@ -4695,6 +4697,12 @@ module Aws::EC2
|
|
4695
4697
|
ClientLoginBannerResponseOptions.add_member(:banner_text, Shapes::ShapeRef.new(shape: String, location_name: "bannerText"))
|
4696
4698
|
ClientLoginBannerResponseOptions.struct_class = Types::ClientLoginBannerResponseOptions
|
4697
4699
|
|
4700
|
+
ClientRouteEnforcementOptions.add_member(:enforced, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enforced"))
|
4701
|
+
ClientRouteEnforcementOptions.struct_class = Types::ClientRouteEnforcementOptions
|
4702
|
+
|
4703
|
+
ClientRouteEnforcementResponseOptions.add_member(:enforced, Shapes::ShapeRef.new(shape: Boolean, location_name: "enforced"))
|
4704
|
+
ClientRouteEnforcementResponseOptions.struct_class = Types::ClientRouteEnforcementResponseOptions
|
4705
|
+
|
4698
4706
|
ClientVpnAuthentication.add_member(:type, Shapes::ShapeRef.new(shape: ClientVpnAuthenticationType, location_name: "type"))
|
4699
4707
|
ClientVpnAuthentication.add_member(:active_directory, Shapes::ShapeRef.new(shape: DirectoryServiceAuthentication, location_name: "activeDirectory"))
|
4700
4708
|
ClientVpnAuthentication.add_member(:mutual_authentication, Shapes::ShapeRef.new(shape: CertificateAuthentication, location_name: "mutualAuthentication"))
|
@@ -4760,6 +4768,7 @@ module Aws::EC2
|
|
4760
4768
|
ClientVpnEndpoint.add_member(:client_connect_options, Shapes::ShapeRef.new(shape: ClientConnectResponseOptions, location_name: "clientConnectOptions"))
|
4761
4769
|
ClientVpnEndpoint.add_member(:session_timeout_hours, Shapes::ShapeRef.new(shape: Integer, location_name: "sessionTimeoutHours"))
|
4762
4770
|
ClientVpnEndpoint.add_member(:client_login_banner_options, Shapes::ShapeRef.new(shape: ClientLoginBannerResponseOptions, location_name: "clientLoginBannerOptions"))
|
4771
|
+
ClientVpnEndpoint.add_member(:client_route_enforcement_options, Shapes::ShapeRef.new(shape: ClientRouteEnforcementResponseOptions, location_name: "clientRouteEnforcementOptions"))
|
4763
4772
|
ClientVpnEndpoint.add_member(:disconnect_on_session_timeout, Shapes::ShapeRef.new(shape: Boolean, location_name: "disconnectOnSessionTimeout"))
|
4764
4773
|
ClientVpnEndpoint.struct_class = Types::ClientVpnEndpoint
|
4765
4774
|
|
@@ -5040,6 +5049,7 @@ module Aws::EC2
|
|
5040
5049
|
CreateClientVpnEndpointRequest.add_member(:client_connect_options, Shapes::ShapeRef.new(shape: ClientConnectOptions, location_name: "ClientConnectOptions"))
|
5041
5050
|
CreateClientVpnEndpointRequest.add_member(:session_timeout_hours, Shapes::ShapeRef.new(shape: Integer, location_name: "SessionTimeoutHours"))
|
5042
5051
|
CreateClientVpnEndpointRequest.add_member(:client_login_banner_options, Shapes::ShapeRef.new(shape: ClientLoginBannerOptions, location_name: "ClientLoginBannerOptions"))
|
5052
|
+
CreateClientVpnEndpointRequest.add_member(:client_route_enforcement_options, Shapes::ShapeRef.new(shape: ClientRouteEnforcementOptions, location_name: "ClientRouteEnforcementOptions"))
|
5043
5053
|
CreateClientVpnEndpointRequest.add_member(:disconnect_on_session_timeout, Shapes::ShapeRef.new(shape: Boolean, location_name: "DisconnectOnSessionTimeout"))
|
5044
5054
|
CreateClientVpnEndpointRequest.struct_class = Types::CreateClientVpnEndpointRequest
|
5045
5055
|
|
@@ -12441,6 +12451,7 @@ module Aws::EC2
|
|
12441
12451
|
ModifyClientVpnEndpointRequest.add_member(:client_connect_options, Shapes::ShapeRef.new(shape: ClientConnectOptions, location_name: "ClientConnectOptions"))
|
12442
12452
|
ModifyClientVpnEndpointRequest.add_member(:session_timeout_hours, Shapes::ShapeRef.new(shape: Integer, location_name: "SessionTimeoutHours"))
|
12443
12453
|
ModifyClientVpnEndpointRequest.add_member(:client_login_banner_options, Shapes::ShapeRef.new(shape: ClientLoginBannerOptions, location_name: "ClientLoginBannerOptions"))
|
12454
|
+
ModifyClientVpnEndpointRequest.add_member(:client_route_enforcement_options, Shapes::ShapeRef.new(shape: ClientRouteEnforcementOptions, location_name: "ClientRouteEnforcementOptions"))
|
12444
12455
|
ModifyClientVpnEndpointRequest.add_member(:disconnect_on_session_timeout, Shapes::ShapeRef.new(shape: Boolean, location_name: "DisconnectOnSessionTimeout"))
|
12445
12456
|
ModifyClientVpnEndpointRequest.struct_class = Types::ModifyClientVpnEndpointRequest
|
12446
12457
|
|
data/lib/aws-sdk-ec2/instance.rb
CHANGED
@@ -1115,6 +1115,14 @@ module Aws::EC2
|
|
1115
1115
|
# @option options [String] :attribute
|
1116
1116
|
# The name of the attribute to modify.
|
1117
1117
|
#
|
1118
|
+
# <note markdown="1"> When changing the instance type: If the original instance type is
|
1119
|
+
# configured for configurable bandwidth, and the desired instance type
|
1120
|
+
# doesn't support configurable bandwidth, first set the existing
|
1121
|
+
# bandwidth configuration to `default` using the
|
1122
|
+
# ModifyInstanceNetworkPerformanceOptions operation.
|
1123
|
+
#
|
1124
|
+
# </note>
|
1125
|
+
#
|
1118
1126
|
# You can modify the following attributes only: `disableApiTermination`
|
1119
1127
|
# \| `instanceType` \| `kernel` \| `ramdisk` \|
|
1120
1128
|
# `instanceInitiatedShutdownBehavior` \| `blockDeviceMapping` \|
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -6092,6 +6092,53 @@ module Aws::EC2
|
|
6092
6092
|
include Aws::Structure
|
6093
6093
|
end
|
6094
6094
|
|
6095
|
+
# Client route enforcement is a feature of the Client VPN service that
|
6096
|
+
# helps enforce administrator defined routes on devices connected
|
6097
|
+
# through the VPN. T his feature helps improve your security posture by
|
6098
|
+
# ensuring that network traffic originating from a connected client is
|
6099
|
+
# not 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 the client route enforcement feature.
|
6109
|
+
#
|
6110
|
+
# Valid values: `true | false`
|
6111
|
+
#
|
6112
|
+
# Default value: `false`
|
6113
|
+
# @return [Boolean]
|
6114
|
+
#
|
6115
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ClientRouteEnforcementOptions AWS API Documentation
|
6116
|
+
#
|
6117
|
+
class ClientRouteEnforcementOptions < Struct.new(
|
6118
|
+
:enforced)
|
6119
|
+
SENSITIVE = []
|
6120
|
+
include Aws::Structure
|
6121
|
+
end
|
6122
|
+
|
6123
|
+
# The current status of client route enforcement. The state will either
|
6124
|
+
# be `true` (enabled) or `false` (disabled).
|
6125
|
+
#
|
6126
|
+
# @!attribute [rw] enforced
|
6127
|
+
# Status of the client route enforcement feature.
|
6128
|
+
#
|
6129
|
+
# Valid values: `true | false`
|
6130
|
+
#
|
6131
|
+
# Default value: `false`
|
6132
|
+
# @return [Boolean]
|
6133
|
+
#
|
6134
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ClientRouteEnforcementResponseOptions AWS API Documentation
|
6135
|
+
#
|
6136
|
+
class ClientRouteEnforcementResponseOptions < Struct.new(
|
6137
|
+
:enforced)
|
6138
|
+
SENSITIVE = []
|
6139
|
+
include Aws::Structure
|
6140
|
+
end
|
6141
|
+
|
6095
6142
|
# Describes the authentication methods used by a Client VPN endpoint.
|
6096
6143
|
# For more information, see [Authentication][1] in the *Client VPN
|
6097
6144
|
# Administrator Guide*.
|
@@ -6404,6 +6451,20 @@ module Aws::EC2
|
|
6404
6451
|
# is established.
|
6405
6452
|
# @return [Types::ClientLoginBannerResponseOptions]
|
6406
6453
|
#
|
6454
|
+
# @!attribute [rw] client_route_enforcement_options
|
6455
|
+
# Client route enforcement is a feature of the Client VPN service that
|
6456
|
+
# helps enforce administrator defined routes on devices connected
|
6457
|
+
# through the VPN. T his feature helps improve your security posture
|
6458
|
+
# by ensuring that network traffic originating from a connected client
|
6459
|
+
# is not inadvertently sent outside the VPN tunnel.
|
6460
|
+
#
|
6461
|
+
# Client route enforcement works by monitoring the route table of a
|
6462
|
+
# connected device for routing policy changes to the VPN connection.
|
6463
|
+
# If the feature detects any VPN routing policy modifications, it will
|
6464
|
+
# automatically force an update to the route table, reverting it back
|
6465
|
+
# to the expected route configurations.
|
6466
|
+
# @return [Types::ClientRouteEnforcementResponseOptions]
|
6467
|
+
#
|
6407
6468
|
# @!attribute [rw] disconnect_on_session_timeout
|
6408
6469
|
# Indicates whether the client VPN session is disconnected after the
|
6409
6470
|
# maximum `sessionTimeoutHours` is reached. If `true`, users are
|
@@ -6437,6 +6498,7 @@ module Aws::EC2
|
|
6437
6498
|
:client_connect_options,
|
6438
6499
|
:session_timeout_hours,
|
6439
6500
|
:client_login_banner_options,
|
6501
|
+
:client_route_enforcement_options,
|
6440
6502
|
:disconnect_on_session_timeout)
|
6441
6503
|
SENSITIVE = []
|
6442
6504
|
include Aws::Structure
|
@@ -8253,6 +8315,20 @@ module Aws::EC2
|
|
8253
8315
|
# is established.
|
8254
8316
|
# @return [Types::ClientLoginBannerOptions]
|
8255
8317
|
#
|
8318
|
+
# @!attribute [rw] client_route_enforcement_options
|
8319
|
+
# Client route enforcement is a feature of the Client VPN service that
|
8320
|
+
# helps enforce administrator defined routes on devices connected
|
8321
|
+
# through the VPN. T his feature helps improve your security posture
|
8322
|
+
# by ensuring that network traffic originating from a connected client
|
8323
|
+
# is not inadvertently sent outside the VPN tunnel.
|
8324
|
+
#
|
8325
|
+
# Client route enforcement works by monitoring the route table of a
|
8326
|
+
# connected device for routing policy changes to the VPN connection.
|
8327
|
+
# If the feature detects any VPN routing policy modifications, it will
|
8328
|
+
# automatically force an update to the route table, reverting it back
|
8329
|
+
# to the expected route configurations.
|
8330
|
+
# @return [Types::ClientRouteEnforcementOptions]
|
8331
|
+
#
|
8256
8332
|
# @!attribute [rw] disconnect_on_session_timeout
|
8257
8333
|
# Indicates whether the client VPN session is disconnected after the
|
8258
8334
|
# maximum timeout specified in `SessionTimeoutHours` is reached. If
|
@@ -8282,6 +8358,7 @@ module Aws::EC2
|
|
8282
8358
|
:client_connect_options,
|
8283
8359
|
:session_timeout_hours,
|
8284
8360
|
:client_login_banner_options,
|
8361
|
+
:client_route_enforcement_options,
|
8285
8362
|
:disconnect_on_session_timeout)
|
8286
8363
|
SENSITIVE = []
|
8287
8364
|
include Aws::Structure
|
@@ -11594,7 +11671,7 @@ module Aws::EC2
|
|
11594
11671
|
# @return [String]
|
11595
11672
|
#
|
11596
11673
|
# @!attribute [rw] peer_address
|
11597
|
-
# The IPv4 address of the peer.
|
11674
|
+
# The IPv4 address of the peer device.
|
11598
11675
|
# @return [String]
|
11599
11676
|
#
|
11600
11677
|
# @!attribute [rw] bgp_options
|
@@ -22451,6 +22528,9 @@ module Aws::EC2
|
|
22451
22528
|
# latest generation instance type of an instance family (`true` \|
|
22452
22529
|
# `false`).
|
22453
22530
|
#
|
22531
|
+
# * `dedicated-hosts-supported` - Indicates whether the instance type
|
22532
|
+
# supports Dedicated Hosts. (`true` \| `false`)
|
22533
|
+
#
|
22454
22534
|
# * `ebs-info.ebs-optimized-info.baseline-bandwidth-in-mbps` - The
|
22455
22535
|
# baseline bandwidth performance for an EBS-optimized instance type,
|
22456
22536
|
# in Mbps.
|
@@ -49658,11 +49738,13 @@ module Aws::EC2
|
|
49658
49738
|
# @return [String]
|
49659
49739
|
#
|
49660
49740
|
# @!attribute [rw] device_index
|
49661
|
-
# The device index for the network interface attachment.
|
49662
|
-
# interface
|
49663
|
-
#
|
49664
|
-
#
|
49665
|
-
#
|
49741
|
+
# The device index for the network interface attachment. The primary
|
49742
|
+
# network interface has a device index of 0. Each network interface is
|
49743
|
+
# of type `interface`, you must specify a device index. If you create
|
49744
|
+
# a launch template that includes secondary network interfaces but not
|
49745
|
+
# a primary network interface, then you must add a primary network
|
49746
|
+
# interface as a launch parameter when you launch an instance from the
|
49747
|
+
# template.
|
49666
49748
|
# @return [Integer]
|
49667
49749
|
#
|
49668
49750
|
# @!attribute [rw] groups
|
@@ -51880,6 +51962,20 @@ module Aws::EC2
|
|
51880
51962
|
# is established.
|
51881
51963
|
# @return [Types::ClientLoginBannerOptions]
|
51882
51964
|
#
|
51965
|
+
# @!attribute [rw] client_route_enforcement_options
|
51966
|
+
# Client route enforcement is a feature of the Client VPN service that
|
51967
|
+
# helps enforce administrator defined routes on devices connected
|
51968
|
+
# through the VPN. T his feature helps improve your security posture
|
51969
|
+
# by ensuring that network traffic originating from a connected client
|
51970
|
+
# is not inadvertently sent outside the VPN tunnel.
|
51971
|
+
#
|
51972
|
+
# Client route enforcement works by monitoring the route table of a
|
51973
|
+
# connected device for routing policy changes to the VPN connection.
|
51974
|
+
# If the feature detects any VPN routing policy modifications, it will
|
51975
|
+
# automatically force an update to the route table, reverting it back
|
51976
|
+
# to the expected route configurations.
|
51977
|
+
# @return [Types::ClientRouteEnforcementOptions]
|
51978
|
+
#
|
51883
51979
|
# @!attribute [rw] disconnect_on_session_timeout
|
51884
51980
|
# Indicates whether the client VPN session is disconnected after the
|
51885
51981
|
# maximum timeout specified in `sessionTimeoutHours` is reached. If
|
@@ -51905,6 +52001,7 @@ module Aws::EC2
|
|
51905
52001
|
:client_connect_options,
|
51906
52002
|
:session_timeout_hours,
|
51907
52003
|
:client_login_banner_options,
|
52004
|
+
:client_route_enforcement_options,
|
51908
52005
|
:disconnect_on_session_timeout)
|
51909
52006
|
SENSITIVE = []
|
51910
52007
|
include Aws::Structure
|
@@ -52435,6 +52532,14 @@ module Aws::EC2
|
|
52435
52532
|
# @!attribute [rw] attribute
|
52436
52533
|
# The name of the attribute to modify.
|
52437
52534
|
#
|
52535
|
+
# <note markdown="1"> When changing the instance type: If the original instance type is
|
52536
|
+
# configured for configurable bandwidth, and the desired instance type
|
52537
|
+
# doesn't support configurable bandwidth, first set the existing
|
52538
|
+
# bandwidth configuration to `default` using the
|
52539
|
+
# ModifyInstanceNetworkPerformanceOptions operation.
|
52540
|
+
#
|
52541
|
+
# </note>
|
52542
|
+
#
|
52438
52543
|
# You can modify the following attributes only:
|
52439
52544
|
# `disableApiTermination` \| `instanceType` \| `kernel` \| `ramdisk`
|
52440
52545
|
# \| `instanceInitiatedShutdownBehavior` \| `blockDeviceMapping` \|
|
@@ -64537,15 +64642,15 @@ module Aws::EC2
|
|
64537
64642
|
# Amazon VPC Route Server simplifies routing for traffic between
|
64538
64643
|
# workloads that are deployed within a VPC and its internet gateways.
|
64539
64644
|
# 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
|
64645
|
+
# internet gateway route tables with your preferred IPv4 or IPv6 routes
|
64646
|
+
# to achieve routing fault tolerance for those workloads. This enables
|
64647
|
+
# you to automatically reroute traffic within a VPC, which increases the
|
64543
64648
|
# manageability of VPC routing and interoperability with third-party
|
64544
64649
|
# workloads.
|
64545
64650
|
#
|
64546
64651
|
# Route server supports the follow route table types:
|
64547
64652
|
#
|
64548
|
-
# * VPC route tables
|
64653
|
+
# * VPC route tables not associated with subnets
|
64549
64654
|
#
|
64550
64655
|
# * Subnet route tables
|
64551
64656
|
#
|
@@ -64626,8 +64731,7 @@ module Aws::EC2
|
|
64626
64731
|
# Describes the association between a route server and a VPC.
|
64627
64732
|
#
|
64628
64733
|
# 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.
|
64734
|
+
# route server and a VPC.
|
64631
64735
|
#
|
64632
64736
|
# @!attribute [rw] route_server_id
|
64633
64737
|
# The ID of the associated route server.
|
@@ -64761,9 +64865,12 @@ module Aws::EC2
|
|
64761
64865
|
# Describes a route server endpoint and its properties.
|
64762
64866
|
#
|
64763
64867
|
# 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
|
-
#
|
64868
|
+
# inside a subnet that facilitates [BGP (Border Gateway Protocol)][1]
|
64869
|
+
# connections between your route server and your BGP peers.
|
64870
|
+
#
|
64871
|
+
#
|
64872
|
+
#
|
64873
|
+
# [1]: https://en.wikipedia.org/wiki/Border_Gateway_Protocol
|
64767
64874
|
#
|
64768
64875
|
# @!attribute [rw] route_server_id
|
64769
64876
|
# The ID of the route server associated with this endpoint.
|
@@ -64819,9 +64926,10 @@ module Aws::EC2
|
|
64819
64926
|
|
64820
64927
|
# Describes a BGP peer configuration for a route server endpoint.
|
64821
64928
|
#
|
64822
|
-
# A route server peer is a
|
64823
|
-
# Amazon Web Services
|
64824
|
-
# security
|
64929
|
+
# A route server peer is a session between a route server endpoint and
|
64930
|
+
# the device deployed in Amazon Web Services (such as a firewall
|
64931
|
+
# appliance or other network security function running on an EC2
|
64932
|
+
# instance). The device must meet these requirements:
|
64825
64933
|
#
|
64826
64934
|
# * Have an elastic network interface in the VPC
|
64827
64935
|
#
|
@@ -64868,7 +64976,7 @@ module Aws::EC2
|
|
64868
64976
|
# @return [String]
|
64869
64977
|
#
|
64870
64978
|
# @!attribute [rw] peer_address
|
64871
|
-
# The IPv4 address of the peer.
|
64979
|
+
# The IPv4 address of the peer device.
|
64872
64980
|
# @return [String]
|
64873
64981
|
#
|
64874
64982
|
# @!attribute [rw] bgp_options
|
@@ -64969,8 +65077,8 @@ module Aws::EC2
|
|
64969
65077
|
# The [Forwarding Information Base (FIB)][2] serves as a forwarding
|
64970
65078
|
# table for what route server has determined are the best-path routes
|
64971
65079
|
# in the RIB after evaluating all available routing information and
|
64972
|
-
# policies. The FIB routes
|
64973
|
-
#
|
65080
|
+
# policies. The FIB routes are installed on the route tables. The FIB
|
65081
|
+
# is recomputed whenever there are changes to the RIB.
|
64974
65082
|
#
|
64975
65083
|
#
|
64976
65084
|
#
|
@@ -71692,7 +71800,10 @@ module Aws::EC2
|
|
71692
71800
|
#
|
71693
71801
|
# @!attribute [rw] default_route_table_association
|
71694
71802
|
# Indicates whether resource attachments are automatically associated
|
71695
|
-
# with the default association route table.
|
71803
|
+
# with the default association route table. Enabled by default. If
|
71804
|
+
# `defaultRouteTableAssociation` is set to `enable`, Amazon Web
|
71805
|
+
# Services Transit Gateway will create the default transit gateway
|
71806
|
+
# route table.
|
71696
71807
|
# @return [String]
|
71697
71808
|
#
|
71698
71809
|
# @!attribute [rw] association_default_route_table_id
|
@@ -71701,7 +71812,10 @@ module Aws::EC2
|
|
71701
71812
|
#
|
71702
71813
|
# @!attribute [rw] default_route_table_propagation
|
71703
71814
|
# Indicates whether resource attachments automatically propagate
|
71704
|
-
# routes to the default propagation route table.
|
71815
|
+
# routes to the default propagation route table. Enabled by default.
|
71816
|
+
# If `defaultRouteTablePropagation` is set to `enable`, Amazon Web
|
71817
|
+
# Services Transit Gateway will create the default transit gateway
|
71818
|
+
# route table.
|
71705
71819
|
# @return [String]
|
71706
71820
|
#
|
71707
71821
|
# @!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
|
@@ -10594,6 +10597,9 @@ module Aws
|
|
10594
10597
|
enabled: bool?,
|
10595
10598
|
banner_text: ::String?
|
10596
10599
|
},
|
10600
|
+
?client_route_enforcement_options: {
|
10601
|
+
enforced: bool?
|
10602
|
+
},
|
10597
10603
|
?disconnect_on_session_timeout: bool
|
10598
10604
|
) -> _ModifyClientVpnEndpointResponseSuccess
|
10599
10605
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyClientVpnEndpointResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -215,7 +215,7 @@ module Aws::EC2
|
|
215
215
|
attr_accessor customer_owned_ip: ::String
|
216
216
|
attr_accessor customer_owned_ipv_4_pool: ::String
|
217
217
|
attr_accessor carrier_ip: ::String
|
218
|
-
attr_accessor service_managed: ("alb" | "nlb")
|
218
|
+
attr_accessor service_managed: ("alb" | "nlb" | "rnat")
|
219
219
|
attr_accessor instance_id: ::String
|
220
220
|
attr_accessor public_ip: ::String
|
221
221
|
SENSITIVE: []
|
@@ -1458,6 +1458,16 @@ module Aws::EC2
|
|
1458
1458
|
SENSITIVE: []
|
1459
1459
|
end
|
1460
1460
|
|
1461
|
+
class ClientRouteEnforcementOptions
|
1462
|
+
attr_accessor enforced: bool
|
1463
|
+
SENSITIVE: []
|
1464
|
+
end
|
1465
|
+
|
1466
|
+
class ClientRouteEnforcementResponseOptions
|
1467
|
+
attr_accessor enforced: bool
|
1468
|
+
SENSITIVE: []
|
1469
|
+
end
|
1470
|
+
|
1461
1471
|
class ClientVpnAuthentication
|
1462
1472
|
attr_accessor type: ("certificate-authentication" | "directory-service-authentication" | "federated-authentication")
|
1463
1473
|
attr_accessor active_directory: Types::DirectoryServiceAuthentication
|
@@ -1528,6 +1538,7 @@ module Aws::EC2
|
|
1528
1538
|
attr_accessor client_connect_options: Types::ClientConnectResponseOptions
|
1529
1539
|
attr_accessor session_timeout_hours: ::Integer
|
1530
1540
|
attr_accessor client_login_banner_options: Types::ClientLoginBannerResponseOptions
|
1541
|
+
attr_accessor client_route_enforcement_options: Types::ClientRouteEnforcementResponseOptions
|
1531
1542
|
attr_accessor disconnect_on_session_timeout: bool
|
1532
1543
|
SENSITIVE: []
|
1533
1544
|
end
|
@@ -1862,6 +1873,7 @@ module Aws::EC2
|
|
1862
1873
|
attr_accessor client_connect_options: Types::ClientConnectOptions
|
1863
1874
|
attr_accessor session_timeout_hours: ::Integer
|
1864
1875
|
attr_accessor client_login_banner_options: Types::ClientLoginBannerOptions
|
1876
|
+
attr_accessor client_route_enforcement_options: Types::ClientRouteEnforcementOptions
|
1865
1877
|
attr_accessor disconnect_on_session_timeout: bool
|
1866
1878
|
SENSITIVE: []
|
1867
1879
|
end
|
@@ -11264,6 +11276,7 @@ module Aws::EC2
|
|
11264
11276
|
attr_accessor client_connect_options: Types::ClientConnectOptions
|
11265
11277
|
attr_accessor session_timeout_hours: ::Integer
|
11266
11278
|
attr_accessor client_login_banner_options: Types::ClientLoginBannerOptions
|
11279
|
+
attr_accessor client_route_enforcement_options: Types::ClientRouteEnforcementOptions
|
11267
11280
|
attr_accessor disconnect_on_session_timeout: bool
|
11268
11281
|
SENSITIVE: []
|
11269
11282
|
end
|
data/sig/vpc_address.rbs
CHANGED
@@ -51,7 +51,7 @@ module Aws
|
|
51
51
|
def carrier_ip: () -> ::String
|
52
52
|
|
53
53
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/VpcAddress.html#service_managed-instance_method
|
54
|
-
def service_managed: () -> ("alb" | "nlb")
|
54
|
+
def service_managed: () -> ("alb" | "nlb" | "rnat")
|
55
55
|
|
56
56
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/VpcAddress.html#instance_id-instance_method
|
57
57
|
def instance_id: () -> ::String
|
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.516.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: 2025-
|
11
|
+
date: 2025-04-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|