aws-sdk-ec2 1.433.0 → 1.435.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 +74 -25
- data/lib/aws-sdk-ec2/client_api.rb +4 -0
- data/lib/aws-sdk-ec2/instance.rb +7 -1
- data/lib/aws-sdk-ec2/resource.rb +27 -9
- data/lib/aws-sdk-ec2/subnet.rb +14 -8
- data/lib/aws-sdk-ec2/types.rb +150 -32
- data/lib/aws-sdk-ec2/vpc.rb +21 -0
- data/lib/aws-sdk-ec2.rb +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: 779cb599a401a68a04d0efc084653d51f4bf831dd1a79f5006db87d471282c95
|
4
|
+
data.tar.gz: 212feb1096c416c7d69c20f8ee5e3159b96f02a4e5eca70f37cdc4878c854ba4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc3acf3987875ca91fbf3f566f4379b6299928f39e8ff182005b3825448c47a57098f10b72ac4bcefe2c43d4c33b8a13837b27e5919a1caead2256691cc19cef
|
7
|
+
data.tar.gz: f202f5ec12614a589c8ad76f0651e333af51bc2cc2847dab6f5128df97ecc628a8bbe90f36a0265fcf597344baac1d61a9769b85824479c0f4228a3f634aecab
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.435.0 (2024-01-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Introduced a new clientToken request parameter on CreateNetworkAcl and CreateRouteTable APIs. The clientToken parameter allows idempotent operations on the APIs.
|
8
|
+
|
9
|
+
1.434.0 (2024-01-22)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Documentation updates for Amazon EC2.
|
13
|
+
|
4
14
|
1.433.0 (2024-01-11)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.435.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -5892,7 +5892,7 @@ module Aws::EC2
|
|
5892
5892
|
# resp.subnet.map_public_ip_on_launch #=> Boolean
|
5893
5893
|
# resp.subnet.map_customer_owned_ip_on_launch #=> Boolean
|
5894
5894
|
# resp.subnet.customer_owned_ipv_4_pool #=> String
|
5895
|
-
# resp.subnet.state #=> String, one of "pending", "available"
|
5895
|
+
# resp.subnet.state #=> String, one of "pending", "available", "unavailable"
|
5896
5896
|
# resp.subnet.subnet_id #=> String
|
5897
5897
|
# resp.subnet.vpc_id #=> String
|
5898
5898
|
# resp.subnet.owner_id #=> String
|
@@ -6140,7 +6140,7 @@ module Aws::EC2
|
|
6140
6140
|
#
|
6141
6141
|
# @option params [String] :client_token
|
6142
6142
|
# Unique, case-sensitive identifier that you provide to ensure the
|
6143
|
-
# idempotency of the request. For more information, see [
|
6143
|
+
# idempotency of the request. For more information, see [Ensuring
|
6144
6144
|
# idempotency][1].
|
6145
6145
|
#
|
6146
6146
|
#
|
@@ -9398,7 +9398,7 @@ module Aws::EC2
|
|
9398
9398
|
#
|
9399
9399
|
# @option params [String] :client_token
|
9400
9400
|
# Unique, case-sensitive identifier that you provide to ensure the
|
9401
|
-
# idempotency of the request. For more information, see [
|
9401
|
+
# idempotency of the request. For more information, see [Ensuring
|
9402
9402
|
# idempotency][1].
|
9403
9403
|
#
|
9404
9404
|
# Constraint: Maximum 64 ASCII characters.
|
@@ -9577,9 +9577,22 @@ module Aws::EC2
|
|
9577
9577
|
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
9578
9578
|
# The tags to assign to the network ACL.
|
9579
9579
|
#
|
9580
|
+
# @option params [String] :client_token
|
9581
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
9582
|
+
# idempotency of the request. For more information, see [Ensuring
|
9583
|
+
# idempotency][1].
|
9584
|
+
#
|
9585
|
+
# **A suitable default value is auto-generated.** You should normally
|
9586
|
+
# not need to pass this option.**
|
9587
|
+
#
|
9588
|
+
#
|
9589
|
+
#
|
9590
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html
|
9591
|
+
#
|
9580
9592
|
# @return [Types::CreateNetworkAclResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9581
9593
|
#
|
9582
9594
|
# * {Types::CreateNetworkAclResult#network_acl #network_acl} => Types::NetworkAcl
|
9595
|
+
# * {Types::CreateNetworkAclResult#client_token #client_token} => String
|
9583
9596
|
#
|
9584
9597
|
#
|
9585
9598
|
# @example Example: To create a network ACL
|
@@ -9635,6 +9648,7 @@ module Aws::EC2
|
|
9635
9648
|
# ],
|
9636
9649
|
# },
|
9637
9650
|
# ],
|
9651
|
+
# client_token: "String",
|
9638
9652
|
# })
|
9639
9653
|
#
|
9640
9654
|
# @example Response structure
|
@@ -9661,6 +9675,7 @@ module Aws::EC2
|
|
9661
9675
|
# resp.network_acl.tags[0].value #=> String
|
9662
9676
|
# resp.network_acl.vpc_id #=> String
|
9663
9677
|
# resp.network_acl.owner_id #=> String
|
9678
|
+
# resp.client_token #=> String
|
9664
9679
|
#
|
9665
9680
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNetworkAcl AWS API Documentation
|
9666
9681
|
#
|
@@ -11202,9 +11217,22 @@ module Aws::EC2
|
|
11202
11217
|
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
11203
11218
|
# The tags to assign to the route table.
|
11204
11219
|
#
|
11220
|
+
# @option params [String] :client_token
|
11221
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
11222
|
+
# idempotency of the request. For more information, see [Ensuring
|
11223
|
+
# idempotency][1].
|
11224
|
+
#
|
11225
|
+
# **A suitable default value is auto-generated.** You should normally
|
11226
|
+
# not need to pass this option.**
|
11227
|
+
#
|
11228
|
+
#
|
11229
|
+
#
|
11230
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html
|
11231
|
+
#
|
11205
11232
|
# @return [Types::CreateRouteTableResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11206
11233
|
#
|
11207
11234
|
# * {Types::CreateRouteTableResult#route_table #route_table} => Types::RouteTable
|
11235
|
+
# * {Types::CreateRouteTableResult#client_token #client_token} => String
|
11208
11236
|
#
|
11209
11237
|
#
|
11210
11238
|
# @example Example: To create a route table
|
@@ -11252,6 +11280,7 @@ module Aws::EC2
|
|
11252
11280
|
# ],
|
11253
11281
|
# },
|
11254
11282
|
# ],
|
11283
|
+
# client_token: "String",
|
11255
11284
|
# })
|
11256
11285
|
#
|
11257
11286
|
# @example Response structure
|
@@ -11289,6 +11318,7 @@ module Aws::EC2
|
|
11289
11318
|
# resp.route_table.tags[0].value #=> String
|
11290
11319
|
# resp.route_table.vpc_id #=> String
|
11291
11320
|
# resp.route_table.owner_id #=> String
|
11321
|
+
# resp.client_token #=> String
|
11292
11322
|
#
|
11293
11323
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateRouteTable AWS API Documentation
|
11294
11324
|
#
|
@@ -12017,7 +12047,7 @@ module Aws::EC2
|
|
12017
12047
|
# resp.subnet.map_public_ip_on_launch #=> Boolean
|
12018
12048
|
# resp.subnet.map_customer_owned_ip_on_launch #=> Boolean
|
12019
12049
|
# resp.subnet.customer_owned_ipv_4_pool #=> String
|
12020
|
-
# resp.subnet.state #=> String, one of "pending", "available"
|
12050
|
+
# resp.subnet.state #=> String, one of "pending", "available", "unavailable"
|
12021
12051
|
# resp.subnet.subnet_id #=> String
|
12022
12052
|
# resp.subnet.vpc_id #=> String
|
12023
12053
|
# resp.subnet.owner_id #=> String
|
@@ -19791,11 +19821,11 @@ module Aws::EC2
|
|
19791
19821
|
# * `opt-in-status` - The opt-in status (`opted-in` \| `not-opted-in` \|
|
19792
19822
|
# `opt-in-not-required`).
|
19793
19823
|
#
|
19794
|
-
# * `parent-
|
19824
|
+
# * `parent-zone-id` - The ID of the zone that handles some of the Local
|
19795
19825
|
# Zone and Wavelength Zone control plane operations, such as API
|
19796
19826
|
# calls.
|
19797
19827
|
#
|
19798
|
-
# * `parent-
|
19828
|
+
# * `parent-zone-name` - The ID of the zone that handles some of the
|
19799
19829
|
# Local Zone and Wavelength Zone control plane operations, such as API
|
19800
19830
|
# calls.
|
19801
19831
|
#
|
@@ -19901,7 +19931,7 @@ module Aws::EC2
|
|
19901
19931
|
# @example Response structure
|
19902
19932
|
#
|
19903
19933
|
# resp.availability_zones #=> Array
|
19904
|
-
# resp.availability_zones[0].state #=> String, one of "available", "information", "impaired", "unavailable"
|
19934
|
+
# resp.availability_zones[0].state #=> String, one of "available", "information", "impaired", "unavailable", "constrained"
|
19905
19935
|
# resp.availability_zones[0].opt_in_status #=> String, one of "opt-in-not-required", "opted-in", "not-opted-in"
|
19906
19936
|
# resp.availability_zones[0].messages #=> Array
|
19907
19937
|
# resp.availability_zones[0].messages[0].message #=> String
|
@@ -21568,6 +21598,12 @@ module Aws::EC2
|
|
21568
21598
|
req.send_request(options)
|
21569
21599
|
end
|
21570
21600
|
|
21601
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024. For
|
21602
|
+
# workloads that require graphics acceleration, we recommend that you
|
21603
|
+
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
21604
|
+
#
|
21605
|
+
# </note>
|
21606
|
+
#
|
21571
21607
|
# Describes the Elastic Graphics accelerator associated with your
|
21572
21608
|
# instances. For more information about Elastic Graphics, see [Amazon
|
21573
21609
|
# Elastic Graphics][1].
|
@@ -30962,6 +30998,9 @@ module Aws::EC2
|
|
30962
30998
|
# @option params [Array<Types::Filter>] :filters
|
30963
30999
|
# The filters.
|
30964
31000
|
#
|
31001
|
+
# * `association.gateway-id` - The ID of the gateway involved in the
|
31002
|
+
# association.
|
31003
|
+
#
|
30965
31004
|
# * `association.route-table-association-id` - The ID of an association
|
30966
31005
|
# ID for the route table.
|
30967
31006
|
#
|
@@ -33692,7 +33731,7 @@ module Aws::EC2
|
|
33692
33731
|
# resp.subnets[0].map_public_ip_on_launch #=> Boolean
|
33693
33732
|
# resp.subnets[0].map_customer_owned_ip_on_launch #=> Boolean
|
33694
33733
|
# resp.subnets[0].customer_owned_ipv_4_pool #=> String
|
33695
|
-
# resp.subnets[0].state #=> String, one of "pending", "available"
|
33734
|
+
# resp.subnets[0].state #=> String, one of "pending", "available", "unavailable"
|
33696
33735
|
# resp.subnets[0].subnet_id #=> String
|
33697
33736
|
# resp.subnets[0].vpc_id #=> String
|
33698
33737
|
# resp.subnets[0].owner_id #=> String
|
@@ -39406,12 +39445,16 @@ module Aws::EC2
|
|
39406
39445
|
# Enables Infrastructure Performance subscriptions.
|
39407
39446
|
#
|
39408
39447
|
# @option params [String] :source
|
39409
|
-
# The source Region or Availability Zone
|
39410
|
-
# enabled for.
|
39448
|
+
# The source Region (like `us-east-1`) or Availability Zone ID (like
|
39449
|
+
# `use1-az1`) that the metric subscription is enabled for. If you use
|
39450
|
+
# Availability Zone IDs, the Source and Destination Availability Zones
|
39451
|
+
# must be in the same Region.
|
39411
39452
|
#
|
39412
39453
|
# @option params [String] :destination
|
39413
|
-
# The target Region or Availability Zone
|
39414
|
-
# enabled for.
|
39454
|
+
# The target Region (like `us-east-2`) or Availability Zone ID (like
|
39455
|
+
# `use2-az2`) that the metric subscription is enabled for. If you use
|
39456
|
+
# Availability Zone IDs, the Source and Destination Availability Zones
|
39457
|
+
# must be in the same Region.
|
39415
39458
|
#
|
39416
39459
|
# @option params [String] :metric
|
39417
39460
|
# The metric used for the enabled subscription.
|
@@ -42082,9 +42125,9 @@ module Aws::EC2
|
|
42082
42125
|
# information. Depending on your instance configuration, you may need to
|
42083
42126
|
# allow the following actions in your IAM policy:
|
42084
42127
|
# `DescribeSpotInstanceRequests`,
|
42085
|
-
# `DescribeInstanceCreditSpecifications`, `DescribeVolumes`,
|
42086
|
-
# `DescribeInstanceAttribute
|
42087
|
-
#
|
42128
|
+
# `DescribeInstanceCreditSpecifications`, `DescribeVolumes`, and
|
42129
|
+
# `DescribeInstanceAttribute`. Or, you can allow `describe*` depending
|
42130
|
+
# on your instance requirements.
|
42088
42131
|
#
|
42089
42132
|
# @option params [Boolean] :dry_run
|
42090
42133
|
# Checks whether you have the required permissions for the action,
|
@@ -48651,6 +48694,15 @@ module Aws::EC2
|
|
48651
48694
|
# instances created in the specified subnet should be assigned a public
|
48652
48695
|
# IPv4 address.
|
48653
48696
|
#
|
48697
|
+
# Starting on February 1, 2024, Amazon Web Services will charge for all
|
48698
|
+
# public IPv4 addresses, including public IPv4 addresses associated with
|
48699
|
+
# running instances and Elastic IP addresses. For more information, see
|
48700
|
+
# the *Public IPv4 Address* tab on the [Amazon VPC pricing page][1].
|
48701
|
+
#
|
48702
|
+
#
|
48703
|
+
#
|
48704
|
+
# [1]: http://aws.amazon.com/vpc/pricing/
|
48705
|
+
#
|
48654
48706
|
# @option params [required, String] :subnet_id
|
48655
48707
|
# The ID of the subnet.
|
48656
48708
|
#
|
@@ -55646,14 +55698,13 @@ module Aws::EC2
|
|
55646
55698
|
# the same request.
|
55647
55699
|
#
|
55648
55700
|
# @option params [Array<Types::ElasticGpuSpecification>] :elastic_gpu_specification
|
55649
|
-
#
|
55650
|
-
# resource that you can attach to your Windows instance to accelerate
|
55651
|
-
# the graphics performance of your applications. For more information,
|
55652
|
-
# see [Amazon EC2 Elastic GPUs][1] in the *Amazon EC2 User Guide*.
|
55653
|
-
#
|
55701
|
+
# Deprecated.
|
55654
55702
|
#
|
55703
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024. For
|
55704
|
+
# workloads that require graphics acceleration, we recommend that you
|
55705
|
+
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
55655
55706
|
#
|
55656
|
-
#
|
55707
|
+
# </note>
|
55657
55708
|
#
|
55658
55709
|
# @option params [Array<Types::ElasticInferenceAccelerator>] :elastic_inference_accelerators
|
55659
55710
|
# An elastic inference accelerator to associate with the instance.
|
@@ -55685,8 +55736,6 @@ module Aws::EC2
|
|
55685
55736
|
#
|
55686
55737
|
# * Volumes
|
55687
55738
|
#
|
55688
|
-
# * Elastic graphics
|
55689
|
-
#
|
55690
55739
|
# * Spot Instance requests
|
55691
55740
|
#
|
55692
55741
|
# * Network interfaces
|
@@ -56709,7 +56758,7 @@ module Aws::EC2
|
|
56709
56758
|
# as its root device returns an error.
|
56710
56759
|
#
|
56711
56760
|
# If you attempt to start a T3 instance with `host` tenancy and the
|
56712
|
-
# `
|
56761
|
+
# `unlimited` CPU credit option, the request fails. The `unlimited` CPU
|
56713
56762
|
# credit option is not supported on Dedicated Hosts. Before you start
|
56714
56763
|
# the instance, either change its CPU credit option to `standard`, or
|
56715
56764
|
# change its tenancy to `default` or `dedicated`.
|
@@ -58708,7 +58757,7 @@ module Aws::EC2
|
|
58708
58757
|
params: params,
|
58709
58758
|
config: config)
|
58710
58759
|
context[:gem_name] = 'aws-sdk-ec2'
|
58711
|
-
context[:gem_version] = '1.
|
58760
|
+
context[:gem_version] = '1.435.0'
|
58712
58761
|
Seahorse::Client::Request.new(handlers, context)
|
58713
58762
|
end
|
58714
58763
|
|
@@ -4898,9 +4898,11 @@ module Aws::EC2
|
|
4898
4898
|
CreateNetworkAclRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
4899
4899
|
CreateNetworkAclRequest.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, required: true, location_name: "vpcId"))
|
4900
4900
|
CreateNetworkAclRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
4901
|
+
CreateNetworkAclRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
4901
4902
|
CreateNetworkAclRequest.struct_class = Types::CreateNetworkAclRequest
|
4902
4903
|
|
4903
4904
|
CreateNetworkAclResult.add_member(:network_acl, Shapes::ShapeRef.new(shape: NetworkAcl, location_name: "networkAcl"))
|
4905
|
+
CreateNetworkAclResult.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "clientToken"))
|
4904
4906
|
CreateNetworkAclResult.struct_class = Types::CreateNetworkAclResult
|
4905
4907
|
|
4906
4908
|
CreateNetworkInsightsAccessScopeRequest.add_member(:match_paths, Shapes::ShapeRef.new(shape: AccessScopePathListRequest, location_name: "MatchPath"))
|
@@ -5037,9 +5039,11 @@ module Aws::EC2
|
|
5037
5039
|
CreateRouteTableRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
5038
5040
|
CreateRouteTableRequest.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, required: true, location_name: "vpcId"))
|
5039
5041
|
CreateRouteTableRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
5042
|
+
CreateRouteTableRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
5040
5043
|
CreateRouteTableRequest.struct_class = Types::CreateRouteTableRequest
|
5041
5044
|
|
5042
5045
|
CreateRouteTableResult.add_member(:route_table, Shapes::ShapeRef.new(shape: RouteTable, location_name: "routeTable"))
|
5046
|
+
CreateRouteTableResult.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "clientToken"))
|
5043
5047
|
CreateRouteTableResult.struct_class = Types::CreateRouteTableResult
|
5044
5048
|
|
5045
5049
|
CreateSecurityGroupRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, required: true, location_name: "GroupDescription"))
|
data/lib/aws-sdk-ec2/instance.rb
CHANGED
@@ -221,7 +221,13 @@ module Aws::EC2
|
|
221
221
|
data[:instance_lifecycle]
|
222
222
|
end
|
223
223
|
|
224
|
-
#
|
224
|
+
# Deprecated.
|
225
|
+
#
|
226
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024. For
|
227
|
+
# workloads that require graphics acceleration, we recommend that you
|
228
|
+
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
229
|
+
#
|
230
|
+
# </note>
|
225
231
|
# @return [Array<Types::ElasticGpuAssociation>]
|
226
232
|
def elastic_gpu_associations
|
227
233
|
data[:elastic_gpu_associations]
|
data/lib/aws-sdk-ec2/resource.rb
CHANGED
@@ -481,14 +481,13 @@ module Aws::EC2
|
|
481
481
|
# You cannot specify this option and the network interfaces option in
|
482
482
|
# the same request.
|
483
483
|
# @option options [Array<Types::ElasticGpuSpecification>] :elastic_gpu_specification
|
484
|
-
#
|
485
|
-
# resource that you can attach to your Windows instance to accelerate
|
486
|
-
# the graphics performance of your applications. For more information,
|
487
|
-
# see [Amazon EC2 Elastic GPUs][1] in the *Amazon EC2 User Guide*.
|
484
|
+
# Deprecated.
|
488
485
|
#
|
486
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024. For
|
487
|
+
# workloads that require graphics acceleration, we recommend that you
|
488
|
+
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
489
489
|
#
|
490
|
-
#
|
491
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/elastic-graphics.html
|
490
|
+
# </note>
|
492
491
|
# @option options [Array<Types::ElasticInferenceAccelerator>] :elastic_inference_accelerators
|
493
492
|
# An elastic inference accelerator to associate with the instance.
|
494
493
|
# Elastic inference accelerators are a resource you can attach to your
|
@@ -518,8 +517,6 @@ module Aws::EC2
|
|
518
517
|
#
|
519
518
|
# * Volumes
|
520
519
|
#
|
521
|
-
# * Elastic graphics
|
522
|
-
#
|
523
520
|
# * Spot Instance requests
|
524
521
|
#
|
525
522
|
# * Network interfaces
|
@@ -769,7 +766,7 @@ module Aws::EC2
|
|
769
766
|
# disassociate it.
|
770
767
|
# @option options [String] :client_token
|
771
768
|
# Unique, case-sensitive identifier that you provide to ensure the
|
772
|
-
# idempotency of the request. For more information, see [
|
769
|
+
# idempotency of the request. For more information, see [Ensuring
|
773
770
|
# idempotency][1].
|
774
771
|
#
|
775
772
|
# Constraint: Maximum 64 ASCII characters.
|
@@ -845,6 +842,7 @@ module Aws::EC2
|
|
845
842
|
# ],
|
846
843
|
# },
|
847
844
|
# ],
|
845
|
+
# client_token: "String",
|
848
846
|
# })
|
849
847
|
# @param [Hash] options ({})
|
850
848
|
# @option options [Boolean] :dry_run
|
@@ -856,6 +854,14 @@ module Aws::EC2
|
|
856
854
|
# The ID of the VPC.
|
857
855
|
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
858
856
|
# The tags to assign to the network ACL.
|
857
|
+
# @option options [String] :client_token
|
858
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
859
|
+
# idempotency of the request. For more information, see [Ensuring
|
860
|
+
# idempotency][1].
|
861
|
+
#
|
862
|
+
#
|
863
|
+
#
|
864
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html
|
859
865
|
# @return [NetworkAcl]
|
860
866
|
def create_network_acl(options = {})
|
861
867
|
resp = Aws::Plugins::UserAgent.feature('resource') do
|
@@ -1114,6 +1120,7 @@ module Aws::EC2
|
|
1114
1120
|
# ],
|
1115
1121
|
# },
|
1116
1122
|
# ],
|
1123
|
+
# client_token: "String",
|
1117
1124
|
# })
|
1118
1125
|
# @param [Hash] options ({})
|
1119
1126
|
# @option options [Boolean] :dry_run
|
@@ -1125,6 +1132,14 @@ module Aws::EC2
|
|
1125
1132
|
# The ID of the VPC.
|
1126
1133
|
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
1127
1134
|
# The tags to assign to the route table.
|
1135
|
+
# @option options [String] :client_token
|
1136
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
1137
|
+
# idempotency of the request. For more information, see [Ensuring
|
1138
|
+
# idempotency][1].
|
1139
|
+
#
|
1140
|
+
#
|
1141
|
+
#
|
1142
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html
|
1128
1143
|
# @return [RouteTable]
|
1129
1144
|
def create_route_table(options = {})
|
1130
1145
|
resp = Aws::Plugins::UserAgent.feature('resource') do
|
@@ -3475,6 +3490,9 @@ module Aws::EC2
|
|
3475
3490
|
# @option options [Array<Types::Filter>] :filters
|
3476
3491
|
# The filters.
|
3477
3492
|
#
|
3493
|
+
# * `association.gateway-id` - The ID of the gateway involved in the
|
3494
|
+
# association.
|
3495
|
+
#
|
3478
3496
|
# * `association.route-table-association-id` - The ID of an association
|
3479
3497
|
# ID for the route table.
|
3480
3498
|
#
|
data/lib/aws-sdk-ec2/subnet.rb
CHANGED
@@ -77,6 +77,15 @@ module Aws::EC2
|
|
77
77
|
|
78
78
|
# Indicates whether instances launched in this subnet receive a public
|
79
79
|
# IPv4 address.
|
80
|
+
#
|
81
|
+
# Starting on February 1, 2024, Amazon Web Services will charge for all
|
82
|
+
# public IPv4 addresses, including public IPv4 addresses associated with
|
83
|
+
# running instances and Elastic IP addresses. For more information, see
|
84
|
+
# the *Public IPv4 Address* tab on the [Amazon VPC pricing page][1].
|
85
|
+
#
|
86
|
+
#
|
87
|
+
#
|
88
|
+
# [1]: http://aws.amazon.com/vpc/pricing/
|
80
89
|
# @return [Boolean]
|
81
90
|
def map_public_ip_on_launch
|
82
91
|
data[:map_public_ip_on_launch]
|
@@ -702,14 +711,13 @@ module Aws::EC2
|
|
702
711
|
# You cannot specify this option and the network interfaces option in
|
703
712
|
# the same request.
|
704
713
|
# @option options [Array<Types::ElasticGpuSpecification>] :elastic_gpu_specification
|
705
|
-
#
|
706
|
-
# resource that you can attach to your Windows instance to accelerate
|
707
|
-
# the graphics performance of your applications. For more information,
|
708
|
-
# see [Amazon EC2 Elastic GPUs][1] in the *Amazon EC2 User Guide*.
|
714
|
+
# Deprecated.
|
709
715
|
#
|
716
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024. For
|
717
|
+
# workloads that require graphics acceleration, we recommend that you
|
718
|
+
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
710
719
|
#
|
711
|
-
#
|
712
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/elastic-graphics.html
|
720
|
+
# </note>
|
713
721
|
# @option options [Array<Types::ElasticInferenceAccelerator>] :elastic_inference_accelerators
|
714
722
|
# An elastic inference accelerator to associate with the instance.
|
715
723
|
# Elastic inference accelerators are a resource you can attach to your
|
@@ -739,8 +747,6 @@ module Aws::EC2
|
|
739
747
|
#
|
740
748
|
# * Volumes
|
741
749
|
#
|
742
|
-
# * Elastic graphics
|
743
|
-
#
|
744
750
|
# * Spot Instance requests
|
745
751
|
#
|
746
752
|
# * Network interfaces
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -7608,7 +7608,7 @@ module Aws::EC2
|
|
7608
7608
|
|
7609
7609
|
# @!attribute [rw] client_token
|
7610
7610
|
# Unique, case-sensitive identifier that you provide to ensure the
|
7611
|
-
# idempotency of the request. For more information, see [
|
7611
|
+
# idempotency of the request. For more information, see [Ensuring
|
7612
7612
|
# idempotency][1].
|
7613
7613
|
#
|
7614
7614
|
#
|
@@ -9334,7 +9334,7 @@ module Aws::EC2
|
|
9334
9334
|
#
|
9335
9335
|
# @!attribute [rw] client_token
|
9336
9336
|
# Unique, case-sensitive identifier that you provide to ensure the
|
9337
|
-
# idempotency of the request. For more information, see [
|
9337
|
+
# idempotency of the request. For more information, see [Ensuring
|
9338
9338
|
# idempotency][1].
|
9339
9339
|
#
|
9340
9340
|
# Constraint: Maximum 64 ASCII characters.
|
@@ -9534,12 +9534,26 @@ module Aws::EC2
|
|
9534
9534
|
# The tags to assign to the network ACL.
|
9535
9535
|
# @return [Array<Types::TagSpecification>]
|
9536
9536
|
#
|
9537
|
+
# @!attribute [rw] client_token
|
9538
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
9539
|
+
# idempotency of the request. For more information, see [Ensuring
|
9540
|
+
# idempotency][1].
|
9541
|
+
#
|
9542
|
+
# **A suitable default value is auto-generated.** You should normally
|
9543
|
+
# not need to pass this option.
|
9544
|
+
#
|
9545
|
+
#
|
9546
|
+
#
|
9547
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html
|
9548
|
+
# @return [String]
|
9549
|
+
#
|
9537
9550
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNetworkAclRequest AWS API Documentation
|
9538
9551
|
#
|
9539
9552
|
class CreateNetworkAclRequest < Struct.new(
|
9540
9553
|
:dry_run,
|
9541
9554
|
:vpc_id,
|
9542
|
-
:tag_specifications
|
9555
|
+
:tag_specifications,
|
9556
|
+
:client_token)
|
9543
9557
|
SENSITIVE = []
|
9544
9558
|
include Aws::Structure
|
9545
9559
|
end
|
@@ -9548,10 +9562,17 @@ module Aws::EC2
|
|
9548
9562
|
# Information about the network ACL.
|
9549
9563
|
# @return [Types::NetworkAcl]
|
9550
9564
|
#
|
9565
|
+
# @!attribute [rw] client_token
|
9566
|
+
# Unique, case-sensitive identifier to ensure the idempotency of the
|
9567
|
+
# request. Only returned if a client token was provided in the
|
9568
|
+
# request.
|
9569
|
+
# @return [String]
|
9570
|
+
#
|
9551
9571
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNetworkAclResult AWS API Documentation
|
9552
9572
|
#
|
9553
9573
|
class CreateNetworkAclResult < Struct.new(
|
9554
|
-
:network_acl
|
9574
|
+
:network_acl,
|
9575
|
+
:client_token)
|
9555
9576
|
SENSITIVE = []
|
9556
9577
|
include Aws::Structure
|
9557
9578
|
end
|
@@ -10369,12 +10390,26 @@ module Aws::EC2
|
|
10369
10390
|
# The tags to assign to the route table.
|
10370
10391
|
# @return [Array<Types::TagSpecification>]
|
10371
10392
|
#
|
10393
|
+
# @!attribute [rw] client_token
|
10394
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
10395
|
+
# idempotency of the request. For more information, see [Ensuring
|
10396
|
+
# idempotency][1].
|
10397
|
+
#
|
10398
|
+
# **A suitable default value is auto-generated.** You should normally
|
10399
|
+
# not need to pass this option.
|
10400
|
+
#
|
10401
|
+
#
|
10402
|
+
#
|
10403
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html
|
10404
|
+
# @return [String]
|
10405
|
+
#
|
10372
10406
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateRouteTableRequest AWS API Documentation
|
10373
10407
|
#
|
10374
10408
|
class CreateRouteTableRequest < Struct.new(
|
10375
10409
|
:dry_run,
|
10376
10410
|
:vpc_id,
|
10377
|
-
:tag_specifications
|
10411
|
+
:tag_specifications,
|
10412
|
+
:client_token)
|
10378
10413
|
SENSITIVE = []
|
10379
10414
|
include Aws::Structure
|
10380
10415
|
end
|
@@ -10383,10 +10418,17 @@ module Aws::EC2
|
|
10383
10418
|
# Information about the route table.
|
10384
10419
|
# @return [Types::RouteTable]
|
10385
10420
|
#
|
10421
|
+
# @!attribute [rw] client_token
|
10422
|
+
# Unique, case-sensitive identifier to ensure the idempotency of the
|
10423
|
+
# request. Only returned if a client token was provided in the
|
10424
|
+
# request.
|
10425
|
+
# @return [String]
|
10426
|
+
#
|
10386
10427
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateRouteTableResult AWS API Documentation
|
10387
10428
|
#
|
10388
10429
|
class CreateRouteTableResult < Struct.new(
|
10389
|
-
:route_table
|
10430
|
+
:route_table,
|
10431
|
+
:client_token)
|
10390
10432
|
SENSITIVE = []
|
10391
10433
|
include Aws::Structure
|
10392
10434
|
end
|
@@ -16477,11 +16519,11 @@ module Aws::EC2
|
|
16477
16519
|
# * `opt-in-status` - The opt-in status (`opted-in` \| `not-opted-in`
|
16478
16520
|
# \| `opt-in-not-required`).
|
16479
16521
|
#
|
16480
|
-
# * `parent-
|
16522
|
+
# * `parent-zone-id` - The ID of the zone that handles some of the
|
16481
16523
|
# Local Zone and Wavelength Zone control plane operations, such as
|
16482
16524
|
# API calls.
|
16483
16525
|
#
|
16484
|
-
# * `parent-
|
16526
|
+
# * `parent-zone-name` - The ID of the zone that handles some of the
|
16485
16527
|
# Local Zone and Wavelength Zone control plane operations, such as
|
16486
16528
|
# API calls.
|
16487
16529
|
#
|
@@ -23742,6 +23784,9 @@ module Aws::EC2
|
|
23742
23784
|
# @!attribute [rw] filters
|
23743
23785
|
# The filters.
|
23744
23786
|
#
|
23787
|
+
# * `association.gateway-id` - The ID of the gateway involved in the
|
23788
|
+
# association.
|
23789
|
+
#
|
23745
23790
|
# * `association.route-table-association-id` - The ID of an
|
23746
23791
|
# association ID for the route table.
|
23747
23792
|
#
|
@@ -30301,6 +30346,12 @@ module Aws::EC2
|
|
30301
30346
|
include Aws::Structure
|
30302
30347
|
end
|
30303
30348
|
|
30349
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024. For
|
30350
|
+
# workloads that require graphics acceleration, we recommend that you
|
30351
|
+
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
30352
|
+
#
|
30353
|
+
# </note>
|
30354
|
+
#
|
30304
30355
|
# Describes the association between an instance and an Elastic Graphics
|
30305
30356
|
# accelerator.
|
30306
30357
|
#
|
@@ -30333,6 +30384,12 @@ module Aws::EC2
|
|
30333
30384
|
include Aws::Structure
|
30334
30385
|
end
|
30335
30386
|
|
30387
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024. For
|
30388
|
+
# workloads that require graphics acceleration, we recommend that you
|
30389
|
+
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
30390
|
+
#
|
30391
|
+
# </note>
|
30392
|
+
#
|
30336
30393
|
# Describes the status of an Elastic Graphics accelerator.
|
30337
30394
|
#
|
30338
30395
|
# @!attribute [rw] status
|
@@ -30347,6 +30404,12 @@ module Aws::EC2
|
|
30347
30404
|
include Aws::Structure
|
30348
30405
|
end
|
30349
30406
|
|
30407
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024. For
|
30408
|
+
# workloads that require graphics acceleration, we recommend that you
|
30409
|
+
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
30410
|
+
#
|
30411
|
+
# </note>
|
30412
|
+
#
|
30350
30413
|
# A specification for an Elastic Graphics accelerator.
|
30351
30414
|
#
|
30352
30415
|
# @!attribute [rw] type
|
@@ -30368,10 +30431,22 @@ module Aws::EC2
|
|
30368
30431
|
include Aws::Structure
|
30369
30432
|
end
|
30370
30433
|
|
30371
|
-
#
|
30434
|
+
# Deprecated.
|
30435
|
+
#
|
30436
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024. For
|
30437
|
+
# workloads that require graphics acceleration, we recommend that you
|
30438
|
+
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
30439
|
+
#
|
30440
|
+
# </note>
|
30372
30441
|
#
|
30373
30442
|
# @!attribute [rw] type
|
30374
|
-
#
|
30443
|
+
# Deprecated.
|
30444
|
+
#
|
30445
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024. For
|
30446
|
+
# workloads that require graphics acceleration, we recommend that you
|
30447
|
+
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
30448
|
+
#
|
30449
|
+
# </note>
|
30375
30450
|
# @return [String]
|
30376
30451
|
#
|
30377
30452
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ElasticGpuSpecificationResponse AWS API Documentation
|
@@ -30382,6 +30457,12 @@ module Aws::EC2
|
|
30382
30457
|
include Aws::Structure
|
30383
30458
|
end
|
30384
30459
|
|
30460
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024. For
|
30461
|
+
# workloads that require graphics acceleration, we recommend that you
|
30462
|
+
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
30463
|
+
#
|
30464
|
+
# </note>
|
30465
|
+
#
|
30385
30466
|
# Describes an Elastic Graphics accelerator.
|
30386
30467
|
#
|
30387
30468
|
# @!attribute [rw] elastic_gpu_id
|
@@ -30614,13 +30695,17 @@ module Aws::EC2
|
|
30614
30695
|
end
|
30615
30696
|
|
30616
30697
|
# @!attribute [rw] source
|
30617
|
-
# The source Region or Availability Zone
|
30618
|
-
# is enabled for.
|
30698
|
+
# The source Region (like `us-east-1`) or Availability Zone ID (like
|
30699
|
+
# `use1-az1`) that the metric subscription is enabled for. If you use
|
30700
|
+
# Availability Zone IDs, the Source and Destination Availability Zones
|
30701
|
+
# must be in the same Region.
|
30619
30702
|
# @return [String]
|
30620
30703
|
#
|
30621
30704
|
# @!attribute [rw] destination
|
30622
|
-
# The target Region or Availability Zone
|
30623
|
-
# is enabled for.
|
30705
|
+
# The target Region (like `us-east-2`) or Availability Zone ID (like
|
30706
|
+
# `use2-az2`) that the metric subscription is enabled for. If you use
|
30707
|
+
# Availability Zone IDs, the Source and Destination Availability Zones
|
30708
|
+
# must be in the same Region.
|
30624
30709
|
# @return [String]
|
30625
30710
|
#
|
30626
30711
|
# @!attribute [rw] metric
|
@@ -38476,7 +38561,13 @@ module Aws::EC2
|
|
38476
38561
|
# @return [String]
|
38477
38562
|
#
|
38478
38563
|
# @!attribute [rw] elastic_gpu_associations
|
38479
|
-
#
|
38564
|
+
# Deprecated.
|
38565
|
+
#
|
38566
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024. For
|
38567
|
+
# workloads that require graphics acceleration, we recommend that you
|
38568
|
+
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
38569
|
+
#
|
38570
|
+
# </note>
|
38480
38571
|
# @return [Array<Types::ElasticGpuAssociation>]
|
38481
38572
|
#
|
38482
38573
|
# @!attribute [rw] elastic_inference_accelerator_associations
|
@@ -45064,10 +45155,9 @@ module Aws::EC2
|
|
45064
45155
|
# Valid Values lists all resource types for Amazon EC2 that can be
|
45065
45156
|
# tagged. When you create a launch template, you can specify tags for
|
45066
45157
|
# the following resource types only: `instance` \| `volume` \|
|
45067
|
-
# `
|
45068
|
-
#
|
45069
|
-
#
|
45070
|
-
# include an Elastic GPU.
|
45158
|
+
# `network-interface` \| `spot-instances-request`. If the instance
|
45159
|
+
# does not include the resource type that you specify, the instance
|
45160
|
+
# launch fails. For example, not all instance types include a volume.
|
45071
45161
|
#
|
45072
45162
|
# To tag a resource after it has been created, see [CreateTags][1].
|
45073
45163
|
#
|
@@ -48517,6 +48607,16 @@ module Aws::EC2
|
|
48517
48607
|
# Specify `true` to indicate that network interfaces attached to
|
48518
48608
|
# instances created in the specified subnet should be assigned a
|
48519
48609
|
# public IPv4 address.
|
48610
|
+
#
|
48611
|
+
# Starting on February 1, 2024, Amazon Web Services will charge for
|
48612
|
+
# all public IPv4 addresses, including public IPv4 addresses
|
48613
|
+
# associated with running instances and Elastic IP addresses. For more
|
48614
|
+
# information, see the *Public IPv4 Address* tab on the [Amazon VPC
|
48615
|
+
# pricing page][1].
|
48616
|
+
#
|
48617
|
+
#
|
48618
|
+
#
|
48619
|
+
# [1]: http://aws.amazon.com/vpc/pricing/
|
48520
48620
|
# @return [Types::AttributeBooleanValue]
|
48521
48621
|
#
|
48522
48622
|
# @!attribute [rw] subnet_id
|
@@ -50489,7 +50589,7 @@ module Aws::EC2
|
|
50489
50589
|
#
|
50490
50590
|
# Constraints: A value between 60 and half of `Phase2LifetimeSeconds`.
|
50491
50591
|
#
|
50492
|
-
# Default: `
|
50592
|
+
# Default: `270`
|
50493
50593
|
# @return [Integer]
|
50494
50594
|
#
|
50495
50595
|
# @!attribute [rw] rekey_fuzz_percentage
|
@@ -55698,7 +55798,13 @@ module Aws::EC2
|
|
55698
55798
|
# @return [Array<Types::LaunchTemplateTagSpecificationRequest>]
|
55699
55799
|
#
|
55700
55800
|
# @!attribute [rw] elastic_gpu_specifications
|
55701
|
-
#
|
55801
|
+
# Deprecated.
|
55802
|
+
#
|
55803
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024. For
|
55804
|
+
# workloads that require graphics acceleration, we recommend that you
|
55805
|
+
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
55806
|
+
#
|
55807
|
+
# </note>
|
55702
55808
|
# @return [Array<Types::ElasticGpuSpecification>]
|
55703
55809
|
#
|
55704
55810
|
# @!attribute [rw] elastic_inference_accelerators
|
@@ -57150,7 +57256,13 @@ module Aws::EC2
|
|
57150
57256
|
# @return [Array<Types::LaunchTemplateTagSpecification>]
|
57151
57257
|
#
|
57152
57258
|
# @!attribute [rw] elastic_gpu_specifications
|
57153
|
-
#
|
57259
|
+
# Deprecated.
|
57260
|
+
#
|
57261
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024. For
|
57262
|
+
# workloads that require graphics acceleration, we recommend that you
|
57263
|
+
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
57264
|
+
#
|
57265
|
+
# </note>
|
57154
57266
|
# @return [Array<Types::ElasticGpuSpecificationResponse>]
|
57155
57267
|
#
|
57156
57268
|
# @!attribute [rw] elastic_inference_accelerators
|
@@ -58342,15 +58454,13 @@ module Aws::EC2
|
|
58342
58454
|
# @return [String]
|
58343
58455
|
#
|
58344
58456
|
# @!attribute [rw] elastic_gpu_specification
|
58345
|
-
#
|
58346
|
-
# GPU resource that you can attach to your Windows instance to
|
58347
|
-
# accelerate the graphics performance of your applications. For more
|
58348
|
-
# information, see [Amazon EC2 Elastic GPUs][1] in the *Amazon EC2
|
58349
|
-
# User Guide*.
|
58350
|
-
#
|
58457
|
+
# Deprecated.
|
58351
58458
|
#
|
58459
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024. For
|
58460
|
+
# workloads that require graphics acceleration, we recommend that you
|
58461
|
+
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
58352
58462
|
#
|
58353
|
-
#
|
58463
|
+
# </note>
|
58354
58464
|
# @return [Array<Types::ElasticGpuSpecification>]
|
58355
58465
|
#
|
58356
58466
|
# @!attribute [rw] elastic_inference_accelerators
|
@@ -58385,8 +58495,6 @@ module Aws::EC2
|
|
58385
58495
|
#
|
58386
58496
|
# * Volumes
|
58387
58497
|
#
|
58388
|
-
# * Elastic graphics
|
58389
|
-
#
|
58390
58498
|
# * Spot Instance requests
|
58391
58499
|
#
|
58392
58500
|
# * Network interfaces
|
@@ -62502,6 +62610,16 @@ module Aws::EC2
|
|
62502
62610
|
# @!attribute [rw] map_public_ip_on_launch
|
62503
62611
|
# Indicates whether instances launched in this subnet receive a public
|
62504
62612
|
# IPv4 address.
|
62613
|
+
#
|
62614
|
+
# Starting on February 1, 2024, Amazon Web Services will charge for
|
62615
|
+
# all public IPv4 addresses, including public IPv4 addresses
|
62616
|
+
# associated with running instances and Elastic IP addresses. For more
|
62617
|
+
# information, see the *Public IPv4 Address* tab on the [Amazon VPC
|
62618
|
+
# pricing page][1].
|
62619
|
+
#
|
62620
|
+
#
|
62621
|
+
#
|
62622
|
+
# [1]: http://aws.amazon.com/vpc/pricing/
|
62505
62623
|
# @return [Boolean]
|
62506
62624
|
#
|
62507
62625
|
# @!attribute [rw] map_customer_owned_ip_on_launch
|
@@ -68043,7 +68161,7 @@ module Aws::EC2
|
|
68043
68161
|
#
|
68044
68162
|
# Constraints: A value between 60 and half of `Phase2LifetimeSeconds`.
|
68045
68163
|
#
|
68046
|
-
# Default: `
|
68164
|
+
# Default: `270`
|
68047
68165
|
# @return [Integer]
|
68048
68166
|
#
|
68049
68167
|
# @!attribute [rw] rekey_fuzz_percentage
|
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
@@ -368,6 +368,7 @@ module Aws::EC2
|
|
368
368
|
# ],
|
369
369
|
# },
|
370
370
|
# ],
|
371
|
+
# client_token: "String",
|
371
372
|
# })
|
372
373
|
# @param [Hash] options ({})
|
373
374
|
# @option options [Boolean] :dry_run
|
@@ -377,6 +378,14 @@ module Aws::EC2
|
|
377
378
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
378
379
|
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
379
380
|
# The tags to assign to the network ACL.
|
381
|
+
# @option options [String] :client_token
|
382
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
383
|
+
# idempotency of the request. For more information, see [Ensuring
|
384
|
+
# idempotency][1].
|
385
|
+
#
|
386
|
+
#
|
387
|
+
#
|
388
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html
|
380
389
|
# @return [NetworkAcl]
|
381
390
|
def create_network_acl(options = {})
|
382
391
|
options = options.merge(vpc_id: @id)
|
@@ -405,6 +414,7 @@ module Aws::EC2
|
|
405
414
|
# ],
|
406
415
|
# },
|
407
416
|
# ],
|
417
|
+
# client_token: "String",
|
408
418
|
# })
|
409
419
|
# @param [Hash] options ({})
|
410
420
|
# @option options [Boolean] :dry_run
|
@@ -414,6 +424,14 @@ module Aws::EC2
|
|
414
424
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
415
425
|
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
416
426
|
# The tags to assign to the route table.
|
427
|
+
# @option options [String] :client_token
|
428
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
429
|
+
# idempotency of the request. For more information, see [Ensuring
|
430
|
+
# idempotency][1].
|
431
|
+
#
|
432
|
+
#
|
433
|
+
#
|
434
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html
|
417
435
|
# @return [RouteTable]
|
418
436
|
def create_route_table(options = {})
|
419
437
|
options = options.merge(vpc_id: @id)
|
@@ -1894,6 +1912,9 @@ module Aws::EC2
|
|
1894
1912
|
# @option options [Array<Types::Filter>] :filters
|
1895
1913
|
# The filters.
|
1896
1914
|
#
|
1915
|
+
# * `association.gateway-id` - The ID of the gateway involved in the
|
1916
|
+
# association.
|
1917
|
+
#
|
1897
1918
|
# * `association.route-table-association-id` - The ID of an association
|
1898
1919
|
# ID for the route table.
|
1899
1920
|
#
|
data/lib/aws-sdk-ec2.rb
CHANGED
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.435.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-01-
|
11
|
+
date: 2024-01-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|