aws-sdk-ec2 1.512.0 → 1.514.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 +1405 -104
- data/lib/aws-sdk-ec2/client_api.rb +481 -1
- data/lib/aws-sdk-ec2/instance.rb +1 -1
- data/lib/aws-sdk-ec2/resource.rb +17 -17
- data/lib/aws-sdk-ec2/security_group.rb +2 -2
- data/lib/aws-sdk-ec2/snapshot.rb +1 -1
- data/lib/aws-sdk-ec2/subnet.rb +2 -2
- data/lib/aws-sdk-ec2/types.rb +1357 -97
- data/lib/aws-sdk-ec2/volume.rb +1 -1
- data/lib/aws-sdk-ec2/vpc.rb +5 -5
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +369 -93
- data/sig/instance.rbs +1 -1
- data/sig/resource.rbs +17 -17
- data/sig/security_group.rbs +2 -2
- data/sig/snapshot.rbs +1 -1
- data/sig/subnet.rbs +2 -2
- data/sig/tag.rbs +1 -1
- data/sig/types.rbs +327 -6
- data/sig/volume.rbs +1 -1
- data/sig/vpc.rbs +5 -5
- metadata +2 -2
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -2396,6 +2396,44 @@ module Aws::EC2
|
|
2396
2396
|
include Aws::Structure
|
2397
2397
|
end
|
2398
2398
|
|
2399
|
+
# @!attribute [rw] route_server_id
|
2400
|
+
# The unique identifier for the route server to be associated.
|
2401
|
+
# @return [String]
|
2402
|
+
#
|
2403
|
+
# @!attribute [rw] vpc_id
|
2404
|
+
# The ID of the VPC to associate with the route server.
|
2405
|
+
# @return [String]
|
2406
|
+
#
|
2407
|
+
# @!attribute [rw] dry_run
|
2408
|
+
# A check for whether you have the required permissions for the action
|
2409
|
+
# without actually making the request and provides an error response.
|
2410
|
+
# If you have the required permissions, the error response is
|
2411
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
2412
|
+
# @return [Boolean]
|
2413
|
+
#
|
2414
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateRouteServerRequest AWS API Documentation
|
2415
|
+
#
|
2416
|
+
class AssociateRouteServerRequest < Struct.new(
|
2417
|
+
:route_server_id,
|
2418
|
+
:vpc_id,
|
2419
|
+
:dry_run)
|
2420
|
+
SENSITIVE = []
|
2421
|
+
include Aws::Structure
|
2422
|
+
end
|
2423
|
+
|
2424
|
+
# @!attribute [rw] route_server_association
|
2425
|
+
# Information about the association between the route server and the
|
2426
|
+
# VPC.
|
2427
|
+
# @return [Types::RouteServerAssociation]
|
2428
|
+
#
|
2429
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateRouteServerResult AWS API Documentation
|
2430
|
+
#
|
2431
|
+
class AssociateRouteServerResult < Struct.new(
|
2432
|
+
:route_server_association)
|
2433
|
+
SENSITIVE = []
|
2434
|
+
include Aws::Structure
|
2435
|
+
end
|
2436
|
+
|
2399
2437
|
# @!attribute [rw] gateway_id
|
2400
2438
|
# The ID of the internet gateway or virtual private gateway.
|
2401
2439
|
# @return [String]
|
@@ -5065,24 +5103,30 @@ module Aws::EC2
|
|
5065
5103
|
# constraints, or instance limit constraints. You can view a failed
|
5066
5104
|
# request for 60 minutes.
|
5067
5105
|
#
|
5068
|
-
# * `scheduled` - (*Future-dated Capacity Reservations
|
5106
|
+
# * `scheduled` - (*Future-dated Capacity Reservations*) The
|
5069
5107
|
# future-dated Capacity Reservation request was approved and the
|
5070
5108
|
# Capacity Reservation is scheduled for delivery on the requested
|
5071
5109
|
# start date.
|
5072
5110
|
#
|
5073
|
-
# * `
|
5074
|
-
#
|
5075
|
-
# Reservation.
|
5111
|
+
# * `payment-pending` - (*Capacity Blocks*) The upfront payment has
|
5112
|
+
# not been processed yet.
|
5076
5113
|
#
|
5077
|
-
# * `
|
5114
|
+
# * `payment-failed` - (*Capacity Blocks*) The upfront payment was not
|
5115
|
+
# processed in the 12-hour time frame. Your Capacity Block was
|
5116
|
+
# released.
|
5117
|
+
#
|
5118
|
+
# * `assessing` - (*Future-dated Capacity Reservations*) Amazon EC2 is
|
5119
|
+
# assessing your request for a future-dated Capacity Reservation.
|
5120
|
+
#
|
5121
|
+
# * `delayed` - (*Future-dated Capacity Reservations*) Amazon EC2
|
5078
5122
|
# encountered a delay in provisioning the requested future-dated
|
5079
5123
|
# Capacity Reservation. Amazon EC2 is unable to deliver the
|
5080
5124
|
# requested capacity by the requested start date and time.
|
5081
5125
|
#
|
5082
|
-
# * `unsupported` - (*Future-dated Capacity Reservations
|
5083
|
-
#
|
5084
|
-
#
|
5085
|
-
#
|
5126
|
+
# * `unsupported` - (*Future-dated Capacity Reservations*) Amazon EC2
|
5127
|
+
# can't support the future-dated Capacity Reservation request due
|
5128
|
+
# to capacity constraints. You can view unsupported requests for 30
|
5129
|
+
# days. The Capacity Reservation will not be delivered.
|
5086
5130
|
# @return [String]
|
5087
5131
|
#
|
5088
5132
|
# @!attribute [rw] start_date
|
@@ -7076,6 +7120,9 @@ module Aws::EC2
|
|
7076
7120
|
# of the request. For more information, see [Ensuring idempotency][1]
|
7077
7121
|
# in the *Amazon EC2 API Reference*.
|
7078
7122
|
#
|
7123
|
+
# **A suitable default value is auto-generated.** You should normally
|
7124
|
+
# not need to pass this option.
|
7125
|
+
#
|
7079
7126
|
#
|
7080
7127
|
#
|
7081
7128
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
@@ -11491,6 +11538,183 @@ module Aws::EC2
|
|
11491
11538
|
include Aws::Structure
|
11492
11539
|
end
|
11493
11540
|
|
11541
|
+
# @!attribute [rw] route_server_id
|
11542
|
+
# The ID of the route server for which to create an endpoint.
|
11543
|
+
# @return [String]
|
11544
|
+
#
|
11545
|
+
# @!attribute [rw] subnet_id
|
11546
|
+
# The ID of the subnet in which to create the route server endpoint.
|
11547
|
+
# @return [String]
|
11548
|
+
#
|
11549
|
+
# @!attribute [rw] client_token
|
11550
|
+
# Unique, case-sensitive identifier to ensure idempotency of the
|
11551
|
+
# request.
|
11552
|
+
#
|
11553
|
+
# **A suitable default value is auto-generated.** You should normally
|
11554
|
+
# not need to pass this option.
|
11555
|
+
# @return [String]
|
11556
|
+
#
|
11557
|
+
# @!attribute [rw] dry_run
|
11558
|
+
# A check for whether you have the required permissions for the action
|
11559
|
+
# without actually making the request and provides an error response.
|
11560
|
+
# If you have the required permissions, the error response is
|
11561
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
11562
|
+
# @return [Boolean]
|
11563
|
+
#
|
11564
|
+
# @!attribute [rw] tag_specifications
|
11565
|
+
# The tags to apply to the route server endpoint during creation.
|
11566
|
+
# @return [Array<Types::TagSpecification>]
|
11567
|
+
#
|
11568
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateRouteServerEndpointRequest AWS API Documentation
|
11569
|
+
#
|
11570
|
+
class CreateRouteServerEndpointRequest < Struct.new(
|
11571
|
+
:route_server_id,
|
11572
|
+
:subnet_id,
|
11573
|
+
:client_token,
|
11574
|
+
:dry_run,
|
11575
|
+
:tag_specifications)
|
11576
|
+
SENSITIVE = []
|
11577
|
+
include Aws::Structure
|
11578
|
+
end
|
11579
|
+
|
11580
|
+
# @!attribute [rw] route_server_endpoint
|
11581
|
+
# Information about the created route server endpoint.
|
11582
|
+
# @return [Types::RouteServerEndpoint]
|
11583
|
+
#
|
11584
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateRouteServerEndpointResult AWS API Documentation
|
11585
|
+
#
|
11586
|
+
class CreateRouteServerEndpointResult < Struct.new(
|
11587
|
+
:route_server_endpoint)
|
11588
|
+
SENSITIVE = []
|
11589
|
+
include Aws::Structure
|
11590
|
+
end
|
11591
|
+
|
11592
|
+
# @!attribute [rw] route_server_endpoint_id
|
11593
|
+
# The ID of the route server endpoint for which to create a peer.
|
11594
|
+
# @return [String]
|
11595
|
+
#
|
11596
|
+
# @!attribute [rw] peer_address
|
11597
|
+
# The IPv4 address of the peer.
|
11598
|
+
# @return [String]
|
11599
|
+
#
|
11600
|
+
# @!attribute [rw] bgp_options
|
11601
|
+
# The BGP options for the peer, including ASN (Autonomous System
|
11602
|
+
# Number) and BFD (Bidrectional Forwarding Detection) settings.
|
11603
|
+
# @return [Types::RouteServerBgpOptionsRequest]
|
11604
|
+
#
|
11605
|
+
# @!attribute [rw] dry_run
|
11606
|
+
# A check for whether you have the required permissions for the action
|
11607
|
+
# without actually making the request and provides an error response.
|
11608
|
+
# If you have the required permissions, the error response is
|
11609
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
11610
|
+
# @return [Boolean]
|
11611
|
+
#
|
11612
|
+
# @!attribute [rw] tag_specifications
|
11613
|
+
# The tags to apply to the route server peer during creation.
|
11614
|
+
# @return [Array<Types::TagSpecification>]
|
11615
|
+
#
|
11616
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateRouteServerPeerRequest AWS API Documentation
|
11617
|
+
#
|
11618
|
+
class CreateRouteServerPeerRequest < Struct.new(
|
11619
|
+
:route_server_endpoint_id,
|
11620
|
+
:peer_address,
|
11621
|
+
:bgp_options,
|
11622
|
+
:dry_run,
|
11623
|
+
:tag_specifications)
|
11624
|
+
SENSITIVE = []
|
11625
|
+
include Aws::Structure
|
11626
|
+
end
|
11627
|
+
|
11628
|
+
# @!attribute [rw] route_server_peer
|
11629
|
+
# Information about the created route server peer.
|
11630
|
+
# @return [Types::RouteServerPeer]
|
11631
|
+
#
|
11632
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateRouteServerPeerResult AWS API Documentation
|
11633
|
+
#
|
11634
|
+
class CreateRouteServerPeerResult < Struct.new(
|
11635
|
+
:route_server_peer)
|
11636
|
+
SENSITIVE = []
|
11637
|
+
include Aws::Structure
|
11638
|
+
end
|
11639
|
+
|
11640
|
+
# @!attribute [rw] amazon_side_asn
|
11641
|
+
# The private Autonomous System Number (ASN) for the Amazon side of
|
11642
|
+
# the BGP session. Valid values are from 1 to 4294967295. We recommend
|
11643
|
+
# using a private ASN in the 64512–65534 (16-bit ASN) or
|
11644
|
+
# 4200000000–4294967294 (32-bit ASN) range.
|
11645
|
+
# @return [Integer]
|
11646
|
+
#
|
11647
|
+
# @!attribute [rw] client_token
|
11648
|
+
# Unique, case-sensitive identifier to ensure idempotency of the
|
11649
|
+
# request.
|
11650
|
+
#
|
11651
|
+
# **A suitable default value is auto-generated.** You should normally
|
11652
|
+
# not need to pass this option.
|
11653
|
+
# @return [String]
|
11654
|
+
#
|
11655
|
+
# @!attribute [rw] dry_run
|
11656
|
+
# A check for whether you have the required permissions for the action
|
11657
|
+
# without actually making the request and provides an error response.
|
11658
|
+
# If you have the required permissions, the error response is
|
11659
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
11660
|
+
# @return [Boolean]
|
11661
|
+
#
|
11662
|
+
# @!attribute [rw] persist_routes
|
11663
|
+
# Indicates whether routes should be persisted after all BGP sessions
|
11664
|
+
# are terminated.
|
11665
|
+
# @return [String]
|
11666
|
+
#
|
11667
|
+
# @!attribute [rw] persist_routes_duration
|
11668
|
+
# The number of minutes a route server will wait after BGP is
|
11669
|
+
# re-established to unpersist the routes in the FIB and RIB. Value
|
11670
|
+
# must be in the range of 1-5. Required if PersistRoutes is `enabled`.
|
11671
|
+
#
|
11672
|
+
# If you set the duration to 1 minute, then when your network
|
11673
|
+
# appliance re-establishes BGP with route server, it has 1 minute to
|
11674
|
+
# relearn it's adjacent network and advertise those routes to route
|
11675
|
+
# server before route server resumes normal functionality. In most
|
11676
|
+
# cases, 1 minute is probably sufficient. If, however, you have
|
11677
|
+
# concerns that your BGP network may not be capable of fully
|
11678
|
+
# re-establishing and re-learning everything in 1 minute, you can
|
11679
|
+
# increase the duration up to 5 minutes.
|
11680
|
+
# @return [Integer]
|
11681
|
+
#
|
11682
|
+
# @!attribute [rw] sns_notifications_enabled
|
11683
|
+
# Indicates whether SNS notifications should be enabled for route
|
11684
|
+
# server events. Enabling SNS notifications persists BGP status
|
11685
|
+
# changes to an SNS topic provisioned by Amazon Web Services.
|
11686
|
+
# @return [Boolean]
|
11687
|
+
#
|
11688
|
+
# @!attribute [rw] tag_specifications
|
11689
|
+
# The tags to apply to the route server during creation.
|
11690
|
+
# @return [Array<Types::TagSpecification>]
|
11691
|
+
#
|
11692
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateRouteServerRequest AWS API Documentation
|
11693
|
+
#
|
11694
|
+
class CreateRouteServerRequest < Struct.new(
|
11695
|
+
:amazon_side_asn,
|
11696
|
+
:client_token,
|
11697
|
+
:dry_run,
|
11698
|
+
:persist_routes,
|
11699
|
+
:persist_routes_duration,
|
11700
|
+
:sns_notifications_enabled,
|
11701
|
+
:tag_specifications)
|
11702
|
+
SENSITIVE = []
|
11703
|
+
include Aws::Structure
|
11704
|
+
end
|
11705
|
+
|
11706
|
+
# @!attribute [rw] route_server
|
11707
|
+
# Information about the created route server.
|
11708
|
+
# @return [Types::RouteServer]
|
11709
|
+
#
|
11710
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateRouteServerResult AWS API Documentation
|
11711
|
+
#
|
11712
|
+
class CreateRouteServerResult < Struct.new(
|
11713
|
+
:route_server)
|
11714
|
+
SENSITIVE = []
|
11715
|
+
include Aws::Structure
|
11716
|
+
end
|
11717
|
+
|
11494
11718
|
# @!attribute [rw] tag_specifications
|
11495
11719
|
# The tags to assign to the route table.
|
11496
11720
|
# @return [Array<Types::TagSpecification>]
|
@@ -16386,6 +16610,102 @@ module Aws::EC2
|
|
16386
16610
|
include Aws::Structure
|
16387
16611
|
end
|
16388
16612
|
|
16613
|
+
# @!attribute [rw] route_server_endpoint_id
|
16614
|
+
# The ID of the route server endpoint to delete.
|
16615
|
+
# @return [String]
|
16616
|
+
#
|
16617
|
+
# @!attribute [rw] dry_run
|
16618
|
+
# A check for whether you have the required permissions for the action
|
16619
|
+
# without actually making the request and provides an error response.
|
16620
|
+
# If you have the required permissions, the error response is
|
16621
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
16622
|
+
# @return [Boolean]
|
16623
|
+
#
|
16624
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteRouteServerEndpointRequest AWS API Documentation
|
16625
|
+
#
|
16626
|
+
class DeleteRouteServerEndpointRequest < Struct.new(
|
16627
|
+
:route_server_endpoint_id,
|
16628
|
+
:dry_run)
|
16629
|
+
SENSITIVE = []
|
16630
|
+
include Aws::Structure
|
16631
|
+
end
|
16632
|
+
|
16633
|
+
# @!attribute [rw] route_server_endpoint
|
16634
|
+
# Information about the deleted route server endpoint.
|
16635
|
+
# @return [Types::RouteServerEndpoint]
|
16636
|
+
#
|
16637
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteRouteServerEndpointResult AWS API Documentation
|
16638
|
+
#
|
16639
|
+
class DeleteRouteServerEndpointResult < Struct.new(
|
16640
|
+
:route_server_endpoint)
|
16641
|
+
SENSITIVE = []
|
16642
|
+
include Aws::Structure
|
16643
|
+
end
|
16644
|
+
|
16645
|
+
# @!attribute [rw] route_server_peer_id
|
16646
|
+
# The ID of the route server peer to delete.
|
16647
|
+
# @return [String]
|
16648
|
+
#
|
16649
|
+
# @!attribute [rw] dry_run
|
16650
|
+
# A check for whether you have the required permissions for the action
|
16651
|
+
# without actually making the request and provides an error response.
|
16652
|
+
# If you have the required permissions, the error response is
|
16653
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
16654
|
+
# @return [Boolean]
|
16655
|
+
#
|
16656
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteRouteServerPeerRequest AWS API Documentation
|
16657
|
+
#
|
16658
|
+
class DeleteRouteServerPeerRequest < Struct.new(
|
16659
|
+
:route_server_peer_id,
|
16660
|
+
:dry_run)
|
16661
|
+
SENSITIVE = []
|
16662
|
+
include Aws::Structure
|
16663
|
+
end
|
16664
|
+
|
16665
|
+
# @!attribute [rw] route_server_peer
|
16666
|
+
# Information about the deleted route server peer.
|
16667
|
+
# @return [Types::RouteServerPeer]
|
16668
|
+
#
|
16669
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteRouteServerPeerResult AWS API Documentation
|
16670
|
+
#
|
16671
|
+
class DeleteRouteServerPeerResult < Struct.new(
|
16672
|
+
:route_server_peer)
|
16673
|
+
SENSITIVE = []
|
16674
|
+
include Aws::Structure
|
16675
|
+
end
|
16676
|
+
|
16677
|
+
# @!attribute [rw] route_server_id
|
16678
|
+
# The ID of the route server to delete.
|
16679
|
+
# @return [String]
|
16680
|
+
#
|
16681
|
+
# @!attribute [rw] dry_run
|
16682
|
+
# A check for whether you have the required permissions for the action
|
16683
|
+
# without actually making the request and provides an error response.
|
16684
|
+
# If you have the required permissions, the error response is
|
16685
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
16686
|
+
# @return [Boolean]
|
16687
|
+
#
|
16688
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteRouteServerRequest AWS API Documentation
|
16689
|
+
#
|
16690
|
+
class DeleteRouteServerRequest < Struct.new(
|
16691
|
+
:route_server_id,
|
16692
|
+
:dry_run)
|
16693
|
+
SENSITIVE = []
|
16694
|
+
include Aws::Structure
|
16695
|
+
end
|
16696
|
+
|
16697
|
+
# @!attribute [rw] route_server
|
16698
|
+
# Information about the deleted route server.
|
16699
|
+
# @return [Types::RouteServer]
|
16700
|
+
#
|
16701
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteRouteServerResult AWS API Documentation
|
16702
|
+
#
|
16703
|
+
class DeleteRouteServerResult < Struct.new(
|
16704
|
+
:route_server)
|
16705
|
+
SENSITIVE = []
|
16706
|
+
include Aws::Structure
|
16707
|
+
end
|
16708
|
+
|
16389
16709
|
# @!attribute [rw] dry_run
|
16390
16710
|
# Checks whether you have the required permissions for the action,
|
16391
16711
|
# without actually making the request, and provides an error response.
|
@@ -18142,7 +18462,8 @@ module Aws::EC2
|
|
18142
18462
|
# `us-east-1`).
|
18143
18463
|
#
|
18144
18464
|
# * `state` - The state of the Availability Zone, the Local Zone, or
|
18145
|
-
# the Wavelength Zone (`available`
|
18465
|
+
# the Wavelength Zone (`available` \| `unavailable` \|
|
18466
|
+
# `constrained`).
|
18146
18467
|
#
|
18147
18468
|
# * `zone-id` - The ID of the Availability Zone (for example,
|
18148
18469
|
# `use1-az1`), the Local Zone (for example, `usw2-lax1-az1`), or the
|
@@ -25949,6 +26270,165 @@ module Aws::EC2
|
|
25949
26270
|
include Aws::Structure
|
25950
26271
|
end
|
25951
26272
|
|
26273
|
+
# @!attribute [rw] route_server_endpoint_ids
|
26274
|
+
# The IDs of the route server endpoints to describe.
|
26275
|
+
# @return [Array<String>]
|
26276
|
+
#
|
26277
|
+
# @!attribute [rw] next_token
|
26278
|
+
# The token for the next page of results.
|
26279
|
+
# @return [String]
|
26280
|
+
#
|
26281
|
+
# @!attribute [rw] max_results
|
26282
|
+
# The maximum number of results to return with a single call.
|
26283
|
+
# @return [Integer]
|
26284
|
+
#
|
26285
|
+
# @!attribute [rw] filters
|
26286
|
+
# One or more filters to apply to the describe request.
|
26287
|
+
# @return [Array<Types::Filter>]
|
26288
|
+
#
|
26289
|
+
# @!attribute [rw] dry_run
|
26290
|
+
# A check for whether you have the required permissions for the action
|
26291
|
+
# without actually making the request and provides an error response.
|
26292
|
+
# If you have the required permissions, the error response is
|
26293
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
26294
|
+
# @return [Boolean]
|
26295
|
+
#
|
26296
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeRouteServerEndpointsRequest AWS API Documentation
|
26297
|
+
#
|
26298
|
+
class DescribeRouteServerEndpointsRequest < Struct.new(
|
26299
|
+
:route_server_endpoint_ids,
|
26300
|
+
:next_token,
|
26301
|
+
:max_results,
|
26302
|
+
:filters,
|
26303
|
+
:dry_run)
|
26304
|
+
SENSITIVE = []
|
26305
|
+
include Aws::Structure
|
26306
|
+
end
|
26307
|
+
|
26308
|
+
# @!attribute [rw] route_server_endpoints
|
26309
|
+
# Information about the described route server endpoints.
|
26310
|
+
# @return [Array<Types::RouteServerEndpoint>]
|
26311
|
+
#
|
26312
|
+
# @!attribute [rw] next_token
|
26313
|
+
# The token to use to retrieve the next page of results. This value is
|
26314
|
+
# `null` when there are no more results to return.
|
26315
|
+
# @return [String]
|
26316
|
+
#
|
26317
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeRouteServerEndpointsResult AWS API Documentation
|
26318
|
+
#
|
26319
|
+
class DescribeRouteServerEndpointsResult < Struct.new(
|
26320
|
+
:route_server_endpoints,
|
26321
|
+
:next_token)
|
26322
|
+
SENSITIVE = []
|
26323
|
+
include Aws::Structure
|
26324
|
+
end
|
26325
|
+
|
26326
|
+
# @!attribute [rw] route_server_peer_ids
|
26327
|
+
# The IDs of the route server peers to describe.
|
26328
|
+
# @return [Array<String>]
|
26329
|
+
#
|
26330
|
+
# @!attribute [rw] next_token
|
26331
|
+
# The token for the next page of results.
|
26332
|
+
# @return [String]
|
26333
|
+
#
|
26334
|
+
# @!attribute [rw] max_results
|
26335
|
+
# The maximum number of results to return with a single call.
|
26336
|
+
# @return [Integer]
|
26337
|
+
#
|
26338
|
+
# @!attribute [rw] filters
|
26339
|
+
# One or more filters to apply to the describe request.
|
26340
|
+
# @return [Array<Types::Filter>]
|
26341
|
+
#
|
26342
|
+
# @!attribute [rw] dry_run
|
26343
|
+
# A check for whether you have the required permissions for the action
|
26344
|
+
# without actually making the request and provides an error response.
|
26345
|
+
# If you have the required permissions, the error response is
|
26346
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
26347
|
+
# @return [Boolean]
|
26348
|
+
#
|
26349
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeRouteServerPeersRequest AWS API Documentation
|
26350
|
+
#
|
26351
|
+
class DescribeRouteServerPeersRequest < Struct.new(
|
26352
|
+
:route_server_peer_ids,
|
26353
|
+
:next_token,
|
26354
|
+
:max_results,
|
26355
|
+
:filters,
|
26356
|
+
:dry_run)
|
26357
|
+
SENSITIVE = []
|
26358
|
+
include Aws::Structure
|
26359
|
+
end
|
26360
|
+
|
26361
|
+
# @!attribute [rw] route_server_peers
|
26362
|
+
# Information about the described route server peers.
|
26363
|
+
# @return [Array<Types::RouteServerPeer>]
|
26364
|
+
#
|
26365
|
+
# @!attribute [rw] next_token
|
26366
|
+
# The token to use to retrieve the next page of results. This value is
|
26367
|
+
# `null` when there are no more results to return.
|
26368
|
+
# @return [String]
|
26369
|
+
#
|
26370
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeRouteServerPeersResult AWS API Documentation
|
26371
|
+
#
|
26372
|
+
class DescribeRouteServerPeersResult < Struct.new(
|
26373
|
+
:route_server_peers,
|
26374
|
+
:next_token)
|
26375
|
+
SENSITIVE = []
|
26376
|
+
include Aws::Structure
|
26377
|
+
end
|
26378
|
+
|
26379
|
+
# @!attribute [rw] route_server_ids
|
26380
|
+
# The IDs of the route servers to describe.
|
26381
|
+
# @return [Array<String>]
|
26382
|
+
#
|
26383
|
+
# @!attribute [rw] next_token
|
26384
|
+
# The token for the next page of results.
|
26385
|
+
# @return [String]
|
26386
|
+
#
|
26387
|
+
# @!attribute [rw] max_results
|
26388
|
+
# The maximum number of results to return with a single call.
|
26389
|
+
# @return [Integer]
|
26390
|
+
#
|
26391
|
+
# @!attribute [rw] filters
|
26392
|
+
# One or more filters to apply to the describe request.
|
26393
|
+
# @return [Array<Types::Filter>]
|
26394
|
+
#
|
26395
|
+
# @!attribute [rw] dry_run
|
26396
|
+
# A check for whether you have the required permissions for the action
|
26397
|
+
# without actually making the request and provides an error response.
|
26398
|
+
# If you have the required permissions, the error response is
|
26399
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
26400
|
+
# @return [Boolean]
|
26401
|
+
#
|
26402
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeRouteServersRequest AWS API Documentation
|
26403
|
+
#
|
26404
|
+
class DescribeRouteServersRequest < Struct.new(
|
26405
|
+
:route_server_ids,
|
26406
|
+
:next_token,
|
26407
|
+
:max_results,
|
26408
|
+
:filters,
|
26409
|
+
:dry_run)
|
26410
|
+
SENSITIVE = []
|
26411
|
+
include Aws::Structure
|
26412
|
+
end
|
26413
|
+
|
26414
|
+
# @!attribute [rw] route_servers
|
26415
|
+
# Information about the described route servers.
|
26416
|
+
# @return [Array<Types::RouteServer>]
|
26417
|
+
#
|
26418
|
+
# @!attribute [rw] next_token
|
26419
|
+
# The token to use to retrieve the next page of results. This value is
|
26420
|
+
# `null` when there are no more results to return.
|
26421
|
+
# @return [String]
|
26422
|
+
#
|
26423
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeRouteServersResult AWS API Documentation
|
26424
|
+
#
|
26425
|
+
class DescribeRouteServersResult < Struct.new(
|
26426
|
+
:route_servers,
|
26427
|
+
:next_token)
|
26428
|
+
SENSITIVE = []
|
26429
|
+
include Aws::Structure
|
26430
|
+
end
|
26431
|
+
|
25952
26432
|
# @!attribute [rw] next_token
|
25953
26433
|
# The token returned from a previous paginated request. Pagination
|
25954
26434
|
# continues from the end of the items returned by the previous
|
@@ -31518,6 +31998,44 @@ module Aws::EC2
|
|
31518
31998
|
include Aws::Structure
|
31519
31999
|
end
|
31520
32000
|
|
32001
|
+
# @!attribute [rw] route_server_id
|
32002
|
+
# The ID of the route server for which to disable propagation.
|
32003
|
+
# @return [String]
|
32004
|
+
#
|
32005
|
+
# @!attribute [rw] route_table_id
|
32006
|
+
# The ID of the route table for which to disable route server
|
32007
|
+
# propagation.
|
32008
|
+
# @return [String]
|
32009
|
+
#
|
32010
|
+
# @!attribute [rw] dry_run
|
32011
|
+
# A check for whether you have the required permissions for the action
|
32012
|
+
# without actually making the request and provides an error response.
|
32013
|
+
# If you have the required permissions, the error response is
|
32014
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
32015
|
+
# @return [Boolean]
|
32016
|
+
#
|
32017
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableRouteServerPropagationRequest AWS API Documentation
|
32018
|
+
#
|
32019
|
+
class DisableRouteServerPropagationRequest < Struct.new(
|
32020
|
+
:route_server_id,
|
32021
|
+
:route_table_id,
|
32022
|
+
:dry_run)
|
32023
|
+
SENSITIVE = []
|
32024
|
+
include Aws::Structure
|
32025
|
+
end
|
32026
|
+
|
32027
|
+
# @!attribute [rw] route_server_propagation
|
32028
|
+
# Information about the disabled route server propagation.
|
32029
|
+
# @return [Types::RouteServerPropagation]
|
32030
|
+
#
|
32031
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableRouteServerPropagationResult AWS API Documentation
|
32032
|
+
#
|
32033
|
+
class DisableRouteServerPropagationResult < Struct.new(
|
32034
|
+
:route_server_propagation)
|
32035
|
+
SENSITIVE = []
|
32036
|
+
include Aws::Structure
|
32037
|
+
end
|
32038
|
+
|
31521
32039
|
# @!attribute [rw] dry_run
|
31522
32040
|
# Checks whether you have the required permissions for the action,
|
31523
32041
|
# without actually making the request, and provides an error response.
|
@@ -32026,6 +32544,43 @@ module Aws::EC2
|
|
32026
32544
|
include Aws::Structure
|
32027
32545
|
end
|
32028
32546
|
|
32547
|
+
# @!attribute [rw] route_server_id
|
32548
|
+
# The ID of the route server to disassociate.
|
32549
|
+
# @return [String]
|
32550
|
+
#
|
32551
|
+
# @!attribute [rw] vpc_id
|
32552
|
+
# The ID of the VPC to disassociate from the route server.
|
32553
|
+
# @return [String]
|
32554
|
+
#
|
32555
|
+
# @!attribute [rw] dry_run
|
32556
|
+
# A check for whether you have the required permissions for the action
|
32557
|
+
# without actually making the request and provides an error response.
|
32558
|
+
# If you have the required permissions, the error response is
|
32559
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
32560
|
+
# @return [Boolean]
|
32561
|
+
#
|
32562
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateRouteServerRequest AWS API Documentation
|
32563
|
+
#
|
32564
|
+
class DisassociateRouteServerRequest < Struct.new(
|
32565
|
+
:route_server_id,
|
32566
|
+
:vpc_id,
|
32567
|
+
:dry_run)
|
32568
|
+
SENSITIVE = []
|
32569
|
+
include Aws::Structure
|
32570
|
+
end
|
32571
|
+
|
32572
|
+
# @!attribute [rw] route_server_association
|
32573
|
+
# Information about the disassociated route server.
|
32574
|
+
# @return [Types::RouteServerAssociation]
|
32575
|
+
#
|
32576
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateRouteServerResult AWS API Documentation
|
32577
|
+
#
|
32578
|
+
class DisassociateRouteServerResult < Struct.new(
|
32579
|
+
:route_server_association)
|
32580
|
+
SENSITIVE = []
|
32581
|
+
include Aws::Structure
|
32582
|
+
end
|
32583
|
+
|
32029
32584
|
# @!attribute [rw] dry_run
|
32030
32585
|
# Checks whether you have the required permissions for the action,
|
32031
32586
|
# without actually making the request, and provides an error response.
|
@@ -33185,18 +33740,14 @@ module Aws::EC2
|
|
33185
33740
|
|
33186
33741
|
# Deprecated.
|
33187
33742
|
#
|
33188
|
-
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
33189
|
-
# workloads that require graphics acceleration, we recommend that you
|
33190
|
-
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
33743
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
33191
33744
|
#
|
33192
33745
|
# </note>
|
33193
33746
|
#
|
33194
33747
|
# @!attribute [rw] type
|
33195
33748
|
# Deprecated.
|
33196
33749
|
#
|
33197
|
-
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
33198
|
-
# workloads that require graphics acceleration, we recommend that you
|
33199
|
-
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
33750
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
33200
33751
|
#
|
33201
33752
|
# </note>
|
33202
33753
|
# @return [String]
|
@@ -33358,12 +33909,12 @@ module Aws::EC2
|
|
33358
33909
|
#
|
33359
33910
|
# @!attribute [rw] ena_srd_enabled
|
33360
33911
|
# Specifies whether ENA Express is enabled for the network interface
|
33361
|
-
# when you launch an instance
|
33912
|
+
# when you launch an instance.
|
33362
33913
|
# @return [Boolean]
|
33363
33914
|
#
|
33364
33915
|
# @!attribute [rw] ena_srd_udp_specification
|
33365
|
-
# Contains ENA Express settings for UDP network traffic
|
33366
|
-
#
|
33916
|
+
# Contains ENA Express settings for UDP network traffic for the
|
33917
|
+
# network interface attached to the instance.
|
33367
33918
|
# @return [Types::EnaSrdUdpSpecificationRequest]
|
33368
33919
|
#
|
33369
33920
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnaSrdSpecificationRequest AWS API Documentation
|
@@ -33403,7 +33954,7 @@ module Aws::EC2
|
|
33403
33954
|
# Indicates whether UDP traffic uses ENA Express for your instance. To
|
33404
33955
|
# ensure that UDP traffic can use ENA Express when you launch an
|
33405
33956
|
# instance, you must also set **EnaSrdEnabled** in the
|
33406
|
-
# **EnaSrdSpecificationRequest** to `true
|
33957
|
+
# **EnaSrdSpecificationRequest** to `true`.
|
33407
33958
|
# @return [Boolean]
|
33408
33959
|
#
|
33409
33960
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnaSrdUdpSpecificationRequest AWS API Documentation
|
@@ -34071,6 +34622,44 @@ module Aws::EC2
|
|
34071
34622
|
include Aws::Structure
|
34072
34623
|
end
|
34073
34624
|
|
34625
|
+
# @!attribute [rw] route_server_id
|
34626
|
+
# The ID of the route server for which to enable propagation.
|
34627
|
+
# @return [String]
|
34628
|
+
#
|
34629
|
+
# @!attribute [rw] route_table_id
|
34630
|
+
# The ID of the route table to which route server will propagate
|
34631
|
+
# routes.
|
34632
|
+
# @return [String]
|
34633
|
+
#
|
34634
|
+
# @!attribute [rw] dry_run
|
34635
|
+
# A check for whether you have the required permissions for the action
|
34636
|
+
# without actually making the request and provides an error response.
|
34637
|
+
# If you have the required permissions, the error response is
|
34638
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
34639
|
+
# @return [Boolean]
|
34640
|
+
#
|
34641
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableRouteServerPropagationRequest AWS API Documentation
|
34642
|
+
#
|
34643
|
+
class EnableRouteServerPropagationRequest < Struct.new(
|
34644
|
+
:route_server_id,
|
34645
|
+
:route_table_id,
|
34646
|
+
:dry_run)
|
34647
|
+
SENSITIVE = []
|
34648
|
+
include Aws::Structure
|
34649
|
+
end
|
34650
|
+
|
34651
|
+
# @!attribute [rw] route_server_propagation
|
34652
|
+
# Information about the enabled route server propagation.
|
34653
|
+
# @return [Types::RouteServerPropagation]
|
34654
|
+
#
|
34655
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableRouteServerPropagationResult AWS API Documentation
|
34656
|
+
#
|
34657
|
+
class EnableRouteServerPropagationResult < Struct.new(
|
34658
|
+
:route_server_propagation)
|
34659
|
+
SENSITIVE = []
|
34660
|
+
include Aws::Structure
|
34661
|
+
end
|
34662
|
+
|
34074
34663
|
# @!attribute [rw] dry_run
|
34075
34664
|
# Checks whether you have the required permissions for the action,
|
34076
34665
|
# without actually making the request, and provides an error response.
|
@@ -36001,14 +36590,14 @@ module Aws::EC2
|
|
36001
36590
|
# customer managed KMS key to use for EBS encryption.
|
36002
36591
|
#
|
36003
36592
|
# This parameter is only supported on `BlockDeviceMapping` objects
|
36004
|
-
# called by [
|
36005
|
-
# [
|
36593
|
+
# called by [CreateFleet][1], [RequestSpotInstances][2], and
|
36594
|
+
# [RunInstances][3].
|
36006
36595
|
#
|
36007
36596
|
#
|
36008
36597
|
#
|
36009
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/
|
36010
|
-
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/
|
36011
|
-
# [3]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/
|
36598
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateFleet.html
|
36599
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RequestSpotInstances.html
|
36600
|
+
# [3]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html
|
36012
36601
|
# @return [String]
|
36013
36602
|
#
|
36014
36603
|
# @!attribute [rw] snapshot_id
|
@@ -36236,10 +36825,13 @@ module Aws::EC2
|
|
36236
36825
|
# @return [String]
|
36237
36826
|
#
|
36238
36827
|
# @!attribute [rw] block_device_mappings
|
36239
|
-
# The block device
|
36240
|
-
# store volumes to attach to the instance at launch.
|
36241
|
-
#
|
36242
|
-
#
|
36828
|
+
# The block device mappings, which define the EBS volumes and instance
|
36829
|
+
# store volumes to attach to the instance at launch.
|
36830
|
+
#
|
36831
|
+
# Supported only for fleets of type `instant`.
|
36832
|
+
#
|
36833
|
+
# For more information, see [Block device mappings for volumes on
|
36834
|
+
# Amazon EC2 instances][1] in the *Amazon EC2 User Guide*.
|
36243
36835
|
#
|
36244
36836
|
#
|
36245
36837
|
#
|
@@ -36345,26 +36937,13 @@ module Aws::EC2
|
|
36345
36937
|
# @return [Types::Placement]
|
36346
36938
|
#
|
36347
36939
|
# @!attribute [rw] block_device_mappings
|
36348
|
-
# The block device
|
36349
|
-
# store volumes to attach to the instance at launch.
|
36350
|
-
# information, see [Block device mappings for volumes on Amazon EC2
|
36351
|
-
# instances][1] in the *Amazon EC2 User Guide*.
|
36352
|
-
#
|
36353
|
-
# To override a block device mapping specified in the launch template:
|
36354
|
-
#
|
36355
|
-
# * Specify the exact same `DeviceName` here as specified in the
|
36356
|
-
# launch template.
|
36357
|
-
#
|
36358
|
-
# * Only specify the parameters you want to change.
|
36359
|
-
#
|
36360
|
-
# * Any parameters you don't specify here will keep their original
|
36361
|
-
# launch template values.
|
36362
|
-
#
|
36363
|
-
# To add a new block device mapping:
|
36940
|
+
# The block device mappings, which define the EBS volumes and instance
|
36941
|
+
# store volumes to attach to the instance at launch.
|
36364
36942
|
#
|
36365
|
-
#
|
36943
|
+
# Supported only for fleets of type `instant`.
|
36366
36944
|
#
|
36367
|
-
#
|
36945
|
+
# For more information, see [Block device mappings for volumes on
|
36946
|
+
# Amazon EC2 instances][1] in the *Amazon EC2 User Guide*.
|
36368
36947
|
#
|
36369
36948
|
#
|
36370
36949
|
#
|
@@ -37269,24 +37848,30 @@ module Aws::EC2
|
|
37269
37848
|
# constraints, or instance limit constraints. You can view a failed
|
37270
37849
|
# request for 60 minutes.
|
37271
37850
|
#
|
37272
|
-
# * `scheduled` - (*Future-dated Capacity Reservations
|
37851
|
+
# * `scheduled` - (*Future-dated Capacity Reservations*) The
|
37273
37852
|
# future-dated Capacity Reservation request was approved and the
|
37274
37853
|
# Capacity Reservation is scheduled for delivery on the requested
|
37275
37854
|
# start date.
|
37276
37855
|
#
|
37277
|
-
# * `
|
37278
|
-
#
|
37279
|
-
#
|
37856
|
+
# * `payment-pending` - (*Capacity Blocks*) The upfront payment has
|
37857
|
+
# not been processed yet.
|
37858
|
+
#
|
37859
|
+
# * `payment-failed` - (*Capacity Blocks*) The upfront payment was not
|
37860
|
+
# processed in the 12-hour time frame. Your Capacity Block was
|
37861
|
+
# released.
|
37280
37862
|
#
|
37281
|
-
# * `
|
37863
|
+
# * `assessing` - (*Future-dated Capacity Reservations*) Amazon EC2 is
|
37864
|
+
# assessing your request for a future-dated Capacity Reservation.
|
37865
|
+
#
|
37866
|
+
# * `delayed` - (*Future-dated Capacity Reservations*) Amazon EC2
|
37282
37867
|
# encountered a delay in provisioning the requested future-dated
|
37283
37868
|
# Capacity Reservation. Amazon EC2 is unable to deliver the
|
37284
37869
|
# requested capacity by the requested start date and time.
|
37285
37870
|
#
|
37286
|
-
# * `unsupported` - (*Future-dated Capacity Reservations
|
37287
|
-
#
|
37288
|
-
#
|
37289
|
-
#
|
37871
|
+
# * `unsupported` - (*Future-dated Capacity Reservations*) Amazon EC2
|
37872
|
+
# can't support the future-dated Capacity Reservation request due
|
37873
|
+
# to capacity constraints. You can view unsupported requests for 30
|
37874
|
+
# days. The Capacity Reservation will not be delivered.
|
37290
37875
|
# @return [String]
|
37291
37876
|
#
|
37292
37877
|
# @!attribute [rw] instance_usages
|
@@ -38856,6 +39441,136 @@ module Aws::EC2
|
|
38856
39441
|
include Aws::Structure
|
38857
39442
|
end
|
38858
39443
|
|
39444
|
+
# @!attribute [rw] route_server_id
|
39445
|
+
# The ID of the route server for which to get association information.
|
39446
|
+
# @return [String]
|
39447
|
+
#
|
39448
|
+
# @!attribute [rw] dry_run
|
39449
|
+
# A check for whether you have the required permissions for the action
|
39450
|
+
# without actually making the request and provides an error response.
|
39451
|
+
# If you have the required permissions, the error response is
|
39452
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
39453
|
+
# @return [Boolean]
|
39454
|
+
#
|
39455
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetRouteServerAssociationsRequest AWS API Documentation
|
39456
|
+
#
|
39457
|
+
class GetRouteServerAssociationsRequest < Struct.new(
|
39458
|
+
:route_server_id,
|
39459
|
+
:dry_run)
|
39460
|
+
SENSITIVE = []
|
39461
|
+
include Aws::Structure
|
39462
|
+
end
|
39463
|
+
|
39464
|
+
# @!attribute [rw] route_server_associations
|
39465
|
+
# Information about the associations for the specified route server.
|
39466
|
+
# @return [Array<Types::RouteServerAssociation>]
|
39467
|
+
#
|
39468
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetRouteServerAssociationsResult AWS API Documentation
|
39469
|
+
#
|
39470
|
+
class GetRouteServerAssociationsResult < Struct.new(
|
39471
|
+
:route_server_associations)
|
39472
|
+
SENSITIVE = []
|
39473
|
+
include Aws::Structure
|
39474
|
+
end
|
39475
|
+
|
39476
|
+
# @!attribute [rw] route_server_id
|
39477
|
+
# The ID of the route server for which to get propagation information.
|
39478
|
+
# @return [String]
|
39479
|
+
#
|
39480
|
+
# @!attribute [rw] route_table_id
|
39481
|
+
# The ID of the route table for which to get propagation information.
|
39482
|
+
# @return [String]
|
39483
|
+
#
|
39484
|
+
# @!attribute [rw] dry_run
|
39485
|
+
# A check for whether you have the required permissions for the action
|
39486
|
+
# without actually making the request and provides an error response.
|
39487
|
+
# If you have the required permissions, the error response is
|
39488
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
39489
|
+
# @return [Boolean]
|
39490
|
+
#
|
39491
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetRouteServerPropagationsRequest AWS API Documentation
|
39492
|
+
#
|
39493
|
+
class GetRouteServerPropagationsRequest < Struct.new(
|
39494
|
+
:route_server_id,
|
39495
|
+
:route_table_id,
|
39496
|
+
:dry_run)
|
39497
|
+
SENSITIVE = []
|
39498
|
+
include Aws::Structure
|
39499
|
+
end
|
39500
|
+
|
39501
|
+
# @!attribute [rw] route_server_propagations
|
39502
|
+
# Information about the route propagations for the specified route
|
39503
|
+
# server.
|
39504
|
+
# @return [Array<Types::RouteServerPropagation>]
|
39505
|
+
#
|
39506
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetRouteServerPropagationsResult AWS API Documentation
|
39507
|
+
#
|
39508
|
+
class GetRouteServerPropagationsResult < Struct.new(
|
39509
|
+
:route_server_propagations)
|
39510
|
+
SENSITIVE = []
|
39511
|
+
include Aws::Structure
|
39512
|
+
end
|
39513
|
+
|
39514
|
+
# @!attribute [rw] route_server_id
|
39515
|
+
# The ID of the route server for which to get the routing database.
|
39516
|
+
# @return [String]
|
39517
|
+
#
|
39518
|
+
# @!attribute [rw] next_token
|
39519
|
+
# The token for the next page of results.
|
39520
|
+
# @return [String]
|
39521
|
+
#
|
39522
|
+
# @!attribute [rw] max_results
|
39523
|
+
# The maximum number of routing database entries to return in a single
|
39524
|
+
# response.
|
39525
|
+
# @return [Integer]
|
39526
|
+
#
|
39527
|
+
# @!attribute [rw] dry_run
|
39528
|
+
# A check for whether you have the required permissions for the action
|
39529
|
+
# without actually making the request and provides an error response.
|
39530
|
+
# If you have the required permissions, the error response is
|
39531
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
39532
|
+
# @return [Boolean]
|
39533
|
+
#
|
39534
|
+
# @!attribute [rw] filters
|
39535
|
+
# Filters to apply to the routing database query.
|
39536
|
+
# @return [Array<Types::Filter>]
|
39537
|
+
#
|
39538
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetRouteServerRoutingDatabaseRequest AWS API Documentation
|
39539
|
+
#
|
39540
|
+
class GetRouteServerRoutingDatabaseRequest < Struct.new(
|
39541
|
+
:route_server_id,
|
39542
|
+
:next_token,
|
39543
|
+
:max_results,
|
39544
|
+
:dry_run,
|
39545
|
+
:filters)
|
39546
|
+
SENSITIVE = []
|
39547
|
+
include Aws::Structure
|
39548
|
+
end
|
39549
|
+
|
39550
|
+
# @!attribute [rw] are_routes_persisted
|
39551
|
+
# Indicates whether routes are being persisted in the routing
|
39552
|
+
# database.
|
39553
|
+
# @return [Boolean]
|
39554
|
+
#
|
39555
|
+
# @!attribute [rw] routes
|
39556
|
+
# The collection of routes in the route server's routing database.
|
39557
|
+
# @return [Array<Types::RouteServerRoute>]
|
39558
|
+
#
|
39559
|
+
# @!attribute [rw] next_token
|
39560
|
+
# The token to use to retrieve the next page of results. This value is
|
39561
|
+
# `null` when there are no more results to return.
|
39562
|
+
# @return [String]
|
39563
|
+
#
|
39564
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetRouteServerRoutingDatabaseResult AWS API Documentation
|
39565
|
+
#
|
39566
|
+
class GetRouteServerRoutingDatabaseResult < Struct.new(
|
39567
|
+
:are_routes_persisted,
|
39568
|
+
:routes,
|
39569
|
+
:next_token)
|
39570
|
+
SENSITIVE = []
|
39571
|
+
include Aws::Structure
|
39572
|
+
end
|
39573
|
+
|
38859
39574
|
# @!attribute [rw] vpc_id
|
38860
39575
|
# The VPC ID where the security group can be used.
|
38861
39576
|
# @return [String]
|
@@ -42992,6 +43707,11 @@ module Aws::EC2
|
|
42992
43707
|
# @!attribute [rw] instance_tags
|
42993
43708
|
# The instance tags to associate with the event window. Any instances
|
42994
43709
|
# associated with the tags will be associated with the event window.
|
43710
|
+
#
|
43711
|
+
# Note that while you can't create tag keys beginning with `aws:`,
|
43712
|
+
# you can specify existing Amazon Web Services managed tag keys (with
|
43713
|
+
# the `aws:` prefix) when specifying them as targets to associate with
|
43714
|
+
# the event window.
|
42995
43715
|
# @return [Array<Types::Tag>]
|
42996
43716
|
#
|
42997
43717
|
# @!attribute [rw] dedicated_host_ids
|
@@ -43017,6 +43737,11 @@ module Aws::EC2
|
|
43017
43737
|
# @!attribute [rw] tags
|
43018
43738
|
# The instance tags associated with the event window. Any instances
|
43019
43739
|
# associated with the tags will be associated with the event window.
|
43740
|
+
#
|
43741
|
+
# Note that while you can't create tag keys beginning with `aws:`,
|
43742
|
+
# you can specify existing Amazon Web Services managed tag keys (with
|
43743
|
+
# the `aws:` prefix) when specifying them as targets to associate with
|
43744
|
+
# the event window.
|
43020
43745
|
# @return [Array<Types::Tag>]
|
43021
43746
|
#
|
43022
43747
|
# @!attribute [rw] dedicated_host_ids
|
@@ -44398,12 +45123,6 @@ module Aws::EC2
|
|
44398
45123
|
#
|
44399
45124
|
# * For instance types with GPU accelerators, specify `gpu`.
|
44400
45125
|
#
|
44401
|
-
# * For instance types with Inference accelerators, specify
|
44402
|
-
# `inference`.
|
44403
|
-
#
|
44404
|
-
# * For instance types with Inference accelerators, specify
|
44405
|
-
# `inference`.
|
44406
|
-
#
|
44407
45126
|
# Default: Any accelerator type
|
44408
45127
|
# @return [Array<String>]
|
44409
45128
|
#
|
@@ -44887,9 +45606,6 @@ module Aws::EC2
|
|
44887
45606
|
#
|
44888
45607
|
# * For instance types with GPU accelerators, specify `gpu`.
|
44889
45608
|
#
|
44890
|
-
# * For instance types with Inference accelerators, specify
|
44891
|
-
# `inference`.
|
44892
|
-
#
|
44893
45609
|
# Default: Any accelerator type
|
44894
45610
|
# @return [Array<String>]
|
44895
45611
|
#
|
@@ -53223,6 +53939,77 @@ module Aws::EC2
|
|
53223
53939
|
include Aws::Structure
|
53224
53940
|
end
|
53225
53941
|
|
53942
|
+
# @!attribute [rw] route_server_id
|
53943
|
+
# The ID of the route server to modify.
|
53944
|
+
# @return [String]
|
53945
|
+
#
|
53946
|
+
# @!attribute [rw] persist_routes
|
53947
|
+
# Specifies whether to persist routes after all BGP sessions are
|
53948
|
+
# terminated.
|
53949
|
+
#
|
53950
|
+
# * enable: Routes will be persisted in FIB and RIB after all BGP
|
53951
|
+
# sessions are terminated.
|
53952
|
+
#
|
53953
|
+
# * disable: Routes will not be persisted in FIB and RIB after all BGP
|
53954
|
+
# sessions are terminated.
|
53955
|
+
#
|
53956
|
+
# * reset: If a route server has persisted routes due to all BGP
|
53957
|
+
# sessions having ended, reset will withdraw all routes and reset
|
53958
|
+
# route server to an empty FIB and RIB.
|
53959
|
+
# @return [String]
|
53960
|
+
#
|
53961
|
+
# @!attribute [rw] persist_routes_duration
|
53962
|
+
# The number of minutes a route server will wait after BGP is
|
53963
|
+
# re-established to unpersist the routes in the FIB and RIB. Value
|
53964
|
+
# must be in the range of 1-5. Required if PersistRoutes is `enabled`.
|
53965
|
+
#
|
53966
|
+
# If you set the duration to 1 minute, then when your network
|
53967
|
+
# appliance re-establishes BGP with route server, it has 1 minute to
|
53968
|
+
# relearn it's adjacent network and advertise those routes to route
|
53969
|
+
# server before route server resumes normal functionality. In most
|
53970
|
+
# cases, 1 minute is probably sufficient. If, however, you have
|
53971
|
+
# concerns that your BGP network may not be capable of fully
|
53972
|
+
# re-establishing and re-learning everything in 1 minute, you can
|
53973
|
+
# increase the duration up to 5 minutes.
|
53974
|
+
# @return [Integer]
|
53975
|
+
#
|
53976
|
+
# @!attribute [rw] sns_notifications_enabled
|
53977
|
+
# Specifies whether to enable SNS notifications for route server
|
53978
|
+
# events. Enabling SNS notifications persists BGP status changes to an
|
53979
|
+
# SNS topic provisioned by Amazon Web Services.
|
53980
|
+
# @return [Boolean]
|
53981
|
+
#
|
53982
|
+
# @!attribute [rw] dry_run
|
53983
|
+
# A check for whether you have the required permissions for the action
|
53984
|
+
# without actually making the request and provides an error response.
|
53985
|
+
# If you have the required permissions, the error response is
|
53986
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
53987
|
+
# @return [Boolean]
|
53988
|
+
#
|
53989
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyRouteServerRequest AWS API Documentation
|
53990
|
+
#
|
53991
|
+
class ModifyRouteServerRequest < Struct.new(
|
53992
|
+
:route_server_id,
|
53993
|
+
:persist_routes,
|
53994
|
+
:persist_routes_duration,
|
53995
|
+
:sns_notifications_enabled,
|
53996
|
+
:dry_run)
|
53997
|
+
SENSITIVE = []
|
53998
|
+
include Aws::Structure
|
53999
|
+
end
|
54000
|
+
|
54001
|
+
# @!attribute [rw] route_server
|
54002
|
+
# Information about the modified route server.
|
54003
|
+
# @return [Types::RouteServer]
|
54004
|
+
#
|
54005
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyRouteServerResult AWS API Documentation
|
54006
|
+
#
|
54007
|
+
class ModifyRouteServerResult < Struct.new(
|
54008
|
+
:route_server)
|
54009
|
+
SENSITIVE = []
|
54010
|
+
include Aws::Structure
|
54011
|
+
end
|
54012
|
+
|
53226
54013
|
# @!attribute [rw] group_id
|
53227
54014
|
# The ID of the security group.
|
53228
54015
|
# @return [String]
|
@@ -57620,11 +58407,11 @@ module Aws::EC2
|
|
57620
58407
|
include Aws::Structure
|
57621
58408
|
end
|
57622
58409
|
|
57623
|
-
# Describes whether the resource is managed by
|
58410
|
+
# Describes whether the resource is managed by a service provider and,
|
57624
58411
|
# if so, describes the service provider that manages it.
|
57625
58412
|
#
|
57626
58413
|
# @!attribute [rw] managed
|
57627
|
-
# If `true`, the resource is managed by
|
58414
|
+
# If `true`, the resource is managed by a service provider.
|
57628
58415
|
# @return [Boolean]
|
57629
58416
|
#
|
57630
58417
|
# @!attribute [rw] principal
|
@@ -61444,9 +62231,7 @@ module Aws::EC2
|
|
61444
62231
|
# @!attribute [rw] elastic_gpu_specifications
|
61445
62232
|
# Deprecated.
|
61446
62233
|
#
|
61447
|
-
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
61448
|
-
# workloads that require graphics acceleration, we recommend that you
|
61449
|
-
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
62234
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
61450
62235
|
#
|
61451
62236
|
# </note>
|
61452
62237
|
# @return [Array<Types::ElasticGpuSpecification>]
|
@@ -61463,18 +62248,6 @@ module Aws::EC2
|
|
61463
62248
|
#
|
61464
62249
|
# You cannot specify accelerators from different generations in the
|
61465
62250
|
# same request.
|
61466
|
-
#
|
61467
|
-
# <note markdown="1"> Starting April 15, 2023, Amazon Web Services will not onboard new
|
61468
|
-
# customers to Amazon Elastic Inference (EI), and will help current
|
61469
|
-
# customers migrate their workloads to options that offer better price
|
61470
|
-
# and performance. After April 15, 2023, new customers will not be
|
61471
|
-
# able to launch instances with Amazon EI accelerators in Amazon
|
61472
|
-
# SageMaker, Amazon ECS, or Amazon EC2. However, customers who have
|
61473
|
-
# used Amazon EI at least once during the past 30-day period are
|
61474
|
-
# considered current customers and will be able to continue using the
|
61475
|
-
# service.
|
61476
|
-
#
|
61477
|
-
# </note>
|
61478
62251
|
# @return [Array<Types::LaunchTemplateElasticInferenceAccelerator>]
|
61479
62252
|
#
|
61480
62253
|
# @!attribute [rw] security_group_ids
|
@@ -62918,9 +63691,7 @@ module Aws::EC2
|
|
62918
63691
|
# @!attribute [rw] elastic_gpu_specifications
|
62919
63692
|
# Deprecated.
|
62920
63693
|
#
|
62921
|
-
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
62922
|
-
# workloads that require graphics acceleration, we recommend that you
|
62923
|
-
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
63694
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
62924
63695
|
#
|
62925
63696
|
# </note>
|
62926
63697
|
# @return [Array<Types::ElasticGpuSpecificationResponse>]
|
@@ -62937,18 +63708,6 @@ module Aws::EC2
|
|
62937
63708
|
#
|
62938
63709
|
# You cannot specify accelerators from different generations in the
|
62939
63710
|
# same request.
|
62940
|
-
#
|
62941
|
-
# <note markdown="1"> Starting April 15, 2023, Amazon Web Services will not onboard new
|
62942
|
-
# customers to Amazon Elastic Inference (EI), and will help current
|
62943
|
-
# customers migrate their workloads to options that offer better price
|
62944
|
-
# and performance. After April 15, 2023, new customers will not be
|
62945
|
-
# able to launch instances with Amazon EI accelerators in Amazon
|
62946
|
-
# SageMaker, Amazon ECS, or Amazon EC2. However, customers who have
|
62947
|
-
# used Amazon EI at least once during the past 30-day period are
|
62948
|
-
# considered current customers and will be able to continue using the
|
62949
|
-
# service.
|
62950
|
-
#
|
62951
|
-
# </note>
|
62952
63711
|
# @return [Array<Types::LaunchTemplateElasticInferenceAcceleratorResponse>]
|
62953
63712
|
#
|
62954
63713
|
# @!attribute [rw] security_group_ids
|
@@ -63773,6 +64532,507 @@ module Aws::EC2
|
|
63773
64532
|
include Aws::Structure
|
63774
64533
|
end
|
63775
64534
|
|
64535
|
+
# Describes a route server and its configuration.
|
64536
|
+
#
|
64537
|
+
# Amazon VPC Route Server simplifies routing for traffic between
|
64538
|
+
# workloads that are deployed within a VPC and its internet gateways.
|
64539
|
+
# With this feature, VPC Route Server dynamically updates VPC and
|
64540
|
+
# gateway route tables with your preferred IPv4 or IPv6 routes to
|
64541
|
+
# achieve routing fault tolerance for those workloads. This enables you
|
64542
|
+
# to automatically reroute traffic within a VPC, which increases the
|
64543
|
+
# manageability of VPC routing and interoperability with third-party
|
64544
|
+
# workloads.
|
64545
|
+
#
|
64546
|
+
# Route server supports the follow route table types:
|
64547
|
+
#
|
64548
|
+
# * VPC route tables
|
64549
|
+
#
|
64550
|
+
# * Subnet route tables
|
64551
|
+
#
|
64552
|
+
# * Internet gateway route tables
|
64553
|
+
#
|
64554
|
+
# Route server does not support route tables associated with virtual
|
64555
|
+
# private gateways. To propagate routes into a transit gateway route
|
64556
|
+
# table, use [Transit Gateway Connect][1].
|
64557
|
+
#
|
64558
|
+
#
|
64559
|
+
#
|
64560
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-connect.html
|
64561
|
+
#
|
64562
|
+
# @!attribute [rw] route_server_id
|
64563
|
+
# The unique identifier of the route server.
|
64564
|
+
# @return [String]
|
64565
|
+
#
|
64566
|
+
# @!attribute [rw] amazon_side_asn
|
64567
|
+
# The Border Gateway Protocol (BGP) Autonomous System Number (ASN) for
|
64568
|
+
# the appliance. Valid values are from 1 to 4294967295. We recommend
|
64569
|
+
# using a private ASN in the 64512–65534 (16-bit ASN) or
|
64570
|
+
# 4200000000–4294967294 (32-bit ASN) range.
|
64571
|
+
# @return [Integer]
|
64572
|
+
#
|
64573
|
+
# @!attribute [rw] state
|
64574
|
+
# The current state of the route server.
|
64575
|
+
# @return [String]
|
64576
|
+
#
|
64577
|
+
# @!attribute [rw] tags
|
64578
|
+
# Any tags assigned to the route server.
|
64579
|
+
# @return [Array<Types::Tag>]
|
64580
|
+
#
|
64581
|
+
# @!attribute [rw] persist_routes_state
|
64582
|
+
# The current state of route persistence for the route server.
|
64583
|
+
# @return [String]
|
64584
|
+
#
|
64585
|
+
# @!attribute [rw] persist_routes_duration
|
64586
|
+
# The number of minutes a route server will wait after BGP is
|
64587
|
+
# re-established to unpersist the routes in the FIB and RIB. Value
|
64588
|
+
# must be in the range of 1-5. The default value is 1. Only valid if
|
64589
|
+
# `persistRoutesState` is 'enabled'.
|
64590
|
+
#
|
64591
|
+
# If you set the duration to 1 minute, then when your network
|
64592
|
+
# appliance re-establishes BGP with route server, it has 1 minute to
|
64593
|
+
# relearn it's adjacent network and advertise those routes to route
|
64594
|
+
# server before route server resumes normal functionality. In most
|
64595
|
+
# cases, 1 minute is probably sufficient. If, however, you have
|
64596
|
+
# concerns that your BGP network may not be capable of fully
|
64597
|
+
# re-establishing and re-learning everything in 1 minute, you can
|
64598
|
+
# increase the duration up to 5 minutes.
|
64599
|
+
# @return [Integer]
|
64600
|
+
#
|
64601
|
+
# @!attribute [rw] sns_notifications_enabled
|
64602
|
+
# Indicates whether SNS notifications are enabled for the route
|
64603
|
+
# server. Enabling SNS notifications persists BGP status changes to an
|
64604
|
+
# SNS topic provisioned by Amazon Web Services.
|
64605
|
+
# @return [Boolean]
|
64606
|
+
#
|
64607
|
+
# @!attribute [rw] sns_topic_arn
|
64608
|
+
# The ARN of the SNS topic where notifications are published.
|
64609
|
+
# @return [String]
|
64610
|
+
#
|
64611
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RouteServer AWS API Documentation
|
64612
|
+
#
|
64613
|
+
class RouteServer < Struct.new(
|
64614
|
+
:route_server_id,
|
64615
|
+
:amazon_side_asn,
|
64616
|
+
:state,
|
64617
|
+
:tags,
|
64618
|
+
:persist_routes_state,
|
64619
|
+
:persist_routes_duration,
|
64620
|
+
:sns_notifications_enabled,
|
64621
|
+
:sns_topic_arn)
|
64622
|
+
SENSITIVE = []
|
64623
|
+
include Aws::Structure
|
64624
|
+
end
|
64625
|
+
|
64626
|
+
# Describes the association between a route server and a VPC.
|
64627
|
+
#
|
64628
|
+
# A route server association is the connection established between a
|
64629
|
+
# route server and a VPC. This is a fundamental configuration step that
|
64630
|
+
# enables the route server to work with appliances in your VPC.
|
64631
|
+
#
|
64632
|
+
# @!attribute [rw] route_server_id
|
64633
|
+
# The ID of the associated route server.
|
64634
|
+
# @return [String]
|
64635
|
+
#
|
64636
|
+
# @!attribute [rw] vpc_id
|
64637
|
+
# The ID of the associated VPC.
|
64638
|
+
# @return [String]
|
64639
|
+
#
|
64640
|
+
# @!attribute [rw] state
|
64641
|
+
# The current state of the association.
|
64642
|
+
# @return [String]
|
64643
|
+
#
|
64644
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RouteServerAssociation AWS API Documentation
|
64645
|
+
#
|
64646
|
+
class RouteServerAssociation < Struct.new(
|
64647
|
+
:route_server_id,
|
64648
|
+
:vpc_id,
|
64649
|
+
:state)
|
64650
|
+
SENSITIVE = []
|
64651
|
+
include Aws::Structure
|
64652
|
+
end
|
64653
|
+
|
64654
|
+
# The current status of Bidirectional Forwarding Detection (BFD) for a
|
64655
|
+
# BGP session.
|
64656
|
+
#
|
64657
|
+
# @!attribute [rw] status
|
64658
|
+
# The operational status of the BFD session.
|
64659
|
+
# @return [String]
|
64660
|
+
#
|
64661
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RouteServerBfdStatus AWS API Documentation
|
64662
|
+
#
|
64663
|
+
class RouteServerBfdStatus < Struct.new(
|
64664
|
+
:status)
|
64665
|
+
SENSITIVE = []
|
64666
|
+
include Aws::Structure
|
64667
|
+
end
|
64668
|
+
|
64669
|
+
# The BGP configuration options for a route server peer.
|
64670
|
+
#
|
64671
|
+
# @!attribute [rw] peer_asn
|
64672
|
+
# The Border Gateway Protocol (BGP) Autonomous System Number (ASN) for
|
64673
|
+
# the appliance. Valid values are from 1 to 4294967295. We recommend
|
64674
|
+
# using a private ASN in the 64512–65534 (16-bit ASN) or
|
64675
|
+
# 4200000000–4294967294 (32-bit ASN) range.
|
64676
|
+
# @return [Integer]
|
64677
|
+
#
|
64678
|
+
# @!attribute [rw] peer_liveness_detection
|
64679
|
+
# The liveness detection protocol used for the BGP peer.
|
64680
|
+
#
|
64681
|
+
# The requested liveness detection protocol for the BGP peer.
|
64682
|
+
#
|
64683
|
+
# * `bgp-keepalive`: The standard BGP keep alive mechanism
|
64684
|
+
# ([RFC4271][1]) that is stable but may take longer to fail-over in
|
64685
|
+
# cases of network impact or router failure.
|
64686
|
+
#
|
64687
|
+
# * `bfd`: An additional Bidirectional Forwarding Detection (BFD)
|
64688
|
+
# protocol ([RFC5880][2]) that enables fast failover by using more
|
64689
|
+
# sensitive liveness detection.
|
64690
|
+
#
|
64691
|
+
# Defaults to `bgp-keepalive`.
|
64692
|
+
#
|
64693
|
+
#
|
64694
|
+
#
|
64695
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc4271#page-21
|
64696
|
+
# [2]: https://www.rfc-editor.org/rfc/rfc5880
|
64697
|
+
# @return [String]
|
64698
|
+
#
|
64699
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RouteServerBgpOptions AWS API Documentation
|
64700
|
+
#
|
64701
|
+
class RouteServerBgpOptions < Struct.new(
|
64702
|
+
:peer_asn,
|
64703
|
+
:peer_liveness_detection)
|
64704
|
+
SENSITIVE = []
|
64705
|
+
include Aws::Structure
|
64706
|
+
end
|
64707
|
+
|
64708
|
+
# The BGP configuration options requested for a route server peer.
|
64709
|
+
#
|
64710
|
+
# @!attribute [rw] peer_asn
|
64711
|
+
# The Border Gateway Protocol (BGP) Autonomous System Number (ASN) for
|
64712
|
+
# the appliance. Valid values are from 1 to 4294967295. We recommend
|
64713
|
+
# using a private ASN in the 64512–65534 (16-bit ASN) or
|
64714
|
+
# 4200000000–4294967294 (32-bit ASN) range.
|
64715
|
+
# @return [Integer]
|
64716
|
+
#
|
64717
|
+
# @!attribute [rw] peer_liveness_detection
|
64718
|
+
# The requested liveness detection protocol for the BGP peer.
|
64719
|
+
#
|
64720
|
+
# * `bgp-keepalive`: The standard BGP keep alive mechanism
|
64721
|
+
# ([RFC4271][1]) that is stable but may take longer to fail-over in
|
64722
|
+
# cases of network impact or router failure.
|
64723
|
+
#
|
64724
|
+
# * `bfd`: An additional Bidirectional Forwarding Detection (BFD)
|
64725
|
+
# protocol ([RFC5880][2]) that enables fast failover by using more
|
64726
|
+
# sensitive liveness detection.
|
64727
|
+
#
|
64728
|
+
# Defaults to `bgp-keepalive`.
|
64729
|
+
#
|
64730
|
+
#
|
64731
|
+
#
|
64732
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc4271#page-21
|
64733
|
+
# [2]: https://www.rfc-editor.org/rfc/rfc5880
|
64734
|
+
# @return [String]
|
64735
|
+
#
|
64736
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RouteServerBgpOptionsRequest AWS API Documentation
|
64737
|
+
#
|
64738
|
+
class RouteServerBgpOptionsRequest < Struct.new(
|
64739
|
+
:peer_asn,
|
64740
|
+
:peer_liveness_detection)
|
64741
|
+
SENSITIVE = []
|
64742
|
+
include Aws::Structure
|
64743
|
+
end
|
64744
|
+
|
64745
|
+
# The current status of a BGP session.
|
64746
|
+
#
|
64747
|
+
# @!attribute [rw] status
|
64748
|
+
# The operational status of the BGP session. The status enables you to
|
64749
|
+
# monitor session liveness if you lack monitoring on your
|
64750
|
+
# router/appliance.
|
64751
|
+
# @return [String]
|
64752
|
+
#
|
64753
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RouteServerBgpStatus AWS API Documentation
|
64754
|
+
#
|
64755
|
+
class RouteServerBgpStatus < Struct.new(
|
64756
|
+
:status)
|
64757
|
+
SENSITIVE = []
|
64758
|
+
include Aws::Structure
|
64759
|
+
end
|
64760
|
+
|
64761
|
+
# Describes a route server endpoint and its properties.
|
64762
|
+
#
|
64763
|
+
# 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. Create two
|
64766
|
+
# endpoints per subnet for redundancy.
|
64767
|
+
#
|
64768
|
+
# @!attribute [rw] route_server_id
|
64769
|
+
# The ID of the route server associated with this endpoint.
|
64770
|
+
# @return [String]
|
64771
|
+
#
|
64772
|
+
# @!attribute [rw] route_server_endpoint_id
|
64773
|
+
# The unique identifier of the route server endpoint.
|
64774
|
+
# @return [String]
|
64775
|
+
#
|
64776
|
+
# @!attribute [rw] vpc_id
|
64777
|
+
# The ID of the VPC containing the endpoint.
|
64778
|
+
# @return [String]
|
64779
|
+
#
|
64780
|
+
# @!attribute [rw] subnet_id
|
64781
|
+
# The ID of the subnet to place the route server endpoint into.
|
64782
|
+
# @return [String]
|
64783
|
+
#
|
64784
|
+
# @!attribute [rw] eni_id
|
64785
|
+
# The ID of the Elastic network interface for the endpoint.
|
64786
|
+
# @return [String]
|
64787
|
+
#
|
64788
|
+
# @!attribute [rw] eni_address
|
64789
|
+
# The IP address of the Elastic network interface for the endpoint.
|
64790
|
+
# @return [String]
|
64791
|
+
#
|
64792
|
+
# @!attribute [rw] state
|
64793
|
+
# The current state of the route server endpoint.
|
64794
|
+
# @return [String]
|
64795
|
+
#
|
64796
|
+
# @!attribute [rw] failure_reason
|
64797
|
+
# The reason for any failure in endpoint creation or operation.
|
64798
|
+
# @return [String]
|
64799
|
+
#
|
64800
|
+
# @!attribute [rw] tags
|
64801
|
+
# Any tags assigned to the route server endpoint.
|
64802
|
+
# @return [Array<Types::Tag>]
|
64803
|
+
#
|
64804
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RouteServerEndpoint AWS API Documentation
|
64805
|
+
#
|
64806
|
+
class RouteServerEndpoint < Struct.new(
|
64807
|
+
:route_server_id,
|
64808
|
+
:route_server_endpoint_id,
|
64809
|
+
:vpc_id,
|
64810
|
+
:subnet_id,
|
64811
|
+
:eni_id,
|
64812
|
+
:eni_address,
|
64813
|
+
:state,
|
64814
|
+
:failure_reason,
|
64815
|
+
:tags)
|
64816
|
+
SENSITIVE = []
|
64817
|
+
include Aws::Structure
|
64818
|
+
end
|
64819
|
+
|
64820
|
+
# Describes a BGP peer configuration for a route server endpoint.
|
64821
|
+
#
|
64822
|
+
# A route server peer is a network appliance or function deployed in
|
64823
|
+
# Amazon Web Services, such as firewall appliances and other network
|
64824
|
+
# security functions, that meet these requirements:
|
64825
|
+
#
|
64826
|
+
# * Have an elastic network interface in the VPC
|
64827
|
+
#
|
64828
|
+
# * Support BGP (Border Gateway Protocol)
|
64829
|
+
#
|
64830
|
+
# * Can initiate BGP sessions
|
64831
|
+
#
|
64832
|
+
# @!attribute [rw] route_server_peer_id
|
64833
|
+
# The unique identifier of the route server peer.
|
64834
|
+
# @return [String]
|
64835
|
+
#
|
64836
|
+
# @!attribute [rw] route_server_endpoint_id
|
64837
|
+
# The ID of the route server endpoint associated with this peer.
|
64838
|
+
# @return [String]
|
64839
|
+
#
|
64840
|
+
# @!attribute [rw] route_server_id
|
64841
|
+
# The ID of the route server associated with this peer.
|
64842
|
+
# @return [String]
|
64843
|
+
#
|
64844
|
+
# @!attribute [rw] vpc_id
|
64845
|
+
# The ID of the VPC containing the route server peer.
|
64846
|
+
# @return [String]
|
64847
|
+
#
|
64848
|
+
# @!attribute [rw] subnet_id
|
64849
|
+
# The ID of the subnet containing the route server peer.
|
64850
|
+
# @return [String]
|
64851
|
+
#
|
64852
|
+
# @!attribute [rw] state
|
64853
|
+
# The current state of the route server peer.
|
64854
|
+
# @return [String]
|
64855
|
+
#
|
64856
|
+
# @!attribute [rw] failure_reason
|
64857
|
+
# The reason for any failure in peer creation or operation.
|
64858
|
+
# @return [String]
|
64859
|
+
#
|
64860
|
+
# @!attribute [rw] endpoint_eni_id
|
64861
|
+
# The ID of the Elastic network interface for the route server
|
64862
|
+
# endpoint.
|
64863
|
+
# @return [String]
|
64864
|
+
#
|
64865
|
+
# @!attribute [rw] endpoint_eni_address
|
64866
|
+
# The IP address of the Elastic network interface for the route server
|
64867
|
+
# endpoint.
|
64868
|
+
# @return [String]
|
64869
|
+
#
|
64870
|
+
# @!attribute [rw] peer_address
|
64871
|
+
# The IPv4 address of the peer.
|
64872
|
+
# @return [String]
|
64873
|
+
#
|
64874
|
+
# @!attribute [rw] bgp_options
|
64875
|
+
# The BGP configuration options for this peer, including ASN
|
64876
|
+
# (Autonomous System Number) and BFD (Bidrectional Forwarding
|
64877
|
+
# Detection) settings.
|
64878
|
+
# @return [Types::RouteServerBgpOptions]
|
64879
|
+
#
|
64880
|
+
# @!attribute [rw] bgp_status
|
64881
|
+
# The current status of the BGP session with this peer.
|
64882
|
+
# @return [Types::RouteServerBgpStatus]
|
64883
|
+
#
|
64884
|
+
# @!attribute [rw] bfd_status
|
64885
|
+
# The current status of the BFD session with this peer.
|
64886
|
+
# @return [Types::RouteServerBfdStatus]
|
64887
|
+
#
|
64888
|
+
# @!attribute [rw] tags
|
64889
|
+
# Any tags assigned to the route server peer.
|
64890
|
+
# @return [Array<Types::Tag>]
|
64891
|
+
#
|
64892
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RouteServerPeer AWS API Documentation
|
64893
|
+
#
|
64894
|
+
class RouteServerPeer < Struct.new(
|
64895
|
+
:route_server_peer_id,
|
64896
|
+
:route_server_endpoint_id,
|
64897
|
+
:route_server_id,
|
64898
|
+
:vpc_id,
|
64899
|
+
:subnet_id,
|
64900
|
+
:state,
|
64901
|
+
:failure_reason,
|
64902
|
+
:endpoint_eni_id,
|
64903
|
+
:endpoint_eni_address,
|
64904
|
+
:peer_address,
|
64905
|
+
:bgp_options,
|
64906
|
+
:bgp_status,
|
64907
|
+
:bfd_status,
|
64908
|
+
:tags)
|
64909
|
+
SENSITIVE = []
|
64910
|
+
include Aws::Structure
|
64911
|
+
end
|
64912
|
+
|
64913
|
+
# Describes the route propagation configuration between a route server
|
64914
|
+
# and a route table.
|
64915
|
+
#
|
64916
|
+
# When enabled, route server propagation installs the routes in the FIB
|
64917
|
+
# on the route table you've specified. Route server supports IPv4 and
|
64918
|
+
# IPv6 route propagation.
|
64919
|
+
#
|
64920
|
+
# @!attribute [rw] route_server_id
|
64921
|
+
# The ID of the route server configured for route propagation.
|
64922
|
+
# @return [String]
|
64923
|
+
#
|
64924
|
+
# @!attribute [rw] route_table_id
|
64925
|
+
# The ID of the route table configured for route server propagation.
|
64926
|
+
# @return [String]
|
64927
|
+
#
|
64928
|
+
# @!attribute [rw] state
|
64929
|
+
# The current state of route propagation.
|
64930
|
+
# @return [String]
|
64931
|
+
#
|
64932
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RouteServerPropagation AWS API Documentation
|
64933
|
+
#
|
64934
|
+
class RouteServerPropagation < Struct.new(
|
64935
|
+
:route_server_id,
|
64936
|
+
:route_table_id,
|
64937
|
+
:state)
|
64938
|
+
SENSITIVE = []
|
64939
|
+
include Aws::Structure
|
64940
|
+
end
|
64941
|
+
|
64942
|
+
# Describes a route in the route server's routing database.
|
64943
|
+
#
|
64944
|
+
# @!attribute [rw] route_server_endpoint_id
|
64945
|
+
# The ID of the route server endpoint that received this route.
|
64946
|
+
# @return [String]
|
64947
|
+
#
|
64948
|
+
# @!attribute [rw] route_server_peer_id
|
64949
|
+
# The ID of the route server peer that advertised this route.
|
64950
|
+
# @return [String]
|
64951
|
+
#
|
64952
|
+
# @!attribute [rw] route_installation_details
|
64953
|
+
# Details about the installation status of this route in route tables.
|
64954
|
+
# @return [Array<Types::RouteServerRouteInstallationDetail>]
|
64955
|
+
#
|
64956
|
+
# @!attribute [rw] route_status
|
64957
|
+
# The current status of the route in the routing database. Values are
|
64958
|
+
# `in-rib` or `in-fib` depending on if the routes are in the RIB or
|
64959
|
+
# the FIB database.
|
64960
|
+
#
|
64961
|
+
# The [Routing Information Base (RIB)][1] serves as a database that
|
64962
|
+
# stores all the routing information and network topology data
|
64963
|
+
# collected by a router or routing system, such as routes learned from
|
64964
|
+
# BGP peers. The RIB is constantly updated as new routing information
|
64965
|
+
# is received or existing routes change. This ensures that the route
|
64966
|
+
# server always has the most current view of the network topology and
|
64967
|
+
# can make optimal routing decisions.
|
64968
|
+
#
|
64969
|
+
# The [Forwarding Information Base (FIB)][2] serves as a forwarding
|
64970
|
+
# table for what route server has determined are the best-path routes
|
64971
|
+
# in the RIB after evaluating all available routing information and
|
64972
|
+
# policies. The FIB routes that are installed on the route tables. The
|
64973
|
+
# FIB is recomputed whenever there are changes to the RIB.
|
64974
|
+
#
|
64975
|
+
#
|
64976
|
+
#
|
64977
|
+
# [1]: https://en.wikipedia.org/wiki/Routing_table
|
64978
|
+
# [2]: https://en.wikipedia.org/wiki/Forwarding_information_base
|
64979
|
+
# @return [String]
|
64980
|
+
#
|
64981
|
+
# @!attribute [rw] prefix
|
64982
|
+
# The destination CIDR block of the route.
|
64983
|
+
# @return [String]
|
64984
|
+
#
|
64985
|
+
# @!attribute [rw] as_paths
|
64986
|
+
# The AS path attributes of the BGP route.
|
64987
|
+
# @return [Array<String>]
|
64988
|
+
#
|
64989
|
+
# @!attribute [rw] med
|
64990
|
+
# The Multi-Exit Discriminator (MED) value of the BGP route.
|
64991
|
+
# @return [Integer]
|
64992
|
+
#
|
64993
|
+
# @!attribute [rw] next_hop_ip
|
64994
|
+
# The IP address for the next hop.
|
64995
|
+
# @return [String]
|
64996
|
+
#
|
64997
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RouteServerRoute AWS API Documentation
|
64998
|
+
#
|
64999
|
+
class RouteServerRoute < Struct.new(
|
65000
|
+
:route_server_endpoint_id,
|
65001
|
+
:route_server_peer_id,
|
65002
|
+
:route_installation_details,
|
65003
|
+
:route_status,
|
65004
|
+
:prefix,
|
65005
|
+
:as_paths,
|
65006
|
+
:med,
|
65007
|
+
:next_hop_ip)
|
65008
|
+
SENSITIVE = []
|
65009
|
+
include Aws::Structure
|
65010
|
+
end
|
65011
|
+
|
65012
|
+
# Describes the installation status of a route in a route table.
|
65013
|
+
#
|
65014
|
+
# @!attribute [rw] route_table_id
|
65015
|
+
# The ID of the route table where the route is being installed.
|
65016
|
+
# @return [String]
|
65017
|
+
#
|
65018
|
+
# @!attribute [rw] route_installation_status
|
65019
|
+
# The current installation status of the route in the route table.
|
65020
|
+
# @return [String]
|
65021
|
+
#
|
65022
|
+
# @!attribute [rw] route_installation_status_reason
|
65023
|
+
# The reason for the current installation status of the route.
|
65024
|
+
# @return [String]
|
65025
|
+
#
|
65026
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RouteServerRouteInstallationDetail AWS API Documentation
|
65027
|
+
#
|
65028
|
+
class RouteServerRouteInstallationDetail < Struct.new(
|
65029
|
+
:route_table_id,
|
65030
|
+
:route_installation_status,
|
65031
|
+
:route_installation_status_reason)
|
65032
|
+
SENSITIVE = []
|
65033
|
+
include Aws::Structure
|
65034
|
+
end
|
65035
|
+
|
63776
65036
|
# Describes a route table.
|
63777
65037
|
#
|
63778
65038
|
# @!attribute [rw] associations
|