aws-sdk-ec2 1.515.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +38 -3
- data/lib/aws-sdk-ec2/client_api.rb +11 -0
- data/lib/aws-sdk-ec2/types.rb +100 -2
- 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,11 @@
|
|
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
|
+
|
4
9
|
1.515.0 (2025-04-04)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.516.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -6090,6 +6090,19 @@ module Aws::EC2
|
|
6090
6090
|
# on Amazon Web Services provided clients when a VPN session is
|
6091
6091
|
# established.
|
6092
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
|
+
#
|
6093
6106
|
# @option params [Boolean] :disconnect_on_session_timeout
|
6094
6107
|
# Indicates whether the client VPN session is disconnected after the
|
6095
6108
|
# maximum timeout specified in `SessionTimeoutHours` is reached. If
|
@@ -6157,6 +6170,9 @@ module Aws::EC2
|
|
6157
6170
|
# enabled: false,
|
6158
6171
|
# banner_text: "String",
|
6159
6172
|
# },
|
6173
|
+
# client_route_enforcement_options: {
|
6174
|
+
# enforced: false,
|
6175
|
+
# },
|
6160
6176
|
# disconnect_on_session_timeout: false,
|
6161
6177
|
# })
|
6162
6178
|
#
|
@@ -21578,7 +21594,7 @@ module Aws::EC2
|
|
21578
21594
|
# resp.addresses[0].customer_owned_ip #=> String
|
21579
21595
|
# resp.addresses[0].customer_owned_ipv_4_pool #=> String
|
21580
21596
|
# resp.addresses[0].carrier_ip #=> String
|
21581
|
-
# resp.addresses[0].service_managed #=> String, one of "alb", "nlb"
|
21597
|
+
# resp.addresses[0].service_managed #=> String, one of "alb", "nlb", "rnat"
|
21582
21598
|
# resp.addresses[0].instance_id #=> String
|
21583
21599
|
# resp.addresses[0].public_ip #=> String
|
21584
21600
|
#
|
@@ -23155,6 +23171,7 @@ module Aws::EC2
|
|
23155
23171
|
# resp.client_vpn_endpoints[0].session_timeout_hours #=> Integer
|
23156
23172
|
# resp.client_vpn_endpoints[0].client_login_banner_options.enabled #=> Boolean
|
23157
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
|
23158
23175
|
# resp.client_vpn_endpoints[0].disconnect_on_session_timeout #=> Boolean
|
23159
23176
|
# resp.next_token #=> String
|
23160
23177
|
#
|
@@ -40298,7 +40315,8 @@ module Aws::EC2
|
|
40298
40315
|
end
|
40299
40316
|
|
40300
40317
|
# Describes the principals (service consumers) that are permitted to
|
40301
|
-
# discover your VPC endpoint service.
|
40318
|
+
# discover your VPC endpoint service. Principal ARNs with path
|
40319
|
+
# components aren't supported.
|
40302
40320
|
#
|
40303
40321
|
# @option params [Boolean] :dry_run
|
40304
40322
|
# Checks whether you have the required permissions for the action,
|
@@ -50482,6 +50500,19 @@ module Aws::EC2
|
|
50482
50500
|
# on Amazon Web Services provided clients when a VPN session is
|
50483
50501
|
# established.
|
50484
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
|
+
#
|
50485
50516
|
# @option params [Boolean] :disconnect_on_session_timeout
|
50486
50517
|
# Indicates whether the client VPN session is disconnected after the
|
50487
50518
|
# maximum timeout specified in `sessionTimeoutHours` is reached. If
|
@@ -50522,6 +50553,9 @@ module Aws::EC2
|
|
50522
50553
|
# enabled: false,
|
50523
50554
|
# banner_text: "String",
|
50524
50555
|
# },
|
50556
|
+
# client_route_enforcement_options: {
|
50557
|
+
# enforced: false,
|
50558
|
+
# },
|
50525
50559
|
# disconnect_on_session_timeout: false,
|
50526
50560
|
# })
|
50527
50561
|
#
|
@@ -55923,6 +55957,7 @@ module Aws::EC2
|
|
55923
55957
|
# Modifies the permissions for your VPC endpoint service. You can add or
|
55924
55958
|
# remove permissions for service consumers (Amazon Web Services
|
55925
55959
|
# accounts, users, and IAM roles) to connect to your endpoint service.
|
55960
|
+
# Principal ARNs with path components aren't supported.
|
55926
55961
|
#
|
55927
55962
|
# If you grant permissions to all principals, the service is public. Any
|
55928
55963
|
# users who know the name of a public service can send a request to
|
@@ -64739,7 +64774,7 @@ module Aws::EC2
|
|
64739
64774
|
tracer: tracer
|
64740
64775
|
)
|
64741
64776
|
context[:gem_name] = 'aws-sdk-ec2'
|
64742
|
-
context[:gem_version] = '1.
|
64777
|
+
context[:gem_version] = '1.516.0'
|
64743
64778
|
Seahorse::Client::Request.new(handlers, context)
|
64744
64779
|
end
|
64745
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/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
|
@@ -51885,6 +51962,20 @@ module Aws::EC2
|
|
51885
51962
|
# is established.
|
51886
51963
|
# @return [Types::ClientLoginBannerOptions]
|
51887
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
|
+
#
|
51888
51979
|
# @!attribute [rw] disconnect_on_session_timeout
|
51889
51980
|
# Indicates whether the client VPN session is disconnected after the
|
51890
51981
|
# maximum timeout specified in `sessionTimeoutHours` is reached. If
|
@@ -51910,6 +52001,7 @@ module Aws::EC2
|
|
51910
52001
|
:client_connect_options,
|
51911
52002
|
:session_timeout_hours,
|
51912
52003
|
:client_login_banner_options,
|
52004
|
+
:client_route_enforcement_options,
|
51913
52005
|
:disconnect_on_session_timeout)
|
51914
52006
|
SENSITIVE = []
|
51915
52007
|
include Aws::Structure
|
@@ -71708,7 +71800,10 @@ module Aws::EC2
|
|
71708
71800
|
#
|
71709
71801
|
# @!attribute [rw] default_route_table_association
|
71710
71802
|
# Indicates whether resource attachments are automatically associated
|
71711
|
-
# 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.
|
71712
71807
|
# @return [String]
|
71713
71808
|
#
|
71714
71809
|
# @!attribute [rw] association_default_route_table_id
|
@@ -71717,7 +71812,10 @@ module Aws::EC2
|
|
71717
71812
|
#
|
71718
71813
|
# @!attribute [rw] default_route_table_propagation
|
71719
71814
|
# Indicates whether resource attachments automatically propagate
|
71720
|
-
# 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.
|
71721
71819
|
# @return [String]
|
71722
71820
|
#
|
71723
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-04-
|
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
|