aws-sdk-ec2 1.363.0 → 1.365.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 +411 -257
- data/lib/aws-sdk-ec2/client_api.rb +26 -26
- data/lib/aws-sdk-ec2/endpoint_parameters.rb +0 -3
- data/lib/aws-sdk-ec2/endpoint_provider.rb +34 -31
- data/lib/aws-sdk-ec2/resource.rb +5 -2
- data/lib/aws-sdk-ec2/types.rb +466 -261
- data/lib/aws-sdk-ec2/volume.rb +13 -14
- data/lib/aws-sdk-ec2/waiters.rb +45 -0
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -697,7 +697,7 @@ module Aws::EC2
|
|
697
697
|
# If you have the required permissions, the error response is
|
698
698
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
699
699
|
#
|
700
|
-
# @option params [String] :vpc_peering_connection_id
|
700
|
+
# @option params [required, String] :vpc_peering_connection_id
|
701
701
|
# The ID of the VPC peering connection. You must specify this parameter
|
702
702
|
# in the request.
|
703
703
|
#
|
@@ -709,7 +709,7 @@ module Aws::EC2
|
|
709
709
|
#
|
710
710
|
# resp = client.accept_vpc_peering_connection({
|
711
711
|
# dry_run: false,
|
712
|
-
# vpc_peering_connection_id: "VpcPeeringConnectionIdWithResolver",
|
712
|
+
# vpc_peering_connection_id: "VpcPeeringConnectionIdWithResolver", # required
|
713
713
|
# })
|
714
714
|
#
|
715
715
|
# @example Response structure
|
@@ -1833,10 +1833,10 @@ module Aws::EC2
|
|
1833
1833
|
# [1]: https://docs.aws.amazon.com/enclaves/latest/user/nitro-enclave-refapp.html
|
1834
1834
|
# [2]: https://docs.aws.amazon.com/enclaves/latest/user/nitro-enclave-refapp.html#add-policy
|
1835
1835
|
#
|
1836
|
-
# @option params [String] :certificate_arn
|
1836
|
+
# @option params [required, String] :certificate_arn
|
1837
1837
|
# The ARN of the ACM certificate with which to associate the IAM role.
|
1838
1838
|
#
|
1839
|
-
# @option params [String] :role_arn
|
1839
|
+
# @option params [required, String] :role_arn
|
1840
1840
|
# The ARN of the IAM role to associate with the ACM certificate. You can
|
1841
1841
|
# associate up to 16 IAM roles with an ACM certificate.
|
1842
1842
|
#
|
@@ -1855,8 +1855,8 @@ module Aws::EC2
|
|
1855
1855
|
# @example Request syntax with placeholder values
|
1856
1856
|
#
|
1857
1857
|
# resp = client.associate_enclave_certificate_iam_role({
|
1858
|
-
# certificate_arn: "CertificateId",
|
1859
|
-
# role_arn: "RoleId",
|
1858
|
+
# certificate_arn: "CertificateId", # required
|
1859
|
+
# role_arn: "RoleId", # required
|
1860
1860
|
# dry_run: false,
|
1861
1861
|
# })
|
1862
1862
|
#
|
@@ -2018,8 +2018,8 @@ module Aws::EC2
|
|
2018
2018
|
end
|
2019
2019
|
|
2020
2020
|
# Associates an IPAM resource discovery with an Amazon VPC IPAM. A
|
2021
|
-
# resource discovery is an IPAM component that enables IPAM
|
2022
|
-
#
|
2021
|
+
# resource discovery is an IPAM component that enables IPAM to manage
|
2022
|
+
# and monitor resources that belong to the owning account.
|
2023
2023
|
#
|
2024
2024
|
# @option params [Boolean] :dry_run
|
2025
2025
|
# A check for whether you have the required permissions for the action
|
@@ -2281,14 +2281,14 @@ module Aws::EC2
|
|
2281
2281
|
#
|
2282
2282
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeTransitGatewayAttachments.html
|
2283
2283
|
#
|
2284
|
-
# @option params [String] :transit_gateway_multicast_domain_id
|
2284
|
+
# @option params [required, String] :transit_gateway_multicast_domain_id
|
2285
2285
|
# The ID of the transit gateway multicast domain.
|
2286
2286
|
#
|
2287
|
-
# @option params [String] :transit_gateway_attachment_id
|
2287
|
+
# @option params [required, String] :transit_gateway_attachment_id
|
2288
2288
|
# The ID of the transit gateway attachment to associate with the transit
|
2289
2289
|
# gateway multicast domain.
|
2290
2290
|
#
|
2291
|
-
# @option params [Array<String>] :subnet_ids
|
2291
|
+
# @option params [required, Array<String>] :subnet_ids
|
2292
2292
|
# The IDs of the subnets to associate with the transit gateway multicast
|
2293
2293
|
# domain.
|
2294
2294
|
#
|
@@ -2305,9 +2305,9 @@ module Aws::EC2
|
|
2305
2305
|
# @example Request syntax with placeholder values
|
2306
2306
|
#
|
2307
2307
|
# resp = client.associate_transit_gateway_multicast_domain({
|
2308
|
-
# transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId",
|
2309
|
-
# transit_gateway_attachment_id: "TransitGatewayAttachmentId",
|
2310
|
-
# subnet_ids: ["SubnetId"],
|
2308
|
+
# transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId", # required
|
2309
|
+
# transit_gateway_attachment_id: "TransitGatewayAttachmentId", # required
|
2310
|
+
# subnet_ids: ["SubnetId"], # required
|
2311
2311
|
# dry_run: false,
|
2312
2312
|
# })
|
2313
2313
|
#
|
@@ -3939,13 +3939,13 @@ module Aws::EC2
|
|
3939
3939
|
end
|
3940
3940
|
|
3941
3941
|
# Removes your Amazon Web Services account from the launch permissions
|
3942
|
-
# for the specified AMI. For more information, see [Cancel having an
|
3943
|
-
# shared with your Amazon Web Services account][1] in the *Amazon
|
3944
|
-
# User Guide*.
|
3942
|
+
# for the specified AMI. For more information, see [ Cancel having an
|
3943
|
+
# AMI shared with your Amazon Web Services account][1] in the *Amazon
|
3944
|
+
# EC2 User Guide*.
|
3945
3945
|
#
|
3946
3946
|
#
|
3947
3947
|
#
|
3948
|
-
# [1]: https://docs.aws.amazon.com/
|
3948
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/cancel-sharing-an-AMI.html
|
3949
3949
|
#
|
3950
3950
|
# @option params [required, String] :image_id
|
3951
3951
|
# The ID of the AMI that was shared with your Amazon Web Services
|
@@ -6155,6 +6155,8 @@ module Aws::EC2
|
|
6155
6155
|
# target capacity of the EC2 Fleet is decreased below the current size
|
6156
6156
|
# of the EC2 Fleet.
|
6157
6157
|
#
|
6158
|
+
# Supported only for fleets of type `maintain`.
|
6159
|
+
#
|
6158
6160
|
# @option params [required, Array<Types::FleetLaunchTemplateConfigRequest>] :launch_template_configs
|
6159
6161
|
# The configuration for the EC2 Fleet.
|
6160
6162
|
#
|
@@ -7582,8 +7584,8 @@ module Aws::EC2
|
|
7582
7584
|
end
|
7583
7585
|
|
7584
7586
|
# Creates an IPAM resource discovery. A resource discovery is an IPAM
|
7585
|
-
# component that enables IPAM
|
7586
|
-
#
|
7587
|
+
# component that enables IPAM to manage and monitor resources that
|
7588
|
+
# belong to the owning account.
|
7587
7589
|
#
|
7588
7590
|
# @option params [Boolean] :dry_run
|
7589
7591
|
# A check for whether you have the required permissions for the action
|
@@ -13717,6 +13719,9 @@ module Aws::EC2
|
|
13717
13719
|
#
|
13718
13720
|
# * Magnetic: `standard`
|
13719
13721
|
#
|
13722
|
+
# Throughput Optimized HDD (`st1`) and Cold HDD (`sc1`) volumes can't
|
13723
|
+
# be used as boot volumes.
|
13724
|
+
#
|
13720
13725
|
# For more information, see [Amazon EBS volume types][1] in the *Amazon
|
13721
13726
|
# Elastic Compute Cloud User Guide*.
|
13722
13727
|
#
|
@@ -14507,7 +14512,7 @@ module Aws::EC2
|
|
14507
14512
|
# The ID of the VPC with which you are creating the VPC peering
|
14508
14513
|
# connection. You must specify this parameter in the request.
|
14509
14514
|
#
|
14510
|
-
# @option params [String] :vpc_id
|
14515
|
+
# @option params [required, String] :vpc_id
|
14511
14516
|
# The ID of the requester VPC. You must specify this parameter in the
|
14512
14517
|
# request.
|
14513
14518
|
#
|
@@ -14530,7 +14535,7 @@ module Aws::EC2
|
|
14530
14535
|
# dry_run: false,
|
14531
14536
|
# peer_owner_id: "String",
|
14532
14537
|
# peer_vpc_id: "String",
|
14533
|
-
# vpc_id: "VpcId",
|
14538
|
+
# vpc_id: "VpcId", # required
|
14534
14539
|
# peer_region: "String",
|
14535
14540
|
# tag_specifications: [
|
14536
14541
|
# {
|
@@ -15665,8 +15670,8 @@ module Aws::EC2
|
|
15665
15670
|
end
|
15666
15671
|
|
15667
15672
|
# Deletes an IPAM resource discovery. A resource discovery is an IPAM
|
15668
|
-
# component that enables IPAM
|
15669
|
-
#
|
15673
|
+
# component that enables IPAM to manage and monitor resources that
|
15674
|
+
# belong to the owning account.
|
15670
15675
|
#
|
15671
15676
|
# @option params [Boolean] :dry_run
|
15672
15677
|
# A check for whether you have the required permissions for the action
|
@@ -19308,8 +19313,8 @@ module Aws::EC2
|
|
19308
19313
|
#
|
19309
19314
|
# * `message` - The Zone message.
|
19310
19315
|
#
|
19311
|
-
# * `opt-in-status` - The opt-in status (`opted-in
|
19312
|
-
#
|
19316
|
+
# * `opt-in-status` - The opt-in status (`opted-in` \| `not-opted-in` \|
|
19317
|
+
# `opt-in-not-required`).
|
19313
19318
|
#
|
19314
19319
|
# * `parent-zoneID` - The ID of the zone that handles some of the Local
|
19315
19320
|
# Zone and Wavelength Zone control plane operations, such as API
|
@@ -19329,13 +19334,12 @@ module Aws::EC2
|
|
19329
19334
|
# `use1-az1`), the Local Zone (for example, `usw2-lax1-az1`), or the
|
19330
19335
|
# Wavelength Zone (for example, `us-east-1-wl1-bos-wlz-1`).
|
19331
19336
|
#
|
19332
|
-
# * `zone-type` - The type of zone, for example, `local-zone`.
|
19333
|
-
#
|
19334
19337
|
# * `zone-name` - The name of the Availability Zone (for example,
|
19335
19338
|
# `us-east-1a`), the Local Zone (for example, `us-west-2-lax-1a`), or
|
19336
19339
|
# the Wavelength Zone (for example, `us-east-1-wl1-bos-wlz-1`).
|
19337
19340
|
#
|
19338
|
-
# * `zone-type` - The type of zone
|
19341
|
+
# * `zone-type` - The type of zone (`availability-zone` \| `local-zone`
|
19342
|
+
# \| `wavelength-zone`).
|
19339
19343
|
#
|
19340
19344
|
# @option params [Array<String>] :zone_names
|
19341
19345
|
# The names of the Availability Zones, Local Zones, and Wavelength
|
@@ -20054,15 +20058,20 @@ module Aws::EC2
|
|
20054
20058
|
# ClassicLink.
|
20055
20059
|
#
|
20056
20060
|
# @option params [Integer] :max_results
|
20057
|
-
# The maximum number of
|
20058
|
-
#
|
20059
|
-
#
|
20061
|
+
# The maximum number of items to return for this request. To get the
|
20062
|
+
# next page of items, make another request with the token returned in
|
20063
|
+
# the output. For more information, see [Pagination][1].
|
20060
20064
|
#
|
20061
20065
|
# Constraint: If the value is greater than 1000, we return only 1000
|
20062
20066
|
# items.
|
20063
20067
|
#
|
20068
|
+
#
|
20069
|
+
#
|
20070
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
20071
|
+
#
|
20064
20072
|
# @option params [String] :next_token
|
20065
|
-
# The token
|
20073
|
+
# The token returned from a previous paginated request. Pagination
|
20074
|
+
# continues from the end of the items returned by the previous request.
|
20066
20075
|
#
|
20067
20076
|
# @return [Types::DescribeClassicLinkInstancesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
20068
20077
|
#
|
@@ -20830,12 +20839,17 @@ module Aws::EC2
|
|
20830
20839
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
20831
20840
|
#
|
20832
20841
|
# @option params [String] :next_token
|
20833
|
-
# The token
|
20842
|
+
# The token returned from a previous paginated request. Pagination
|
20843
|
+
# continues from the end of the items returned by the previous request.
|
20834
20844
|
#
|
20835
20845
|
# @option params [Integer] :max_results
|
20836
|
-
# The maximum number of
|
20837
|
-
#
|
20838
|
-
#
|
20846
|
+
# The maximum number of items to return for this request. To get the
|
20847
|
+
# next page of items, make another request with the token returned in
|
20848
|
+
# the output. For more information, see [Pagination][1].
|
20849
|
+
#
|
20850
|
+
#
|
20851
|
+
#
|
20852
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
20839
20853
|
#
|
20840
20854
|
# @return [Types::DescribeDhcpOptionsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
20841
20855
|
#
|
@@ -20927,12 +20941,17 @@ module Aws::EC2
|
|
20927
20941
|
# One or more egress-only internet gateway IDs.
|
20928
20942
|
#
|
20929
20943
|
# @option params [Integer] :max_results
|
20930
|
-
# The maximum number of
|
20931
|
-
#
|
20932
|
-
#
|
20944
|
+
# The maximum number of items to return for this request. To get the
|
20945
|
+
# next page of items, make another request with the token returned in
|
20946
|
+
# the output. For more information, see [Pagination][1].
|
20947
|
+
#
|
20948
|
+
#
|
20949
|
+
#
|
20950
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
20933
20951
|
#
|
20934
20952
|
# @option params [String] :next_token
|
20935
|
-
# The token
|
20953
|
+
# The token returned from a previous paginated request. Pagination
|
20954
|
+
# continues from the end of the items returned by the previous request.
|
20936
20955
|
#
|
20937
20956
|
# @option params [Array<Types::Filter>] :filters
|
20938
20957
|
# One or more filters.
|
@@ -21301,12 +21320,17 @@ module Aws::EC2
|
|
21301
21320
|
# `disabled`).
|
21302
21321
|
#
|
21303
21322
|
# @option params [Integer] :max_results
|
21304
|
-
# The maximum number of
|
21305
|
-
#
|
21306
|
-
#
|
21323
|
+
# The maximum number of items to return for this request. To get the
|
21324
|
+
# next page of items, make another request with the token returned in
|
21325
|
+
# the output. For more information, see [Pagination][1].
|
21326
|
+
#
|
21327
|
+
#
|
21328
|
+
#
|
21329
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
21307
21330
|
#
|
21308
21331
|
# @option params [String] :next_token
|
21309
|
-
# The token
|
21332
|
+
# The token returned from a previous paginated request. Pagination
|
21333
|
+
# continues from the end of the items returned by the previous request.
|
21310
21334
|
#
|
21311
21335
|
# @option params [Boolean] :dry_run
|
21312
21336
|
# Checks whether you have the required permissions for the action,
|
@@ -21850,12 +21874,17 @@ module Aws::EC2
|
|
21850
21874
|
# Constraint: Maximum of 1000 flow log IDs.
|
21851
21875
|
#
|
21852
21876
|
# @option params [Integer] :max_results
|
21853
|
-
# The maximum number of
|
21854
|
-
#
|
21855
|
-
#
|
21877
|
+
# The maximum number of items to return for this request. To get the
|
21878
|
+
# next page of items, make another request with the token returned in
|
21879
|
+
# the output. For more information, see [Pagination][1].
|
21880
|
+
#
|
21881
|
+
#
|
21882
|
+
#
|
21883
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
21856
21884
|
#
|
21857
21885
|
# @option params [String] :next_token
|
21858
|
-
# The token
|
21886
|
+
# The token to request the next page of items. Pagination continues from
|
21887
|
+
# the end of the items returned by the previous request.
|
21859
21888
|
#
|
21860
21889
|
# @return [Types::DescribeFlowLogsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
21861
21890
|
#
|
@@ -22394,12 +22423,17 @@ module Aws::EC2
|
|
22394
22423
|
# `associated` \| `disassociating`).
|
22395
22424
|
#
|
22396
22425
|
# @option params [Integer] :max_results
|
22397
|
-
# The maximum number of
|
22398
|
-
#
|
22399
|
-
#
|
22426
|
+
# The maximum number of items to return for this request. To get the
|
22427
|
+
# next page of items, make another request with the token returned in
|
22428
|
+
# the output. For more information, see [Pagination][1].
|
22429
|
+
#
|
22430
|
+
#
|
22431
|
+
#
|
22432
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
22400
22433
|
#
|
22401
22434
|
# @option params [String] :next_token
|
22402
|
-
# The token
|
22435
|
+
# The token returned from a previous paginated request. Pagination
|
22436
|
+
# continues from the end of the items returned by the previous request.
|
22403
22437
|
#
|
22404
22438
|
# @return [Types::DescribeIamInstanceProfileAssociationsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
22405
22439
|
#
|
@@ -23165,6 +23199,11 @@ module Aws::EC2
|
|
23165
23199
|
# resp.import_snapshot_tasks[0].tags[0].value #=> String
|
23166
23200
|
# resp.next_token #=> String
|
23167
23201
|
#
|
23202
|
+
#
|
23203
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
23204
|
+
#
|
23205
|
+
# * snapshot_imported
|
23206
|
+
#
|
23168
23207
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeImportSnapshotTasks AWS API Documentation
|
23169
23208
|
#
|
23170
23209
|
# @overload describe_import_snapshot_tasks(params = {})
|
@@ -23382,13 +23421,19 @@ module Aws::EC2
|
|
23382
23421
|
# Constraints: Maximum 1000 explicitly specified instance IDs.
|
23383
23422
|
#
|
23384
23423
|
# @option params [Integer] :max_results
|
23385
|
-
# The maximum number of
|
23386
|
-
#
|
23387
|
-
#
|
23388
|
-
# parameter and the instance IDs parameter in the same call.
|
23424
|
+
# The maximum number of items to return for this request. To get the
|
23425
|
+
# next page of items, make another request with the token returned in
|
23426
|
+
# the output. This value can be between 5 and 1000. You cannot specify
|
23427
|
+
# this parameter and the instance IDs parameter in the same call. For
|
23428
|
+
# more information, see [Pagination][1].
|
23429
|
+
#
|
23430
|
+
#
|
23431
|
+
#
|
23432
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
23389
23433
|
#
|
23390
23434
|
# @option params [String] :next_token
|
23391
|
-
# The token
|
23435
|
+
# The token returned from a previous paginated request. Pagination
|
23436
|
+
# continues from the end of the items returned by the previous request.
|
23392
23437
|
#
|
23393
23438
|
# @return [Types::DescribeInstanceCreditSpecificationsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
23394
23439
|
#
|
@@ -23673,13 +23718,19 @@ module Aws::EC2
|
|
23673
23718
|
# Constraints: Maximum 100 explicitly specified instance IDs.
|
23674
23719
|
#
|
23675
23720
|
# @option params [Integer] :max_results
|
23676
|
-
# The maximum number of
|
23677
|
-
# the
|
23678
|
-
#
|
23679
|
-
# parameter and the instance IDs parameter in the same
|
23721
|
+
# The maximum number of items to return for this request. To retrieve
|
23722
|
+
# the next page of items, make another request with the token returned
|
23723
|
+
# in the output. This value can be between 5 and 1000. You cannot
|
23724
|
+
# specify this parameter and the instance IDs parameter in the same
|
23725
|
+
# call. For more information, see [Pagination][1].
|
23726
|
+
#
|
23727
|
+
#
|
23728
|
+
#
|
23729
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
23680
23730
|
#
|
23681
23731
|
# @option params [String] :next_token
|
23682
|
-
# The token
|
23732
|
+
# The token returned from a previous paginated request. Pagination
|
23733
|
+
# continues from the end of the items returned by the previous request.
|
23683
23734
|
#
|
23684
23735
|
# @option params [Boolean] :dry_run
|
23685
23736
|
# Checks whether you have the required permissions for the action,
|
@@ -23825,12 +23876,17 @@ module Aws::EC2
|
|
23825
23876
|
# * `instance-type` - The instance type. For example, `c5.2xlarge`.
|
23826
23877
|
#
|
23827
23878
|
# @option params [Integer] :max_results
|
23828
|
-
# The maximum number of
|
23829
|
-
# page
|
23830
|
-
#
|
23879
|
+
# The maximum number of items to return for this request. To get the
|
23880
|
+
# next page of items, make another request with the token returned in
|
23881
|
+
# the output. For more information, see [Pagination][1].
|
23882
|
+
#
|
23883
|
+
#
|
23884
|
+
#
|
23885
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
23831
23886
|
#
|
23832
23887
|
# @option params [String] :next_token
|
23833
|
-
# The token
|
23888
|
+
# The token returned from a previous paginated request. Pagination
|
23889
|
+
# continues from the end of the items returned by the previous request.
|
23834
23890
|
#
|
23835
23891
|
# @return [Types::DescribeInstanceTypeOfferingsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
23836
23892
|
#
|
@@ -24038,12 +24094,17 @@ module Aws::EC2
|
|
24038
24094
|
# "1,2".
|
24039
24095
|
#
|
24040
24096
|
# @option params [Integer] :max_results
|
24041
|
-
# The maximum number of
|
24042
|
-
# page
|
24043
|
-
#
|
24097
|
+
# The maximum number of items to return for this request. To get the
|
24098
|
+
# next page of items, make another request with the token returned in
|
24099
|
+
# the output. For more information, see [Pagination][1].
|
24100
|
+
#
|
24101
|
+
#
|
24102
|
+
#
|
24103
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
24044
24104
|
#
|
24045
24105
|
# @option params [String] :next_token
|
24046
|
-
# The token
|
24106
|
+
# The token returned from a previous paginated request. Pagination
|
24107
|
+
# continues from the end of the items returned by the previous request.
|
24047
24108
|
#
|
24048
24109
|
# @return [Types::DescribeInstanceTypesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
24049
24110
|
#
|
@@ -24482,13 +24543,19 @@ module Aws::EC2
|
|
24482
24543
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
24483
24544
|
#
|
24484
24545
|
# @option params [Integer] :max_results
|
24485
|
-
# The maximum number of
|
24486
|
-
#
|
24487
|
-
#
|
24488
|
-
# parameter and the instance IDs parameter in the same
|
24546
|
+
# The maximum number of items to return for this request. To get the
|
24547
|
+
# next page of items, make another request with the token returned in
|
24548
|
+
# the output. This value can be between 5 and 1000. You cannot specify
|
24549
|
+
# this parameter and the instance IDs parameter in the same request. For
|
24550
|
+
# more information, see [Pagination][1].
|
24551
|
+
#
|
24552
|
+
#
|
24553
|
+
#
|
24554
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
24489
24555
|
#
|
24490
24556
|
# @option params [String] :next_token
|
24491
|
-
# The token
|
24557
|
+
# The token returned from a previous paginated request. Pagination
|
24558
|
+
# continues from the end of the items returned by the previous request.
|
24492
24559
|
#
|
24493
24560
|
# @return [Types::DescribeInstancesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
24494
24561
|
#
|
@@ -24779,12 +24846,17 @@ module Aws::EC2
|
|
24779
24846
|
# Default: Describes all your internet gateways.
|
24780
24847
|
#
|
24781
24848
|
# @option params [String] :next_token
|
24782
|
-
# The token
|
24849
|
+
# The token returned from a previous paginated request. Pagination
|
24850
|
+
# continues from the end of the items returned by the previous request.
|
24783
24851
|
#
|
24784
24852
|
# @option params [Integer] :max_results
|
24785
|
-
# The maximum number of
|
24786
|
-
#
|
24787
|
-
#
|
24853
|
+
# The maximum number of items to return for this request. To get the
|
24854
|
+
# next page of items, make another request with the token returned in
|
24855
|
+
# the output. For more information, see [Pagination][1].
|
24856
|
+
#
|
24857
|
+
#
|
24858
|
+
#
|
24859
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
24788
24860
|
#
|
24789
24861
|
# @return [Types::DescribeInternetGatewaysResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
24790
24862
|
#
|
@@ -24957,8 +25029,8 @@ module Aws::EC2
|
|
24957
25029
|
end
|
24958
25030
|
|
24959
25031
|
# Describes IPAM resource discoveries. A resource discovery is an IPAM
|
24960
|
-
# component that enables IPAM
|
24961
|
-
#
|
25032
|
+
# component that enables IPAM to manage and monitor resources that
|
25033
|
+
# belong to the owning account.
|
24962
25034
|
#
|
24963
25035
|
# @option params [Boolean] :dry_run
|
24964
25036
|
# A check for whether you have the required permissions for the action
|
@@ -26624,15 +26696,20 @@ module Aws::EC2
|
|
26624
26696
|
# * `vpc-id` - The ID of the VPC in which the NAT gateway resides.
|
26625
26697
|
#
|
26626
26698
|
# @option params [Integer] :max_results
|
26627
|
-
# The maximum number of
|
26628
|
-
#
|
26629
|
-
#
|
26699
|
+
# The maximum number of items to return for this request. To get the
|
26700
|
+
# next page of items, make another request with the token returned in
|
26701
|
+
# the output. For more information, see [Pagination][1].
|
26702
|
+
#
|
26703
|
+
#
|
26704
|
+
#
|
26705
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
26630
26706
|
#
|
26631
26707
|
# @option params [Array<String>] :nat_gateway_ids
|
26632
26708
|
# One or more NAT gateway IDs.
|
26633
26709
|
#
|
26634
26710
|
# @option params [String] :next_token
|
26635
|
-
# The token
|
26711
|
+
# The token returned from a previous paginated request. Pagination
|
26712
|
+
# continues from the end of the items returned by the previous request.
|
26636
26713
|
#
|
26637
26714
|
# @return [Types::DescribeNatGatewaysResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
26638
26715
|
#
|
@@ -26818,12 +26895,17 @@ module Aws::EC2
|
|
26818
26895
|
# Default: Describes all your network ACLs.
|
26819
26896
|
#
|
26820
26897
|
# @option params [String] :next_token
|
26821
|
-
# The token
|
26898
|
+
# The token returned from a previous paginated request. Pagination
|
26899
|
+
# continues from the end of the items returned by the previous request.
|
26822
26900
|
#
|
26823
26901
|
# @option params [Integer] :max_results
|
26824
|
-
# The maximum number of
|
26825
|
-
#
|
26826
|
-
#
|
26902
|
+
# The maximum number of items to return for this request. To get the
|
26903
|
+
# next page of items, make another request with the token returned in
|
26904
|
+
# the output. For more information, see [Pagination][1].
|
26905
|
+
#
|
26906
|
+
#
|
26907
|
+
#
|
26908
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
26827
26909
|
#
|
26828
26910
|
# @return [Types::DescribeNetworkAclsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
26829
26911
|
#
|
@@ -28037,13 +28119,18 @@ module Aws::EC2
|
|
28037
28119
|
# (`INSTANCE-ATTACH` \| `EIP-ASSOCIATE`).
|
28038
28120
|
#
|
28039
28121
|
# @option params [String] :next_token
|
28040
|
-
# The token
|
28122
|
+
# The token returned from a previous paginated request. Pagination
|
28123
|
+
# continues from the end of the items returned by the previous request.
|
28041
28124
|
#
|
28042
28125
|
# @option params [Integer] :max_results
|
28043
|
-
# The maximum number of
|
28044
|
-
#
|
28045
|
-
#
|
28046
|
-
# returned by default.
|
28126
|
+
# The maximum number of items to return for this request. To get the
|
28127
|
+
# next page of items, make another request with the token returned in
|
28128
|
+
# the output. If this parameter is not specified, up to 50 results are
|
28129
|
+
# returned by default. For more information, see [Pagination][1].
|
28130
|
+
#
|
28131
|
+
#
|
28132
|
+
#
|
28133
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
28047
28134
|
#
|
28048
28135
|
# @return [Types::DescribeNetworkInterfacePermissionsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
28049
28136
|
#
|
@@ -28219,13 +28306,19 @@ module Aws::EC2
|
|
28219
28306
|
# Default: Describes all your network interfaces.
|
28220
28307
|
#
|
28221
28308
|
# @option params [String] :next_token
|
28222
|
-
# The token
|
28309
|
+
# The token returned from a previous paginated request. Pagination
|
28310
|
+
# continues from the end of the items returned by the previous request.
|
28223
28311
|
#
|
28224
28312
|
# @option params [Integer] :max_results
|
28225
|
-
# The maximum number of items to return for this request.
|
28226
|
-
#
|
28227
|
-
#
|
28228
|
-
# interface IDs parameter in the same request.
|
28313
|
+
# The maximum number of items to return for this request. To get the
|
28314
|
+
# next page of items, make another request with the token returned in
|
28315
|
+
# the output. You cannot specify this parameter and the network
|
28316
|
+
# interface IDs parameter in the same request. For more information, see
|
28317
|
+
# [Pagination][1].
|
28318
|
+
#
|
28319
|
+
#
|
28320
|
+
#
|
28321
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
28229
28322
|
#
|
28230
28323
|
# @return [Types::DescribeNetworkInterfacesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
28231
28324
|
#
|
@@ -28859,12 +28952,17 @@ module Aws::EC2
|
|
28859
28952
|
# ^
|
28860
28953
|
#
|
28861
28954
|
# @option params [Integer] :max_results
|
28862
|
-
# The maximum number of
|
28863
|
-
#
|
28864
|
-
#
|
28955
|
+
# The maximum number of items to return for this request. To get the
|
28956
|
+
# next page of items, make another request with the token returned in
|
28957
|
+
# the output. For more information, see [Pagination][1].
|
28958
|
+
#
|
28959
|
+
#
|
28960
|
+
#
|
28961
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
28865
28962
|
#
|
28866
28963
|
# @option params [String] :next_token
|
28867
|
-
# The token
|
28964
|
+
# The token returned from a previous paginated request. Pagination
|
28965
|
+
# continues from the end of the items returned by the previous request.
|
28868
28966
|
#
|
28869
28967
|
# @option params [Boolean] :dry_run
|
28870
28968
|
# Checks whether you have the required permissions for the action,
|
@@ -29557,12 +29655,17 @@ module Aws::EC2
|
|
29557
29655
|
# Default: Describes all your route tables.
|
29558
29656
|
#
|
29559
29657
|
# @option params [String] :next_token
|
29560
|
-
# The token
|
29658
|
+
# The token returned from a previous paginated request. Pagination
|
29659
|
+
# continues from the end of the items returned by the previous request.
|
29561
29660
|
#
|
29562
29661
|
# @option params [Integer] :max_results
|
29563
|
-
# The maximum number of
|
29564
|
-
#
|
29565
|
-
#
|
29662
|
+
# The maximum number of items to return for this request. To get the
|
29663
|
+
# next page of items, make another request with the token returned in
|
29664
|
+
# the output. For more information, see [Pagination][1].
|
29665
|
+
#
|
29666
|
+
#
|
29667
|
+
#
|
29668
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
29566
29669
|
#
|
29567
29670
|
# @return [Types::DescribeRouteTablesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
29568
29671
|
#
|
@@ -30067,13 +30170,19 @@ module Aws::EC2
|
|
30067
30170
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
30068
30171
|
#
|
30069
30172
|
# @option params [String] :next_token
|
30070
|
-
# The token
|
30173
|
+
# The token returned from a previous paginated request. Pagination
|
30174
|
+
# continues from the end of the items returned by the previous request.
|
30071
30175
|
#
|
30072
30176
|
# @option params [Integer] :max_results
|
30073
|
-
# The maximum number of
|
30074
|
-
#
|
30075
|
-
#
|
30076
|
-
#
|
30177
|
+
# The maximum number of items to return for this request. To get the
|
30178
|
+
# next page of items, make another request with the token returned in
|
30179
|
+
# the output. This value can be between 5 and 1000. If this parameter is
|
30180
|
+
# not specified, then all items are returned. For more information, see
|
30181
|
+
# [Pagination][1].
|
30182
|
+
#
|
30183
|
+
#
|
30184
|
+
#
|
30185
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
30077
30186
|
#
|
30078
30187
|
# @return [Types::DescribeSecurityGroupRulesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
30079
30188
|
#
|
@@ -30256,13 +30365,19 @@ module Aws::EC2
|
|
30256
30365
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
30257
30366
|
#
|
30258
30367
|
# @option params [String] :next_token
|
30259
|
-
# The token
|
30368
|
+
# The token returned from a previous paginated request. Pagination
|
30369
|
+
# continues from the end of the items returned by the previous request.
|
30260
30370
|
#
|
30261
30371
|
# @option params [Integer] :max_results
|
30262
|
-
# The maximum number of
|
30263
|
-
#
|
30264
|
-
#
|
30265
|
-
#
|
30372
|
+
# The maximum number of items to return for this request. To get the
|
30373
|
+
# next page of items, make another request with the token returned in
|
30374
|
+
# the output. This value can be between 5 and 1000. If this parameter is
|
30375
|
+
# not specified, then all items are returned. For more information, see
|
30376
|
+
# [Pagination][1].
|
30377
|
+
#
|
30378
|
+
#
|
30379
|
+
#
|
30380
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
30266
30381
|
#
|
30267
30382
|
# @return [Types::DescribeSecurityGroupsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
30268
30383
|
#
|
@@ -30486,12 +30601,17 @@ module Aws::EC2
|
|
30486
30601
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
30487
30602
|
#
|
30488
30603
|
# @option params [String] :next_token
|
30489
|
-
# The token
|
30604
|
+
# The token returned from a previous paginated request. Pagination
|
30605
|
+
# continues from the end of the items returned by the previous request.
|
30490
30606
|
#
|
30491
30607
|
# @option params [Integer] :max_results
|
30492
|
-
# The maximum number of
|
30493
|
-
#
|
30494
|
-
#
|
30608
|
+
# The maximum number of items to return for this request. To get the
|
30609
|
+
# next page of items, make another request with the token returned in
|
30610
|
+
# the output. For more information, see [Pagination][1].
|
30611
|
+
#
|
30612
|
+
#
|
30613
|
+
#
|
30614
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
30495
30615
|
#
|
30496
30616
|
# @return [Types::DescribeSnapshotTierStatusResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
30497
30617
|
#
|
@@ -30586,22 +30706,19 @@ module Aws::EC2
|
|
30586
30706
|
# public snapshots.
|
30587
30707
|
#
|
30588
30708
|
# If you are describing a long list of snapshots, we recommend that you
|
30589
|
-
# paginate the output to make the list more manageable.
|
30590
|
-
#
|
30591
|
-
# page. If the list of results exceeds your `MaxResults` value, then
|
30592
|
-
# that number of results is returned along with a `NextToken` value that
|
30593
|
-
# can be passed to a subsequent `DescribeSnapshots` request to retrieve
|
30594
|
-
# the remaining results.
|
30709
|
+
# paginate the output to make the list more manageable. For more
|
30710
|
+
# information, see [Pagination][1].
|
30595
30711
|
#
|
30596
30712
|
# To get the state of fast snapshot restores for a snapshot, use
|
30597
30713
|
# DescribeFastSnapshotRestores.
|
30598
30714
|
#
|
30599
30715
|
# For more information about EBS snapshots, see [Amazon EBS
|
30600
|
-
# snapshots][
|
30716
|
+
# snapshots][2] in the *Amazon Elastic Compute Cloud User Guide*.
|
30601
30717
|
#
|
30602
30718
|
#
|
30603
30719
|
#
|
30604
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/
|
30720
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
30721
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSSnapshots.html
|
30605
30722
|
#
|
30606
30723
|
# @option params [Array<Types::Filter>] :filters
|
30607
30724
|
# The filters.
|
@@ -30647,23 +30764,20 @@ module Aws::EC2
|
|
30647
30764
|
# * `volume-size` - The size of the volume, in GiB.
|
30648
30765
|
#
|
30649
30766
|
# @option params [Integer] :max_results
|
30650
|
-
# The maximum number of
|
30651
|
-
#
|
30652
|
-
#
|
30653
|
-
#
|
30654
|
-
#
|
30655
|
-
#
|
30656
|
-
#
|
30657
|
-
#
|
30658
|
-
#
|
30659
|
-
#
|
30767
|
+
# The maximum number of snapshots to return for this request. This value
|
30768
|
+
# can be between 5 and 1,000; if this value is larger than 1,000, only
|
30769
|
+
# 1,000 results are returned. If this parameter is not used, then the
|
30770
|
+
# request returns all snapshots. You cannot specify this parameter and
|
30771
|
+
# the snapshot IDs parameter in the same request. For more information,
|
30772
|
+
# see [Pagination][1].
|
30773
|
+
#
|
30774
|
+
#
|
30775
|
+
#
|
30776
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
30660
30777
|
#
|
30661
30778
|
# @option params [String] :next_token
|
30662
|
-
# The
|
30663
|
-
#
|
30664
|
-
# results exceeded the value of that parameter. Pagination continues
|
30665
|
-
# from the end of the previous results that returned the `NextToken`
|
30666
|
-
# value. This value is `null` when there are no more results to return.
|
30779
|
+
# The token returned from a previous paginated request. Pagination
|
30780
|
+
# continues from the end of the items returned by the previous request.
|
30667
30781
|
#
|
30668
30782
|
# @option params [Array<String>] :owner_ids
|
30669
30783
|
# Scopes the results to snapshots with the specified owners. You can
|
@@ -31883,13 +31997,17 @@ module Aws::EC2
|
|
31883
31997
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
31884
31998
|
#
|
31885
31999
|
# @option params [Integer] :max_results
|
31886
|
-
# The maximum number of items to return for this request.
|
31887
|
-
#
|
31888
|
-
#
|
32000
|
+
# The maximum number of items to return for this request. To get the
|
32001
|
+
# next page of items, make another request with the token returned in
|
32002
|
+
# the output. For more information, see [Pagination][1].
|
32003
|
+
#
|
32004
|
+
#
|
32005
|
+
#
|
32006
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
31889
32007
|
#
|
31890
32008
|
# @option params [String] :next_token
|
31891
|
-
# The token
|
31892
|
-
#
|
32009
|
+
# The token returned from a previous paginated request. Pagination
|
32010
|
+
# continues from the end of the items returned by the previous request.
|
31893
32011
|
#
|
31894
32012
|
# @option params [required, String] :vpc_id
|
31895
32013
|
# The ID of the VPC.
|
@@ -32165,12 +32283,17 @@ module Aws::EC2
|
|
32165
32283
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
32166
32284
|
#
|
32167
32285
|
# @option params [String] :next_token
|
32168
|
-
# The token
|
32286
|
+
# The token returned from a previous paginated request. Pagination
|
32287
|
+
# continues from the end of the items returned by the previous request.
|
32169
32288
|
#
|
32170
32289
|
# @option params [Integer] :max_results
|
32171
|
-
# The maximum number of
|
32172
|
-
#
|
32173
|
-
#
|
32290
|
+
# The maximum number of items to return for this request. To get the
|
32291
|
+
# next page of items, make another request with the token returned in
|
32292
|
+
# the output. For more information, see [Pagination][1].
|
32293
|
+
#
|
32294
|
+
#
|
32295
|
+
#
|
32296
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
32174
32297
|
#
|
32175
32298
|
# @return [Types::DescribeSubnetsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
32176
32299
|
#
|
@@ -32314,12 +32437,18 @@ module Aws::EC2
|
|
32314
32437
|
# * `value` - The tag value.
|
32315
32438
|
#
|
32316
32439
|
# @option params [Integer] :max_results
|
32317
|
-
# The maximum number of
|
32318
|
-
#
|
32319
|
-
#
|
32440
|
+
# The maximum number of items to return for this request. This value can
|
32441
|
+
# be between 5 and 1000. To get the next page of items, make another
|
32442
|
+
# request with the token returned in the output. For more information,
|
32443
|
+
# see [Pagination][1].
|
32444
|
+
#
|
32445
|
+
#
|
32446
|
+
#
|
32447
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
32320
32448
|
#
|
32321
32449
|
# @option params [String] :next_token
|
32322
|
-
# The token
|
32450
|
+
# The token returned from a previous paginated request. Pagination
|
32451
|
+
# continues from the end of the items returned by the previous request.
|
32323
32452
|
#
|
32324
32453
|
# @return [Types::DescribeTagsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
32325
32454
|
#
|
@@ -34145,22 +34274,21 @@ module Aws::EC2
|
|
34145
34274
|
# `impaired` \| `warning` \| `insufficient-data`).
|
34146
34275
|
#
|
34147
34276
|
# @option params [Integer] :max_results
|
34148
|
-
# The maximum number of
|
34149
|
-
#
|
34150
|
-
#
|
34151
|
-
#
|
34152
|
-
#
|
34153
|
-
#
|
34154
|
-
#
|
34155
|
-
#
|
34156
|
-
#
|
34157
|
-
#
|
34277
|
+
# The maximum number of items to return for this request. To get the
|
34278
|
+
# next page of items, make another request with the token returned in
|
34279
|
+
# the output. This value can be between 5 and 1,000; if the value is
|
34280
|
+
# larger than 1,000, only 1,000 results are returned. If this parameter
|
34281
|
+
# is not used, then all items are returned. You cannot specify this
|
34282
|
+
# parameter and the volume IDs parameter in the same request. For more
|
34283
|
+
# information, see [Pagination][1].
|
34284
|
+
#
|
34285
|
+
#
|
34286
|
+
#
|
34287
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
34158
34288
|
#
|
34159
34289
|
# @option params [String] :next_token
|
34160
|
-
# The
|
34161
|
-
#
|
34162
|
-
# value can be used to retrieve the next page of results. This value is
|
34163
|
-
# `null` when there are no more results to return.
|
34290
|
+
# The token returned from a previous paginated request. Pagination
|
34291
|
+
# continues from the end of the items returned by the previous request.
|
34164
34292
|
#
|
34165
34293
|
# @option params [Array<String>] :volume_ids
|
34166
34294
|
# The IDs of the volumes.
|
@@ -34294,19 +34422,16 @@ module Aws::EC2
|
|
34294
34422
|
# Describes the specified EBS volumes or all of your EBS volumes.
|
34295
34423
|
#
|
34296
34424
|
# If you are describing a long list of volumes, we recommend that you
|
34297
|
-
# paginate the output to make the list more manageable.
|
34298
|
-
#
|
34299
|
-
# page. If the list of results exceeds your `MaxResults` value, then
|
34300
|
-
# that number of results is returned along with a `NextToken` value that
|
34301
|
-
# can be passed to a subsequent `DescribeVolumes` request to retrieve
|
34302
|
-
# the remaining results.
|
34425
|
+
# paginate the output to make the list more manageable. For more
|
34426
|
+
# information, see [Pagination][1].
|
34303
34427
|
#
|
34304
|
-
# For more information about EBS volumes, see [Amazon EBS volumes][
|
34428
|
+
# For more information about EBS volumes, see [Amazon EBS volumes][2] in
|
34305
34429
|
# the *Amazon Elastic Compute Cloud User Guide*.
|
34306
34430
|
#
|
34307
34431
|
#
|
34308
34432
|
#
|
34309
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/
|
34433
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
34434
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumes.html
|
34310
34435
|
#
|
34311
34436
|
# @option params [Array<Types::Filter>] :filters
|
34312
34437
|
# The filters.
|
@@ -34373,23 +34498,21 @@ module Aws::EC2
|
|
34373
34498
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
34374
34499
|
#
|
34375
34500
|
# @option params [Integer] :max_results
|
34376
|
-
# The maximum number of
|
34377
|
-
#
|
34378
|
-
#
|
34379
|
-
#
|
34380
|
-
#
|
34381
|
-
#
|
34382
|
-
#
|
34383
|
-
#
|
34384
|
-
#
|
34385
|
-
#
|
34501
|
+
# The maximum number of volumes to return for this request. This value
|
34502
|
+
# can be between 5 and 500; if you specify a value larger than 500, only
|
34503
|
+
# 500 items are returned. If this parameter is not used, then all items
|
34504
|
+
# are returned. You cannot specify this parameter and the volume IDs
|
34505
|
+
# parameter in the same request. For more information, see
|
34506
|
+
# [Pagination][1].
|
34507
|
+
#
|
34508
|
+
#
|
34509
|
+
#
|
34510
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
34386
34511
|
#
|
34387
34512
|
# @option params [String] :next_token
|
34388
|
-
# The
|
34389
|
-
#
|
34390
|
-
#
|
34391
|
-
# end of the previous results that returned the `NextToken` value. This
|
34392
|
-
# value is `null` when there are no more results to return.
|
34513
|
+
# The token returned from a previous paginated request. Pagination
|
34514
|
+
# continues from the end of the items returned from the previous
|
34515
|
+
# request.
|
34393
34516
|
#
|
34394
34517
|
# @return [Types::DescribeVolumesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
34395
34518
|
#
|
@@ -34597,11 +34720,16 @@ module Aws::EC2
|
|
34597
34720
|
# * `volume-id` - The ID of the volume.
|
34598
34721
|
#
|
34599
34722
|
# @option params [String] :next_token
|
34600
|
-
# The
|
34723
|
+
# The token returned by a previous paginated request. Pagination
|
34724
|
+
# continues from the end of the items returned by the previous request.
|
34601
34725
|
#
|
34602
34726
|
# @option params [Integer] :max_results
|
34603
34727
|
# The maximum number of results (up to a limit of 500) to be returned in
|
34604
|
-
# a paginated request.
|
34728
|
+
# a paginated request. For more information, see [Pagination][1].
|
34729
|
+
#
|
34730
|
+
#
|
34731
|
+
#
|
34732
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
34605
34733
|
#
|
34606
34734
|
# @return [Types::DescribeVolumesModificationsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
34607
34735
|
#
|
@@ -34834,12 +34962,17 @@ module Aws::EC2
|
|
34834
34962
|
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-classiclink.html
|
34835
34963
|
#
|
34836
34964
|
# @option params [Integer] :max_results
|
34837
|
-
# The maximum number of
|
34838
|
-
#
|
34839
|
-
#
|
34965
|
+
# The maximum number of items to return for this request. To get the
|
34966
|
+
# next page of items, make another request with the token returned in
|
34967
|
+
# the output. For more information, see [Pagination][1].
|
34968
|
+
#
|
34969
|
+
#
|
34970
|
+
#
|
34971
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
34840
34972
|
#
|
34841
34973
|
# @option params [String] :next_token
|
34842
|
-
# The token
|
34974
|
+
# The token returned from a previous paginated request. Pagination
|
34975
|
+
# continues from the end of the items returned by the previous request.
|
34843
34976
|
#
|
34844
34977
|
# @option params [Array<String>] :vpc_ids
|
34845
34978
|
# One or more VPC IDs.
|
@@ -35508,12 +35641,17 @@ module Aws::EC2
|
|
35508
35641
|
# Default: Describes all your VPC peering connections.
|
35509
35642
|
#
|
35510
35643
|
# @option params [String] :next_token
|
35511
|
-
# The token
|
35644
|
+
# The token returned from a previous paginated request. Pagination
|
35645
|
+
# continues from the end of the items returned by the previous request.
|
35512
35646
|
#
|
35513
35647
|
# @option params [Integer] :max_results
|
35514
|
-
# The maximum number of
|
35515
|
-
#
|
35516
|
-
#
|
35648
|
+
# The maximum number of items to return for this request. To get the
|
35649
|
+
# next page of items, make another request with the token returned in
|
35650
|
+
# the output. For more information, see [Pagination][1].
|
35651
|
+
#
|
35652
|
+
#
|
35653
|
+
#
|
35654
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
35517
35655
|
#
|
35518
35656
|
# @return [Types::DescribeVpcPeeringConnectionsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
35519
35657
|
#
|
@@ -35650,12 +35788,17 @@ module Aws::EC2
|
|
35650
35788
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
35651
35789
|
#
|
35652
35790
|
# @option params [String] :next_token
|
35653
|
-
# The token
|
35791
|
+
# The token returned from a previous paginated request. Pagination
|
35792
|
+
# continues from the end of the items returned by the previous request.
|
35654
35793
|
#
|
35655
35794
|
# @option params [Integer] :max_results
|
35656
|
-
# The maximum number of
|
35657
|
-
#
|
35658
|
-
#
|
35795
|
+
# The maximum number of items to return for this request. To get the
|
35796
|
+
# next page of items, make another request with the token returned in
|
35797
|
+
# the output. For more information, see [Pagination][1].
|
35798
|
+
#
|
35799
|
+
#
|
35800
|
+
#
|
35801
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
35659
35802
|
#
|
35660
35803
|
# @return [Types::DescribeVpcsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
35661
35804
|
#
|
@@ -37102,11 +37245,11 @@ module Aws::EC2
|
|
37102
37245
|
# used to encrypt the private key. This effectively revokes the role's
|
37103
37246
|
# permission to use the certificate.
|
37104
37247
|
#
|
37105
|
-
# @option params [String] :certificate_arn
|
37248
|
+
# @option params [required, String] :certificate_arn
|
37106
37249
|
# The ARN of the ACM certificate from which to disassociate the IAM
|
37107
37250
|
# role.
|
37108
37251
|
#
|
37109
|
-
# @option params [String] :role_arn
|
37252
|
+
# @option params [required, String] :role_arn
|
37110
37253
|
# The ARN of the IAM role to disassociate.
|
37111
37254
|
#
|
37112
37255
|
# @option params [Boolean] :dry_run
|
@@ -37122,8 +37265,8 @@ module Aws::EC2
|
|
37122
37265
|
# @example Request syntax with placeholder values
|
37123
37266
|
#
|
37124
37267
|
# resp = client.disassociate_enclave_certificate_iam_role({
|
37125
|
-
# certificate_arn: "CertificateId",
|
37126
|
-
# role_arn: "RoleId",
|
37268
|
+
# certificate_arn: "CertificateId", # required
|
37269
|
+
# role_arn: "RoleId", # required
|
37127
37270
|
# dry_run: false,
|
37128
37271
|
# })
|
37129
37272
|
#
|
@@ -37272,8 +37415,8 @@ module Aws::EC2
|
|
37272
37415
|
end
|
37273
37416
|
|
37274
37417
|
# Disassociates a resource discovery from an Amazon VPC IPAM. A resource
|
37275
|
-
# discovery is an IPAM component that enables IPAM
|
37276
|
-
#
|
37418
|
+
# discovery is an IPAM component that enables IPAM to manage and monitor
|
37419
|
+
# resources that belong to the owning account.
|
37277
37420
|
#
|
37278
37421
|
# @option params [Boolean] :dry_run
|
37279
37422
|
# A check for whether you have the required permissions for the action
|
@@ -37481,13 +37624,13 @@ module Aws::EC2
|
|
37481
37624
|
# Disassociates the specified subnets from the transit gateway multicast
|
37482
37625
|
# domain.
|
37483
37626
|
#
|
37484
|
-
# @option params [String] :transit_gateway_multicast_domain_id
|
37627
|
+
# @option params [required, String] :transit_gateway_multicast_domain_id
|
37485
37628
|
# The ID of the transit gateway multicast domain.
|
37486
37629
|
#
|
37487
|
-
# @option params [String] :transit_gateway_attachment_id
|
37630
|
+
# @option params [required, String] :transit_gateway_attachment_id
|
37488
37631
|
# The ID of the attachment.
|
37489
37632
|
#
|
37490
|
-
# @option params [Array<String>] :subnet_ids
|
37633
|
+
# @option params [required, Array<String>] :subnet_ids
|
37491
37634
|
# The IDs of the subnets;
|
37492
37635
|
#
|
37493
37636
|
# @option params [Boolean] :dry_run
|
@@ -37503,9 +37646,9 @@ module Aws::EC2
|
|
37503
37646
|
# @example Request syntax with placeholder values
|
37504
37647
|
#
|
37505
37648
|
# resp = client.disassociate_transit_gateway_multicast_domain({
|
37506
|
-
# transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId",
|
37507
|
-
# transit_gateway_attachment_id: "TransitGatewayAttachmentId",
|
37508
|
-
# subnet_ids: ["SubnetId"],
|
37649
|
+
# transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId", # required
|
37650
|
+
# transit_gateway_attachment_id: "TransitGatewayAttachmentId", # required
|
37651
|
+
# subnet_ids: ["SubnetId"], # required
|
37509
37652
|
# dry_run: false,
|
37510
37653
|
# })
|
37511
37654
|
#
|
@@ -38720,7 +38863,7 @@ module Aws::EC2
|
|
38720
38863
|
# encrypted private key bundle are stored, and the ARN of the KMS key
|
38721
38864
|
# that's used to encrypt the private key.
|
38722
38865
|
#
|
38723
|
-
# @option params [String] :certificate_arn
|
38866
|
+
# @option params [required, String] :certificate_arn
|
38724
38867
|
# The ARN of the ACM certificate for which to view the associated IAM
|
38725
38868
|
# roles, encryption keys, and Amazon S3 object information.
|
38726
38869
|
#
|
@@ -38737,7 +38880,7 @@ module Aws::EC2
|
|
38737
38880
|
# @example Request syntax with placeholder values
|
38738
38881
|
#
|
38739
38882
|
# resp = client.get_associated_enclave_certificate_iam_roles({
|
38740
|
-
# certificate_arn: "CertificateId",
|
38883
|
+
# certificate_arn: "CertificateId", # required
|
38741
38884
|
# dry_run: false,
|
38742
38885
|
# })
|
38743
38886
|
#
|
@@ -40025,8 +40168,8 @@ module Aws::EC2
|
|
40025
40168
|
# Returns resource CIDRs managed by IPAM in a given scope. If an IPAM is
|
40026
40169
|
# associated with more than one resource discovery, the resource CIDRs
|
40027
40170
|
# across all of the resource discoveries is returned. A resource
|
40028
|
-
# discovery is an IPAM component that enables IPAM
|
40029
|
-
#
|
40171
|
+
# discovery is an IPAM component that enables IPAM to manage and monitor
|
40172
|
+
# resources that belong to the owning account.
|
40030
40173
|
#
|
40031
40174
|
# @option params [Boolean] :dry_run
|
40032
40175
|
# A check for whether you have the required permissions for the action
|
@@ -41395,7 +41538,7 @@ module Aws::EC2
|
|
41395
41538
|
# Gets information about the associations for the transit gateway
|
41396
41539
|
# multicast domain.
|
41397
41540
|
#
|
41398
|
-
# @option params [String] :transit_gateway_multicast_domain_id
|
41541
|
+
# @option params [required, String] :transit_gateway_multicast_domain_id
|
41399
41542
|
# The ID of the transit gateway multicast domain.
|
41400
41543
|
#
|
41401
41544
|
# @option params [Array<Types::Filter>] :filters
|
@@ -41438,7 +41581,7 @@ module Aws::EC2
|
|
41438
41581
|
# @example Request syntax with placeholder values
|
41439
41582
|
#
|
41440
41583
|
# resp = client.get_transit_gateway_multicast_domain_associations({
|
41441
|
-
# transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId",
|
41584
|
+
# transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId", # required
|
41442
41585
|
# filters: [
|
41443
41586
|
# {
|
41444
41587
|
# name: "String",
|
@@ -42852,12 +42995,17 @@ module Aws::EC2
|
|
42852
42995
|
# Lists one or more snapshots that are currently in the Recycle Bin.
|
42853
42996
|
#
|
42854
42997
|
# @option params [Integer] :max_results
|
42855
|
-
# The maximum number of
|
42856
|
-
#
|
42857
|
-
#
|
42998
|
+
# The maximum number of items to return for this request. To get the
|
42999
|
+
# next page of items, make another request with the token returned in
|
43000
|
+
# the output. For more information, see [Pagination][1].
|
43001
|
+
#
|
43002
|
+
#
|
43003
|
+
#
|
43004
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
42858
43005
|
#
|
42859
43006
|
# @option params [String] :next_token
|
42860
|
-
# The token
|
43007
|
+
# The token returned from a previous paginated request. Pagination
|
43008
|
+
# continues from the end of the items returned by the previous request.
|
42861
43009
|
#
|
42862
43010
|
# @option params [Array<String>] :snapshot_ids
|
42863
43011
|
# The IDs of the snapshots to list. Omit this parameter to list all of
|
@@ -43486,6 +43634,8 @@ module Aws::EC2
|
|
43486
43634
|
# target capacity of the EC2 Fleet is decreased below the current size
|
43487
43635
|
# of the EC2 Fleet.
|
43488
43636
|
#
|
43637
|
+
# Supported only for fleets of type `maintain`.
|
43638
|
+
#
|
43489
43639
|
# @option params [Array<Types::FleetLaunchTemplateConfigRequest>] :launch_template_configs
|
43490
43640
|
# The launch template and overrides.
|
43491
43641
|
#
|
@@ -44402,7 +44552,7 @@ module Aws::EC2
|
|
44402
44552
|
# client_token: "String",
|
44403
44553
|
# instance_credit_specifications: [ # required
|
44404
44554
|
# {
|
44405
|
-
# instance_id: "InstanceId",
|
44555
|
+
# instance_id: "InstanceId", # required
|
44406
44556
|
# cpu_credits: "String",
|
44407
44557
|
# },
|
44408
44558
|
# ],
|
@@ -45149,8 +45299,8 @@ module Aws::EC2
|
|
45149
45299
|
end
|
45150
45300
|
|
45151
45301
|
# Modifies a resource discovery. A resource discovery is an IPAM
|
45152
|
-
# component that enables IPAM
|
45153
|
-
#
|
45302
|
+
# component that enables IPAM to manage and monitor resources that
|
45303
|
+
# belong to the owning account.
|
45154
45304
|
#
|
45155
45305
|
# @option params [Boolean] :dry_run
|
45156
45306
|
# A check for whether you have the required permissions for the action
|
@@ -45646,7 +45796,7 @@ module Aws::EC2
|
|
45646
45796
|
# If you have the required permissions, the error response is
|
45647
45797
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
45648
45798
|
#
|
45649
|
-
# @option params [String] :instance_id
|
45799
|
+
# @option params [required, String] :instance_id
|
45650
45800
|
# The ID of the instance.
|
45651
45801
|
#
|
45652
45802
|
# @option params [String] :private_dns_hostname_type
|
@@ -45672,7 +45822,7 @@ module Aws::EC2
|
|
45672
45822
|
#
|
45673
45823
|
# resp = client.modify_private_dns_name_options({
|
45674
45824
|
# dry_run: false,
|
45675
|
-
# instance_id: "InstanceId",
|
45825
|
+
# instance_id: "InstanceId", # required
|
45676
45826
|
# private_dns_hostname_type: "ip-name", # accepts ip-name, resource-name
|
45677
45827
|
# enable_resource_name_dns_a_record: false,
|
45678
45828
|
# enable_resource_name_dns_aaaa_record: false,
|
@@ -45783,7 +45933,7 @@ module Aws::EC2
|
|
45783
45933
|
# group_id: "SecurityGroupId", # required
|
45784
45934
|
# security_group_rules: [ # required
|
45785
45935
|
# {
|
45786
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
45936
|
+
# security_group_rule_id: "SecurityGroupRuleId", # required
|
45787
45937
|
# security_group_rule: {
|
45788
45938
|
# ip_protocol: "String",
|
45789
45939
|
# from_port: 1,
|
@@ -46013,9 +46163,11 @@ module Aws::EC2
|
|
46013
46163
|
# again later, you can set the target capacity to 0.
|
46014
46164
|
#
|
46015
46165
|
# @option params [String] :excess_capacity_termination_policy
|
46016
|
-
# Indicates whether running
|
46017
|
-
#
|
46018
|
-
#
|
46166
|
+
# Indicates whether running instances should be terminated if the target
|
46167
|
+
# capacity of the Spot Fleet request is decreased below the current size
|
46168
|
+
# of the Spot Fleet.
|
46169
|
+
#
|
46170
|
+
# Supported only for fleets of type `maintain`.
|
46019
46171
|
#
|
46020
46172
|
# @option params [Array<Types::LaunchTemplateConfig>] :launch_template_configs
|
46021
46173
|
# The launch template and overrides. You can only use this parameter if
|
@@ -49720,13 +49872,13 @@ module Aws::EC2
|
|
49720
49872
|
# [1]: https://docs.aws.amazon.com/vpc/latest/tgw/transit-gateway-limits.html#multicast-limits
|
49721
49873
|
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_SearchTransitGatewayMulticastGroups.html
|
49722
49874
|
#
|
49723
|
-
# @option params [String] :transit_gateway_multicast_domain_id
|
49875
|
+
# @option params [required, String] :transit_gateway_multicast_domain_id
|
49724
49876
|
# The ID of the transit gateway multicast domain.
|
49725
49877
|
#
|
49726
49878
|
# @option params [String] :group_ip_address
|
49727
49879
|
# The IP address assigned to the transit gateway multicast group.
|
49728
49880
|
#
|
49729
|
-
# @option params [Array<String>] :network_interface_ids
|
49881
|
+
# @option params [required, Array<String>] :network_interface_ids
|
49730
49882
|
# The group members' network interface IDs to register with the transit
|
49731
49883
|
# gateway multicast group.
|
49732
49884
|
#
|
@@ -49743,9 +49895,9 @@ module Aws::EC2
|
|
49743
49895
|
# @example Request syntax with placeholder values
|
49744
49896
|
#
|
49745
49897
|
# resp = client.register_transit_gateway_multicast_group_members({
|
49746
|
-
# transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId",
|
49898
|
+
# transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId", # required
|
49747
49899
|
# group_ip_address: "String",
|
49748
|
-
# network_interface_ids: ["NetworkInterfaceId"],
|
49900
|
+
# network_interface_ids: ["NetworkInterfaceId"], # required
|
49749
49901
|
# dry_run: false,
|
49750
49902
|
# })
|
49751
49903
|
#
|
@@ -49781,13 +49933,13 @@ module Aws::EC2
|
|
49781
49933
|
# [1]: https://docs.aws.amazon.com/vpc/latest/tgw/transit-gateway-limits.html#multicast-limits
|
49782
49934
|
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_SearchTransitGatewayMulticastGroups.html
|
49783
49935
|
#
|
49784
|
-
# @option params [String] :transit_gateway_multicast_domain_id
|
49936
|
+
# @option params [required, String] :transit_gateway_multicast_domain_id
|
49785
49937
|
# The ID of the transit gateway multicast domain.
|
49786
49938
|
#
|
49787
49939
|
# @option params [String] :group_ip_address
|
49788
49940
|
# The IP address assigned to the transit gateway multicast group.
|
49789
49941
|
#
|
49790
|
-
# @option params [Array<String>] :network_interface_ids
|
49942
|
+
# @option params [required, Array<String>] :network_interface_ids
|
49791
49943
|
# The group sources' network interface IDs to register with the transit
|
49792
49944
|
# gateway multicast group.
|
49793
49945
|
#
|
@@ -49804,9 +49956,9 @@ module Aws::EC2
|
|
49804
49956
|
# @example Request syntax with placeholder values
|
49805
49957
|
#
|
49806
49958
|
# resp = client.register_transit_gateway_multicast_group_sources({
|
49807
|
-
# transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId",
|
49959
|
+
# transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId", # required
|
49808
49960
|
# group_ip_address: "String",
|
49809
|
-
# network_interface_ids: ["NetworkInterfaceId"],
|
49961
|
+
# network_interface_ids: ["NetworkInterfaceId"], # required
|
49810
49962
|
# dry_run: false,
|
49811
49963
|
# })
|
49812
49964
|
#
|
@@ -51110,7 +51262,7 @@ module Aws::EC2
|
|
51110
51262
|
# ramdisk_id: "String",
|
51111
51263
|
# spot_price: "String",
|
51112
51264
|
# subnet_id: "SubnetId",
|
51113
|
-
# user_data: "
|
51265
|
+
# user_data: "SensitiveUserData",
|
51114
51266
|
# weighted_capacity: 1.0,
|
51115
51267
|
# tag_specifications: [
|
51116
51268
|
# {
|
@@ -51580,7 +51732,7 @@ module Aws::EC2
|
|
51580
51732
|
# },
|
51581
51733
|
# ramdisk_id: "RamdiskId",
|
51582
51734
|
# subnet_id: "SubnetId",
|
51583
|
-
# user_data: "
|
51735
|
+
# user_data: "SensitiveUserData",
|
51584
51736
|
# },
|
51585
51737
|
# spot_price: "String",
|
51586
51738
|
# type: "one-time", # accepts one-time, persistent
|
@@ -53824,7 +53976,7 @@ module Aws::EC2
|
|
53824
53976
|
# Searches one or more transit gateway multicast groups and returns the
|
53825
53977
|
# group membership information.
|
53826
53978
|
#
|
53827
|
-
# @option params [String] :transit_gateway_multicast_domain_id
|
53979
|
+
# @option params [required, String] :transit_gateway_multicast_domain_id
|
53828
53980
|
# The ID of the transit gateway multicast domain.
|
53829
53981
|
#
|
53830
53982
|
# @option params [Array<Types::Filter>] :filters
|
@@ -53879,7 +54031,7 @@ module Aws::EC2
|
|
53879
54031
|
# @example Request syntax with placeholder values
|
53880
54032
|
#
|
53881
54033
|
# resp = client.search_transit_gateway_multicast_groups({
|
53882
|
-
# transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId",
|
54034
|
+
# transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId", # required
|
53883
54035
|
# filters: [
|
53884
54036
|
# {
|
53885
54037
|
# name: "String",
|
@@ -55405,10 +55557,10 @@ module Aws::EC2
|
|
55405
55557
|
req.send_request(options)
|
55406
55558
|
end
|
55407
55559
|
|
55408
|
-
# Unassigns secondary private
|
55409
|
-
#
|
55410
|
-
#
|
55411
|
-
#
|
55560
|
+
# Unassigns secondary private IPv4 addresses from a private NAT gateway.
|
55561
|
+
# You cannot unassign your primary private IP. For more information, see
|
55562
|
+
# [Edit secondary IP address associations][1] in the *Amazon Virtual
|
55563
|
+
# Private Cloud User Guide*.
|
55412
55564
|
#
|
55413
55565
|
# While unassigning is in progress, you cannot assign/unassign
|
55414
55566
|
# additional IP addresses while the connections are being drained. You
|
@@ -55831,7 +55983,7 @@ module Aws::EC2
|
|
55831
55983
|
params: params,
|
55832
55984
|
config: config)
|
55833
55985
|
context[:gem_name] = 'aws-sdk-ec2'
|
55834
|
-
context[:gem_version] = '1.
|
55986
|
+
context[:gem_version] = '1.365.0'
|
55835
55987
|
Seahorse::Client::Request.new(handlers, context)
|
55836
55988
|
end
|
55837
55989
|
|
@@ -55921,6 +56073,7 @@ module Aws::EC2
|
|
55921
56073
|
# | password_data_available | {Client#get_password_data} | 15 | 40 |
|
55922
56074
|
# | security_group_exists | {Client#describe_security_groups} | 5 | 6 |
|
55923
56075
|
# | snapshot_completed | {Client#describe_snapshots} | 15 | 40 |
|
56076
|
+
# | snapshot_imported | {Client#describe_import_snapshot_tasks} | 15 | 40 |
|
55924
56077
|
# | spot_instance_request_fulfilled | {Client#describe_spot_instance_requests} | 15 | 40 |
|
55925
56078
|
# | subnet_available | {Client#describe_subnets} | 15 | 40 |
|
55926
56079
|
# | system_status_ok | {Client#describe_instance_status} | 15 | 40 |
|
@@ -56005,6 +56158,7 @@ module Aws::EC2
|
|
56005
56158
|
password_data_available: Waiters::PasswordDataAvailable,
|
56006
56159
|
security_group_exists: Waiters::SecurityGroupExists,
|
56007
56160
|
snapshot_completed: Waiters::SnapshotCompleted,
|
56161
|
+
snapshot_imported: Waiters::SnapshotImported,
|
56008
56162
|
spot_instance_request_fulfilled: Waiters::SpotInstanceRequestFulfilled,
|
56009
56163
|
subnet_available: Waiters::SubnetAvailable,
|
56010
56164
|
system_status_ok: Waiters::SystemStatusOk,
|