aws-sdk-ec2 1.151.0 → 1.152.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: da2101bb9c58f41962bc18496ee1b25cd5a69ac7752b3fc04e5cbc170eadf51d
4
- data.tar.gz: fd937bce8698e9578c610c5c747207345677d09e0d0ef33209995ebe821cd724
3
+ metadata.gz: 291b056c3963898df9ae240f729574e7fc7538e44489147b41959424c8346a5a
4
+ data.tar.gz: 5555b2b10549cf1f90a70e12cf5a7a794a878ce3e831c53bc15d0bba40b48346
5
5
  SHA512:
6
- metadata.gz: a0b3fa7c665eb61c3bcd12cec31eb18e55393dd999669f23cd4582d4c9ebf69cb04ce1c91a31cfeeb451e89be1747b1fd29c73cc79df8c2cb6d8e0b96282d0c5
7
- data.tar.gz: 8ee1dfb1b7669f633a78f9b704c32378f7b126677fda84c8b1ccfeaae6b4585b0690babeb6cc0fcf833476cb43a8efed26b167784cd5cf0b0e5589160616e27d
6
+ metadata.gz: 459862c2f67231baaa0bdb4a9cbb985626a2f535af224372c7f68ddf595e21bbed11ea2f763f04d6863a254151354eb65dac4afa4e92f248e32befe57980457f
7
+ data.tar.gz: df9b271ccc0213ccd0e94cfa1cef8b002b9476175a350c328afbce687e163cbb4c6bba0d76ac0cc6a214f6a22a5a58dde0bd246232308481a46d3e4f579d0175
@@ -69,6 +69,6 @@ require_relative 'aws-sdk-ec2/customizations'
69
69
  # @service
70
70
  module Aws::EC2
71
71
 
72
- GEM_VERSION = '1.151.0'
72
+ GEM_VERSION = '1.152.0'
73
73
 
74
74
  end
@@ -147,7 +147,8 @@ module Aws::EC2
147
147
  # Waiter polls an API operation until a resource enters a desired
148
148
  # state.
149
149
  #
150
- # @note The waiting operation is performed on a copy. The original resource remains unchanged
150
+ # @note The waiting operation is performed on a copy. The original resource
151
+ # remains unchanged.
151
152
  #
152
153
  # ## Basic Usage
153
154
  #
@@ -160,13 +161,15 @@ module Aws::EC2
160
161
  #
161
162
  # ## Example
162
163
  #
163
- # instance.wait_until(max_attempts:10, delay:5) {|instance| instance.state.name == 'running' }
164
+ # instance.wait_until(max_attempts:10, delay:5) do |instance|
165
+ # instance.state.name == 'running'
166
+ # end
164
167
  #
165
168
  # ## Configuration
166
169
  #
167
170
  # You can configure the maximum number of polling attempts, and the
168
- # delay (in seconds) between each polling attempt. The waiting condition is set
169
- # by passing a block to {#wait_until}:
171
+ # delay (in seconds) between each polling attempt. The waiting condition is
172
+ # set by passing a block to {#wait_until}:
170
173
  #
171
174
  # # poll for ~25 seconds
172
175
  # resource.wait_until(max_attempts:5,delay:5) {|resource|...}
@@ -197,17 +200,16 @@ module Aws::EC2
197
200
  # # resource did not enter the desired state in time
198
201
  # end
199
202
  #
203
+ # @yieldparam [Resource] resource to be used in the waiting condition.
200
204
  #
201
- # @yield param [Resource] resource to be used in the waiting condition
202
- #
203
- # @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter terminates
204
- # because the waiter has entered a state that it will not transition
205
- # out of, preventing success.
205
+ # @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter
206
+ # terminates because the waiter has entered a state that it will not
207
+ # transition out of, preventing success.
206
208
  #
207
209
  # yet successful.
208
210
  #
209
- # @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is encountered
210
- # while polling for a resource that is not expected.
211
+ # @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
212
+ # encountered while polling for a resource that is not expected.
211
213
  #
212
214
  # @raise [NotImplementedError] Raised when the resource does not
213
215
  #
@@ -273,8 +273,7 @@ module Aws::EC2
273
273
  #
274
274
  # @option options [Integer] :http_read_timeout (60) The default
275
275
  # number of seconds to wait for response data. This value can
276
- # safely be set
277
- # per-request on the session yielded by {#session_for}.
276
+ # safely be set per-request on the session.
278
277
  #
279
278
  # @option options [Float] :http_idle_timeout (5) The number of
280
279
  # seconds a connection is allowed to sit idle before it is
@@ -286,7 +285,7 @@ module Aws::EC2
286
285
  # request body. This option has no effect unless the request has
287
286
  # "Expect" header set to "100-continue". Defaults to `nil` which
288
287
  # disables this behaviour. This value can safely be set per
289
- # request on the session yielded by {#session_for}.
288
+ # request on the session.
290
289
  #
291
290
  # @option options [Boolean] :http_wire_trace (false) When `true`,
292
291
  # HTTP debug output will be sent to the `:logger`.
@@ -11718,6 +11717,55 @@ module Aws::EC2
11718
11717
  req.send_request(options)
11719
11718
  end
11720
11719
 
11720
+ # Deregisters tag keys to prevent tags that have the specified tag keys
11721
+ # from being included in scheduled event notifications for resources in
11722
+ # the Region.
11723
+ #
11724
+ # For more information, see [Customizing Scheduled Event
11725
+ # Notifications][1].
11726
+ #
11727
+ #
11728
+ #
11729
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/monitoring-instances-status-check_sched.html#customizing_scheduled_event_notifications
11730
+ #
11731
+ # @option params [Boolean] :dry_run
11732
+ # Checks whether you have the required permissions for the action,
11733
+ # without actually making the request, and provides an error response.
11734
+ # If you have the required permissions, the error response is
11735
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
11736
+ #
11737
+ # @option params [Types::DeregisterInstanceTagAttributeRequest] :instance_tag_attribute
11738
+ # Information about the tag keys to deregister.
11739
+ #
11740
+ # @return [Types::DeregisterInstanceEventNotificationAttributesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11741
+ #
11742
+ # * {Types::DeregisterInstanceEventNotificationAttributesResult#instance_tag_attribute #instance_tag_attribute} => Types::InstanceTagNotificationAttribute
11743
+ #
11744
+ # @example Request syntax with placeholder values
11745
+ #
11746
+ # resp = client.deregister_instance_event_notification_attributes({
11747
+ # dry_run: false,
11748
+ # instance_tag_attribute: {
11749
+ # include_all_tags_of_instance: false,
11750
+ # instance_tag_keys: ["String"],
11751
+ # },
11752
+ # })
11753
+ #
11754
+ # @example Response structure
11755
+ #
11756
+ # resp.instance_tag_attribute.instance_tag_keys #=> Array
11757
+ # resp.instance_tag_attribute.instance_tag_keys[0] #=> String
11758
+ # resp.instance_tag_attribute.include_all_tags_of_instance #=> Boolean
11759
+ #
11760
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeregisterInstanceEventNotificationAttributes AWS API Documentation
11761
+ #
11762
+ # @overload deregister_instance_event_notification_attributes(params = {})
11763
+ # @param [Hash] params ({})
11764
+ def deregister_instance_event_notification_attributes(params = {}, options = {})
11765
+ req = build_request(:deregister_instance_event_notification_attributes, params)
11766
+ req.send_request(options)
11767
+ end
11768
+
11721
11769
  # Deregisters the specified members (network interfaces) from the
11722
11770
  # transit gateway multicast group.
11723
11771
  #
@@ -12436,6 +12484,11 @@ module Aws::EC2
12436
12484
  # resp.bundle_tasks[0].storage.s3.upload_policy_signature #=> String
12437
12485
  # resp.bundle_tasks[0].update_time #=> Time
12438
12486
  #
12487
+ #
12488
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
12489
+ #
12490
+ # * bundle_task_complete
12491
+ #
12439
12492
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeBundleTasks AWS API Documentation
12440
12493
  #
12441
12494
  # @overload describe_bundle_tasks(params = {})
@@ -12470,6 +12523,8 @@ module Aws::EC2
12470
12523
  # * {Types::DescribeByoipCidrsResult#byoip_cidrs #byoip_cidrs} => Array<Types::ByoipCidr>
12471
12524
  # * {Types::DescribeByoipCidrsResult#next_token #next_token} => String
12472
12525
  #
12526
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
12527
+ #
12473
12528
  # @example Request syntax with placeholder values
12474
12529
  #
12475
12530
  # resp = client.describe_byoip_cidrs({
@@ -12601,6 +12656,8 @@ module Aws::EC2
12601
12656
  # * {Types::DescribeCapacityReservationsResult#next_token #next_token} => String
12602
12657
  # * {Types::DescribeCapacityReservationsResult#capacity_reservations #capacity_reservations} => Array<Types::CapacityReservation>
12603
12658
  #
12659
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
12660
+ #
12604
12661
  # @example Request syntax with placeholder values
12605
12662
  #
12606
12663
  # resp = client.describe_capacity_reservations({
@@ -12703,6 +12760,8 @@ module Aws::EC2
12703
12760
  # * {Types::DescribeClassicLinkInstancesResult#instances #instances} => Array<Types::ClassicLinkInstance>
12704
12761
  # * {Types::DescribeClassicLinkInstancesResult#next_token #next_token} => String
12705
12762
  #
12763
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
12764
+ #
12706
12765
  # @example Request syntax with placeholder values
12707
12766
  #
12708
12767
  # resp = client.describe_classic_link_instances({
@@ -12775,6 +12834,8 @@ module Aws::EC2
12775
12834
  # * {Types::DescribeClientVpnAuthorizationRulesResult#authorization_rules #authorization_rules} => Array<Types::AuthorizationRule>
12776
12835
  # * {Types::DescribeClientVpnAuthorizationRulesResult#next_token #next_token} => String
12777
12836
  #
12837
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
12838
+ #
12778
12839
  # @example Request syntax with placeholder values
12779
12840
  #
12780
12841
  # resp = client.describe_client_vpn_authorization_rules({
@@ -12845,6 +12906,8 @@ module Aws::EC2
12845
12906
  # * {Types::DescribeClientVpnConnectionsResult#connections #connections} => Array<Types::ClientVpnConnection>
12846
12907
  # * {Types::DescribeClientVpnConnectionsResult#next_token #next_token} => String
12847
12908
  #
12909
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
12910
+ #
12848
12911
  # @example Request syntax with placeholder values
12849
12912
  #
12850
12913
  # resp = client.describe_client_vpn_connections({
@@ -12919,6 +12982,8 @@ module Aws::EC2
12919
12982
  # * {Types::DescribeClientVpnEndpointsResult#client_vpn_endpoints #client_vpn_endpoints} => Array<Types::ClientVpnEndpoint>
12920
12983
  # * {Types::DescribeClientVpnEndpointsResult#next_token #next_token} => String
12921
12984
  #
12985
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
12986
+ #
12922
12987
  # @example Request syntax with placeholder values
12923
12988
  #
12924
12989
  # resp = client.describe_client_vpn_endpoints({
@@ -13014,6 +13079,8 @@ module Aws::EC2
13014
13079
  # * {Types::DescribeClientVpnRoutesResult#routes #routes} => Array<Types::ClientVpnRoute>
13015
13080
  # * {Types::DescribeClientVpnRoutesResult#next_token #next_token} => String
13016
13081
  #
13082
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
13083
+ #
13017
13084
  # @example Request syntax with placeholder values
13018
13085
  #
13019
13086
  # resp = client.describe_client_vpn_routes({
@@ -13089,6 +13156,8 @@ module Aws::EC2
13089
13156
  # * {Types::DescribeClientVpnTargetNetworksResult#client_vpn_target_networks #client_vpn_target_networks} => Array<Types::TargetNetwork>
13090
13157
  # * {Types::DescribeClientVpnTargetNetworksResult#next_token #next_token} => String
13091
13158
  #
13159
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
13160
+ #
13092
13161
  # @example Request syntax with placeholder values
13093
13162
  #
13094
13163
  # resp = client.describe_client_vpn_target_networks({
@@ -13164,6 +13233,8 @@ module Aws::EC2
13164
13233
  # * {Types::DescribeCoipPoolsResult#coip_pools #coip_pools} => Array<Types::CoipPool>
13165
13234
  # * {Types::DescribeCoipPoolsResult#next_token #next_token} => String
13166
13235
  #
13236
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
13237
+ #
13167
13238
  # @example Request syntax with placeholder values
13168
13239
  #
13169
13240
  # resp = client.describe_coip_pools({
@@ -13266,6 +13337,13 @@ module Aws::EC2
13266
13337
  # resp.conversion_tasks[0].tags[0].key #=> String
13267
13338
  # resp.conversion_tasks[0].tags[0].value #=> String
13268
13339
  #
13340
+ #
13341
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
13342
+ #
13343
+ # * conversion_task_cancelled
13344
+ # * conversion_task_completed
13345
+ # * conversion_task_deleted
13346
+ #
13269
13347
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeConversionTasks AWS API Documentation
13270
13348
  #
13271
13349
  # @overload describe_conversion_tasks(params = {})
@@ -13377,6 +13455,11 @@ module Aws::EC2
13377
13455
  # resp.customer_gateways[0].tags[0].key #=> String
13378
13456
  # resp.customer_gateways[0].tags[0].value #=> String
13379
13457
  #
13458
+ #
13459
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
13460
+ #
13461
+ # * customer_gateway_available
13462
+ #
13380
13463
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCustomerGateways AWS API Documentation
13381
13464
  #
13382
13465
  # @overload describe_customer_gateways(params = {})
@@ -13441,6 +13524,8 @@ module Aws::EC2
13441
13524
  # * {Types::DescribeDhcpOptionsResult#dhcp_options #dhcp_options} => Array<Types::DhcpOptions>
13442
13525
  # * {Types::DescribeDhcpOptionsResult#next_token #next_token} => String
13443
13526
  #
13527
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
13528
+ #
13444
13529
  #
13445
13530
  # @example Example: To describe a DHCP options set
13446
13531
  #
@@ -13549,6 +13634,8 @@ module Aws::EC2
13549
13634
  # * {Types::DescribeEgressOnlyInternetGatewaysResult#egress_only_internet_gateways #egress_only_internet_gateways} => Array<Types::EgressOnlyInternetGateway>
13550
13635
  # * {Types::DescribeEgressOnlyInternetGatewaysResult#next_token #next_token} => String
13551
13636
  #
13637
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
13638
+ #
13552
13639
  # @example Request syntax with placeholder values
13553
13640
  #
13554
13641
  # resp = client.describe_egress_only_internet_gateways({
@@ -13700,6 +13787,8 @@ module Aws::EC2
13700
13787
  # * {Types::DescribeExportImageTasksResult#export_image_tasks #export_image_tasks} => Array<Types::ExportImageTask>
13701
13788
  # * {Types::DescribeExportImageTasksResult#next_token #next_token} => String
13702
13789
  #
13790
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
13791
+ #
13703
13792
  # @example Request syntax with placeholder values
13704
13793
  #
13705
13794
  # resp = client.describe_export_image_tasks({
@@ -13779,6 +13868,12 @@ module Aws::EC2
13779
13868
  # resp.export_tasks[0].tags[0].key #=> String
13780
13869
  # resp.export_tasks[0].tags[0].value #=> String
13781
13870
  #
13871
+ #
13872
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
13873
+ #
13874
+ # * export_task_cancelled
13875
+ # * export_task_completed
13876
+ #
13782
13877
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeExportTasks AWS API Documentation
13783
13878
  #
13784
13879
  # @overload describe_export_tasks(params = {})
@@ -13822,6 +13917,8 @@ module Aws::EC2
13822
13917
  # * {Types::DescribeFastSnapshotRestoresResult#fast_snapshot_restores #fast_snapshot_restores} => Array<Types::DescribeFastSnapshotRestoreSuccessItem>
13823
13918
  # * {Types::DescribeFastSnapshotRestoresResult#next_token #next_token} => String
13824
13919
  #
13920
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
13921
+ #
13825
13922
  # @example Request syntax with placeholder values
13826
13923
  #
13827
13924
  # resp = client.describe_fast_snapshot_restores({
@@ -14046,6 +14143,8 @@ module Aws::EC2
14046
14143
  # * {Types::DescribeFleetsResult#next_token #next_token} => String
14047
14144
  # * {Types::DescribeFleetsResult#fleets #fleets} => Array<Types::FleetData>
14048
14145
  #
14146
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
14147
+ #
14049
14148
  # @example Request syntax with placeholder values
14050
14149
  #
14051
14150
  # resp = client.describe_fleets({
@@ -14207,6 +14306,8 @@ module Aws::EC2
14207
14306
  # * {Types::DescribeFlowLogsResult#flow_logs #flow_logs} => Array<Types::FlowLog>
14208
14307
  # * {Types::DescribeFlowLogsResult#next_token #next_token} => String
14209
14308
  #
14309
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
14310
+ #
14210
14311
  # @example Request syntax with placeholder values
14211
14312
  #
14212
14313
  # resp = client.describe_flow_logs({
@@ -14362,6 +14463,8 @@ module Aws::EC2
14362
14463
  # * {Types::DescribeFpgaImagesResult#fpga_images #fpga_images} => Array<Types::FpgaImage>
14363
14464
  # * {Types::DescribeFpgaImagesResult#next_token #next_token} => String
14364
14465
  #
14466
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
14467
+ #
14365
14468
  # @example Request syntax with placeholder values
14366
14469
  #
14367
14470
  # resp = client.describe_fpga_images({
@@ -14471,6 +14574,8 @@ module Aws::EC2
14471
14574
  # * {Types::DescribeHostReservationOfferingsResult#next_token #next_token} => String
14472
14575
  # * {Types::DescribeHostReservationOfferingsResult#offering_set #offering_set} => Array<Types::HostOffering>
14473
14576
  #
14577
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
14578
+ #
14474
14579
  # @example Request syntax with placeholder values
14475
14580
  #
14476
14581
  # resp = client.describe_host_reservation_offerings({
@@ -14550,6 +14655,8 @@ module Aws::EC2
14550
14655
  # * {Types::DescribeHostReservationsResult#host_reservation_set #host_reservation_set} => Array<Types::HostReservation>
14551
14656
  # * {Types::DescribeHostReservationsResult#next_token #next_token} => String
14552
14657
  #
14658
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
14659
+ #
14553
14660
  # @example Request syntax with placeholder values
14554
14661
  #
14555
14662
  # resp = client.describe_host_reservations({
@@ -14649,6 +14756,8 @@ module Aws::EC2
14649
14756
  # * {Types::DescribeHostsResult#hosts #hosts} => Array<Types::Host>
14650
14757
  # * {Types::DescribeHostsResult#next_token #next_token} => String
14651
14758
  #
14759
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
14760
+ #
14652
14761
  # @example Request syntax with placeholder values
14653
14762
  #
14654
14763
  # resp = client.describe_hosts({
@@ -14733,6 +14842,8 @@ module Aws::EC2
14733
14842
  # * {Types::DescribeIamInstanceProfileAssociationsResult#iam_instance_profile_associations #iam_instance_profile_associations} => Array<Types::IamInstanceProfileAssociation>
14734
14843
  # * {Types::DescribeIamInstanceProfileAssociationsResult#next_token #next_token} => String
14735
14844
  #
14845
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
14846
+ #
14736
14847
  #
14737
14848
  # @example Example: To describe an IAM instance profile association
14738
14849
  #
@@ -15254,6 +15365,12 @@ module Aws::EC2
15254
15365
  # resp.images[0].tags[0].value #=> String
15255
15366
  # resp.images[0].virtualization_type #=> String, one of "hvm", "paravirtual"
15256
15367
  #
15368
+ #
15369
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
15370
+ #
15371
+ # * image_available
15372
+ # * image_exists
15373
+ #
15257
15374
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeImages AWS API Documentation
15258
15375
  #
15259
15376
  # @overload describe_images(params = {})
@@ -15290,6 +15407,8 @@ module Aws::EC2
15290
15407
  # * {Types::DescribeImportImageTasksResult#import_image_tasks #import_image_tasks} => Array<Types::ImportImageTask>
15291
15408
  # * {Types::DescribeImportImageTasksResult#next_token #next_token} => String
15292
15409
  #
15410
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
15411
+ #
15293
15412
  # @example Request syntax with placeholder values
15294
15413
  #
15295
15414
  # resp = client.describe_import_image_tasks({
@@ -15375,6 +15494,8 @@ module Aws::EC2
15375
15494
  # * {Types::DescribeImportSnapshotTasksResult#import_snapshot_tasks #import_snapshot_tasks} => Array<Types::ImportSnapshotTask>
15376
15495
  # * {Types::DescribeImportSnapshotTasksResult#next_token #next_token} => String
15377
15496
  #
15497
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
15498
+ #
15378
15499
  # @example Request syntax with placeholder values
15379
15500
  #
15380
15501
  # resp = client.describe_import_snapshot_tasks({
@@ -15638,6 +15759,8 @@ module Aws::EC2
15638
15759
  # * {Types::DescribeInstanceCreditSpecificationsResult#instance_credit_specifications #instance_credit_specifications} => Array<Types::InstanceCreditSpecification>
15639
15760
  # * {Types::DescribeInstanceCreditSpecificationsResult#next_token #next_token} => String
15640
15761
  #
15762
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
15763
+ #
15641
15764
  # @example Request syntax with placeholder values
15642
15765
  #
15643
15766
  # resp = client.describe_instance_credit_specifications({
@@ -15669,6 +15792,40 @@ module Aws::EC2
15669
15792
  req.send_request(options)
15670
15793
  end
15671
15794
 
15795
+ # Describes the tag keys that are registered to appear in scheduled
15796
+ # event notifications for resources in the current Region.
15797
+ #
15798
+ # @option params [Boolean] :dry_run
15799
+ # Checks whether you have the required permissions for the action,
15800
+ # without actually making the request, and provides an error response.
15801
+ # If you have the required permissions, the error response is
15802
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
15803
+ #
15804
+ # @return [Types::DescribeInstanceEventNotificationAttributesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
15805
+ #
15806
+ # * {Types::DescribeInstanceEventNotificationAttributesResult#instance_tag_attribute #instance_tag_attribute} => Types::InstanceTagNotificationAttribute
15807
+ #
15808
+ # @example Request syntax with placeholder values
15809
+ #
15810
+ # resp = client.describe_instance_event_notification_attributes({
15811
+ # dry_run: false,
15812
+ # })
15813
+ #
15814
+ # @example Response structure
15815
+ #
15816
+ # resp.instance_tag_attribute.instance_tag_keys #=> Array
15817
+ # resp.instance_tag_attribute.instance_tag_keys[0] #=> String
15818
+ # resp.instance_tag_attribute.include_all_tags_of_instance #=> Boolean
15819
+ #
15820
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceEventNotificationAttributes AWS API Documentation
15821
+ #
15822
+ # @overload describe_instance_event_notification_attributes(params = {})
15823
+ # @param [Hash] params ({})
15824
+ def describe_instance_event_notification_attributes(params = {}, options = {})
15825
+ req = build_request(:describe_instance_event_notification_attributes, params)
15826
+ req.send_request(options)
15827
+ end
15828
+
15672
15829
  # Describes the status of the specified instances or all of your
15673
15830
  # instances. By default, only running instances are described, unless
15674
15831
  # you specifically indicate to return the status of all instances.
@@ -15781,6 +15938,8 @@ module Aws::EC2
15781
15938
  # * {Types::DescribeInstanceStatusResult#instance_statuses #instance_statuses} => Array<Types::InstanceStatus>
15782
15939
  # * {Types::DescribeInstanceStatusResult#next_token #next_token} => String
15783
15940
  #
15941
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
15942
+ #
15784
15943
  #
15785
15944
  # @example Example: To describe the status of an instance
15786
15945
  #
@@ -15867,6 +16026,12 @@ module Aws::EC2
15867
16026
  # resp.instance_statuses[0].system_status.status #=> String, one of "ok", "impaired", "insufficient-data", "not-applicable", "initializing"
15868
16027
  # resp.next_token #=> String
15869
16028
  #
16029
+ #
16030
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
16031
+ #
16032
+ # * instance_status_ok
16033
+ # * system_status_ok
16034
+ #
15870
16035
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceStatus AWS API Documentation
15871
16036
  #
15872
16037
  # @overload describe_instance_status(params = {})
@@ -15912,6 +16077,8 @@ module Aws::EC2
15912
16077
  # * {Types::DescribeInstanceTypeOfferingsResult#instance_type_offerings #instance_type_offerings} => Array<Types::InstanceTypeOffering>
15913
16078
  # * {Types::DescribeInstanceTypeOfferingsResult#next_token #next_token} => String
15914
16079
  #
16080
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
16081
+ #
15915
16082
  # @example Request syntax with placeholder values
15916
16083
  #
15917
16084
  # resp = client.describe_instance_type_offerings({
@@ -16052,6 +16219,8 @@ module Aws::EC2
16052
16219
  # * {Types::DescribeInstanceTypesResult#instance_types #instance_types} => Array<Types::InstanceTypeInfo>
16053
16220
  # * {Types::DescribeInstanceTypesResult#next_token #next_token} => String
16054
16221
  #
16222
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
16223
+ #
16055
16224
  # @example Request syntax with placeholder values
16056
16225
  #
16057
16226
  # resp = client.describe_instance_types({
@@ -16455,6 +16624,8 @@ module Aws::EC2
16455
16624
  # * {Types::DescribeInstancesResult#reservations #reservations} => Array<Types::Reservation>
16456
16625
  # * {Types::DescribeInstancesResult#next_token #next_token} => String
16457
16626
  #
16627
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
16628
+ #
16458
16629
  #
16459
16630
  # @example Example: To describe an Amazon EC2 instance
16460
16631
  #
@@ -16658,6 +16829,14 @@ module Aws::EC2
16658
16829
  # resp.reservations[0].reservation_id #=> String
16659
16830
  # resp.next_token #=> String
16660
16831
  #
16832
+ #
16833
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
16834
+ #
16835
+ # * instance_exists
16836
+ # * instance_running
16837
+ # * instance_stopped
16838
+ # * instance_terminated
16839
+ #
16661
16840
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstances AWS API Documentation
16662
16841
  #
16663
16842
  # @overload describe_instances(params = {})
@@ -16717,6 +16896,8 @@ module Aws::EC2
16717
16896
  # * {Types::DescribeInternetGatewaysResult#internet_gateways #internet_gateways} => Array<Types::InternetGateway>
16718
16897
  # * {Types::DescribeInternetGatewaysResult#next_token #next_token} => String
16719
16898
  #
16899
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
16900
+ #
16720
16901
  #
16721
16902
  # @example Example: To describe the Internet gateway for a VPC
16722
16903
  #
@@ -16824,6 +17005,8 @@ module Aws::EC2
16824
17005
  # * {Types::DescribeIpv6PoolsResult#ipv_6_pools #ipv_6_pools} => Array<Types::Ipv6Pool>
16825
17006
  # * {Types::DescribeIpv6PoolsResult#next_token #next_token} => String
16826
17007
  #
17008
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
17009
+ #
16827
17010
  # @example Request syntax with placeholder values
16828
17011
  #
16829
17012
  # resp = client.describe_ipv_6_pools({
@@ -16939,6 +17122,11 @@ module Aws::EC2
16939
17122
  # resp.key_pairs[0].tags[0].key #=> String
16940
17123
  # resp.key_pairs[0].tags[0].value #=> String
16941
17124
  #
17125
+ #
17126
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
17127
+ #
17128
+ # * key_pair_exists
17129
+ #
16942
17130
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeKeyPairs AWS API Documentation
16943
17131
  #
16944
17132
  # @overload describe_key_pairs(params = {})
@@ -17008,6 +17196,8 @@ module Aws::EC2
17008
17196
  # * {Types::DescribeLaunchTemplateVersionsResult#launch_template_versions #launch_template_versions} => Array<Types::LaunchTemplateVersion>
17009
17197
  # * {Types::DescribeLaunchTemplateVersionsResult#next_token #next_token} => String
17010
17198
  #
17199
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
17200
+ #
17011
17201
  #
17012
17202
  # @example Example: To describe the versions for a launch template
17013
17203
  #
@@ -17235,6 +17425,8 @@ module Aws::EC2
17235
17425
  # * {Types::DescribeLaunchTemplatesResult#launch_templates #launch_templates} => Array<Types::LaunchTemplate>
17236
17426
  # * {Types::DescribeLaunchTemplatesResult#next_token #next_token} => String
17237
17427
  #
17428
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
17429
+ #
17238
17430
  #
17239
17431
  # @example Example: To describe a launch template
17240
17432
  #
@@ -17327,6 +17519,8 @@ module Aws::EC2
17327
17519
  # * {Types::DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsResult#local_gateway_route_table_virtual_interface_group_associations #local_gateway_route_table_virtual_interface_group_associations} => Array<Types::LocalGatewayRouteTableVirtualInterfaceGroupAssociation>
17328
17520
  # * {Types::DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsResult#next_token #next_token} => String
17329
17521
  #
17522
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
17523
+ #
17330
17524
  # @example Request syntax with placeholder values
17331
17525
  #
17332
17526
  # resp = client.describe_local_gateway_route_table_virtual_interface_group_associations({
@@ -17392,6 +17586,8 @@ module Aws::EC2
17392
17586
  # * {Types::DescribeLocalGatewayRouteTableVpcAssociationsResult#local_gateway_route_table_vpc_associations #local_gateway_route_table_vpc_associations} => Array<Types::LocalGatewayRouteTableVpcAssociation>
17393
17587
  # * {Types::DescribeLocalGatewayRouteTableVpcAssociationsResult#next_token #next_token} => String
17394
17588
  #
17589
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
17590
+ #
17395
17591
  # @example Request syntax with placeholder values
17396
17592
  #
17397
17593
  # resp = client.describe_local_gateway_route_table_vpc_associations({
@@ -17458,6 +17654,8 @@ module Aws::EC2
17458
17654
  # * {Types::DescribeLocalGatewayRouteTablesResult#local_gateway_route_tables #local_gateway_route_tables} => Array<Types::LocalGatewayRouteTable>
17459
17655
  # * {Types::DescribeLocalGatewayRouteTablesResult#next_token #next_token} => String
17460
17656
  #
17657
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
17658
+ #
17461
17659
  # @example Request syntax with placeholder values
17462
17660
  #
17463
17661
  # resp = client.describe_local_gateway_route_tables({
@@ -17521,6 +17719,8 @@ module Aws::EC2
17521
17719
  # * {Types::DescribeLocalGatewayVirtualInterfaceGroupsResult#local_gateway_virtual_interface_groups #local_gateway_virtual_interface_groups} => Array<Types::LocalGatewayVirtualInterfaceGroup>
17522
17720
  # * {Types::DescribeLocalGatewayVirtualInterfaceGroupsResult#next_token #next_token} => String
17523
17721
  #
17722
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
17723
+ #
17524
17724
  # @example Request syntax with placeholder values
17525
17725
  #
17526
17726
  # resp = client.describe_local_gateway_virtual_interface_groups({
@@ -17584,6 +17784,8 @@ module Aws::EC2
17584
17784
  # * {Types::DescribeLocalGatewayVirtualInterfacesResult#local_gateway_virtual_interfaces #local_gateway_virtual_interfaces} => Array<Types::LocalGatewayVirtualInterface>
17585
17785
  # * {Types::DescribeLocalGatewayVirtualInterfacesResult#next_token #next_token} => String
17586
17786
  #
17787
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
17788
+ #
17587
17789
  # @example Request syntax with placeholder values
17588
17790
  #
17589
17791
  # resp = client.describe_local_gateway_virtual_interfaces({
@@ -17651,6 +17853,8 @@ module Aws::EC2
17651
17853
  # * {Types::DescribeLocalGatewaysResult#local_gateways #local_gateways} => Array<Types::LocalGateway>
17652
17854
  # * {Types::DescribeLocalGatewaysResult#next_token #next_token} => String
17653
17855
  #
17856
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
17857
+ #
17654
17858
  # @example Request syntax with placeholder values
17655
17859
  #
17656
17860
  # resp = client.describe_local_gateways({
@@ -17726,6 +17930,8 @@ module Aws::EC2
17726
17930
  # * {Types::DescribeMovingAddressesResult#moving_address_statuses #moving_address_statuses} => Array<Types::MovingAddressStatus>
17727
17931
  # * {Types::DescribeMovingAddressesResult#next_token #next_token} => String
17728
17932
  #
17933
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
17934
+ #
17729
17935
  #
17730
17936
  # @example Example: To describe your moving addresses
17731
17937
  #
@@ -17821,6 +18027,8 @@ module Aws::EC2
17821
18027
  # * {Types::DescribeNatGatewaysResult#nat_gateways #nat_gateways} => Array<Types::NatGateway>
17822
18028
  # * {Types::DescribeNatGatewaysResult#next_token #next_token} => String
17823
18029
  #
18030
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
18031
+ #
17824
18032
  #
17825
18033
  # @example Example: To describe a NAT gateway
17826
18034
  #
@@ -17899,6 +18107,11 @@ module Aws::EC2
17899
18107
  # resp.nat_gateways[0].tags[0].value #=> String
17900
18108
  # resp.next_token #=> String
17901
18109
  #
18110
+ #
18111
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
18112
+ #
18113
+ # * nat_gateway_available
18114
+ #
17902
18115
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeNatGateways AWS API Documentation
17903
18116
  #
17904
18117
  # @overload describe_nat_gateways(params = {})
@@ -17995,6 +18208,8 @@ module Aws::EC2
17995
18208
  # * {Types::DescribeNetworkAclsResult#network_acls #network_acls} => Array<Types::NetworkAcl>
17996
18209
  # * {Types::DescribeNetworkAclsResult#next_token #next_token} => String
17997
18210
  #
18211
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
18212
+ #
17998
18213
  #
17999
18214
  # @example Example: To describe a network ACL
18000
18215
  #
@@ -18262,6 +18477,8 @@ module Aws::EC2
18262
18477
  # * {Types::DescribeNetworkInterfacePermissionsResult#network_interface_permissions #network_interface_permissions} => Array<Types::NetworkInterfacePermission>
18263
18478
  # * {Types::DescribeNetworkInterfacePermissionsResult#next_token #next_token} => String
18264
18479
  #
18480
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
18481
+ #
18265
18482
  # @example Request syntax with placeholder values
18266
18483
  #
18267
18484
  # resp = client.describe_network_interface_permissions({
@@ -18437,6 +18654,8 @@ module Aws::EC2
18437
18654
  # * {Types::DescribeNetworkInterfacesResult#network_interfaces #network_interfaces} => Array<Types::NetworkInterface>
18438
18655
  # * {Types::DescribeNetworkInterfacesResult#next_token #next_token} => String
18439
18656
  #
18657
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
18658
+ #
18440
18659
  #
18441
18660
  # @example Example: To describe a network interface
18442
18661
  #
@@ -18566,6 +18785,11 @@ module Aws::EC2
18566
18785
  # resp.network_interfaces[0].vpc_id #=> String
18567
18786
  # resp.next_token #=> String
18568
18787
  #
18788
+ #
18789
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
18790
+ #
18791
+ # * network_interface_available
18792
+ #
18569
18793
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeNetworkInterfaces AWS API Documentation
18570
18794
  #
18571
18795
  # @overload describe_network_interfaces(params = {})
@@ -18685,6 +18909,8 @@ module Aws::EC2
18685
18909
  # * {Types::DescribePrefixListsResult#next_token #next_token} => String
18686
18910
  # * {Types::DescribePrefixListsResult#prefix_lists #prefix_lists} => Array<Types::PrefixList>
18687
18911
  #
18912
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
18913
+ #
18688
18914
  # @example Request syntax with placeholder values
18689
18915
  #
18690
18916
  # resp = client.describe_prefix_lists({
@@ -18770,6 +18996,8 @@ module Aws::EC2
18770
18996
  # * {Types::DescribePrincipalIdFormatResult#principals #principals} => Array<Types::PrincipalIdFormat>
18771
18997
  # * {Types::DescribePrincipalIdFormatResult#next_token #next_token} => String
18772
18998
  #
18999
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
19000
+ #
18773
19001
  # @example Request syntax with placeholder values
18774
19002
  #
18775
19003
  # resp = client.describe_principal_id_format({
@@ -18829,6 +19057,8 @@ module Aws::EC2
18829
19057
  # * {Types::DescribePublicIpv4PoolsResult#public_ipv_4_pools #public_ipv_4_pools} => Array<Types::PublicIpv4Pool>
18830
19058
  # * {Types::DescribePublicIpv4PoolsResult#next_token #next_token} => String
18831
19059
  #
19060
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
19061
+ #
18832
19062
  # @example Request syntax with placeholder values
18833
19063
  #
18834
19064
  # resp = client.describe_public_ipv_4_pools({
@@ -19294,6 +19524,8 @@ module Aws::EC2
19294
19524
  # * {Types::DescribeReservedInstancesModificationsResult#next_token #next_token} => String
19295
19525
  # * {Types::DescribeReservedInstancesModificationsResult#reserved_instances_modifications #reserved_instances_modifications} => Array<Types::ReservedInstancesModification>
19296
19526
  #
19527
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
19528
+ #
19297
19529
  # @example Request syntax with placeholder values
19298
19530
  #
19299
19531
  # resp = client.describe_reserved_instances_modifications({
@@ -19477,6 +19709,8 @@ module Aws::EC2
19477
19709
  # * {Types::DescribeReservedInstancesOfferingsResult#reserved_instances_offerings #reserved_instances_offerings} => Array<Types::ReservedInstancesOffering>
19478
19710
  # * {Types::DescribeReservedInstancesOfferingsResult#next_token #next_token} => String
19479
19711
  #
19712
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
19713
+ #
19480
19714
  # @example Request syntax with placeholder values
19481
19715
  #
19482
19716
  # resp = client.describe_reserved_instances_offerings({
@@ -19645,6 +19879,8 @@ module Aws::EC2
19645
19879
  # * {Types::DescribeRouteTablesResult#route_tables #route_tables} => Array<Types::RouteTable>
19646
19880
  # * {Types::DescribeRouteTablesResult#next_token #next_token} => String
19647
19881
  #
19882
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
19883
+ #
19648
19884
  #
19649
19885
  # @example Example: To describe a route table
19650
19886
  #
@@ -19805,6 +20041,8 @@ module Aws::EC2
19805
20041
  # * {Types::DescribeScheduledInstanceAvailabilityResult#next_token #next_token} => String
19806
20042
  # * {Types::DescribeScheduledInstanceAvailabilityResult#scheduled_instance_availability_set #scheduled_instance_availability_set} => Array<Types::ScheduledInstanceAvailability>
19807
20043
  #
20044
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
20045
+ #
19808
20046
  #
19809
20047
  # @example Example: To describe an available schedule
19810
20048
  #
@@ -19954,6 +20192,8 @@ module Aws::EC2
19954
20192
  # * {Types::DescribeScheduledInstancesResult#next_token #next_token} => String
19955
20193
  # * {Types::DescribeScheduledInstancesResult#scheduled_instance_set #scheduled_instance_set} => Array<Types::ScheduledInstance>
19956
20194
  #
20195
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
20196
+ #
19957
20197
  #
19958
20198
  # @example Example: To describe your Scheduled Instances
19959
20199
  #
@@ -20238,6 +20478,8 @@ module Aws::EC2
20238
20478
  # * {Types::DescribeSecurityGroupsResult#security_groups #security_groups} => Array<Types::SecurityGroup>
20239
20479
  # * {Types::DescribeSecurityGroupsResult#next_token #next_token} => String
20240
20480
  #
20481
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
20482
+ #
20241
20483
  #
20242
20484
  # @example Example: To describe a security group
20243
20485
  #
@@ -20343,6 +20585,11 @@ module Aws::EC2
20343
20585
  # resp.security_groups[0].vpc_id #=> String
20344
20586
  # resp.next_token #=> String
20345
20587
  #
20588
+ #
20589
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
20590
+ #
20591
+ # * security_group_exists
20592
+ #
20346
20593
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSecurityGroups AWS API Documentation
20347
20594
  #
20348
20595
  # @overload describe_security_groups(params = {})
@@ -20564,6 +20811,8 @@ module Aws::EC2
20564
20811
  # * {Types::DescribeSnapshotsResult#snapshots #snapshots} => Array<Types::Snapshot>
20565
20812
  # * {Types::DescribeSnapshotsResult#next_token #next_token} => String
20566
20813
  #
20814
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
20815
+ #
20567
20816
  #
20568
20817
  # @example Example: To describe a snapshot
20569
20818
  #
@@ -20665,6 +20914,11 @@ module Aws::EC2
20665
20914
  # resp.snapshots[0].tags[0].value #=> String
20666
20915
  # resp.next_token #=> String
20667
20916
  #
20917
+ #
20918
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
20919
+ #
20920
+ # * snapshot_completed
20921
+ #
20668
20922
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSnapshots AWS API Documentation
20669
20923
  #
20670
20924
  # @overload describe_snapshots(params = {})
@@ -20960,6 +21214,8 @@ module Aws::EC2
20960
21214
  # * {Types::DescribeSpotFleetRequestsResponse#next_token #next_token} => String
20961
21215
  # * {Types::DescribeSpotFleetRequestsResponse#spot_fleet_request_configs #spot_fleet_request_configs} => Array<Types::SpotFleetRequestConfig>
20962
21216
  #
21217
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
21218
+ #
20963
21219
  #
20964
21220
  # @example Example: To describe a Spot fleet request
20965
21221
  #
@@ -21146,7 +21402,7 @@ module Aws::EC2
21146
21402
  # Instance by examining the response. If the status of the Spot Instance
21147
21403
  # is `fulfilled`, the instance ID appears in the response and contains
21148
21404
  # the identifier of the instance. Alternatively, you can use
21149
- # DescribeInstances with a filter to look for instances where the
21405
+ # [DescribeInstances][1] with a filter to look for instances where the
21150
21406
  # instance lifecycle is `spot`.
21151
21407
  #
21152
21408
  # We recommend that you set `MaxResults` to a value between 5 and 1000
@@ -21160,6 +21416,10 @@ module Aws::EC2
21160
21416
  # Spot Instance requests are deleted four hours after they are canceled
21161
21417
  # and their instances are terminated.
21162
21418
  #
21419
+ #
21420
+ #
21421
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances
21422
+ #
21163
21423
  # @option params [Array<Types::Filter>] :filters
21164
21424
  # One or more filters.
21165
21425
  #
@@ -21305,6 +21565,8 @@ module Aws::EC2
21305
21565
  # * {Types::DescribeSpotInstanceRequestsResult#spot_instance_requests #spot_instance_requests} => Array&lt;Types::SpotInstanceRequest&gt;
21306
21566
  # * {Types::DescribeSpotInstanceRequestsResult#next_token #next_token} => String
21307
21567
  #
21568
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
21569
+ #
21308
21570
  #
21309
21571
  # @example Example: To describe a Spot Instance request
21310
21572
  #
@@ -21449,6 +21711,11 @@ module Aws::EC2
21449
21711
  # resp.spot_instance_requests[0].instance_interruption_behavior #=> String, one of "hibernate", "stop", "terminate"
21450
21712
  # resp.next_token #=> String
21451
21713
  #
21714
+ #
21715
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
21716
+ #
21717
+ # * spot_instance_request_fulfilled
21718
+ #
21452
21719
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotInstanceRequests AWS API Documentation
21453
21720
  #
21454
21721
  # @overload describe_spot_instance_requests(params = {})
@@ -21531,6 +21798,8 @@ module Aws::EC2
21531
21798
  # * {Types::DescribeSpotPriceHistoryResult#next_token #next_token} => String
21532
21799
  # * {Types::DescribeSpotPriceHistoryResult#spot_price_history #spot_price_history} => Array&lt;Types::SpotPrice&gt;
21533
21800
  #
21801
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
21802
+ #
21534
21803
  #
21535
21804
  # @example Example: To describe Spot price history for Linux/UNIX (Amazon VPC)
21536
21805
  #
@@ -21634,6 +21903,8 @@ module Aws::EC2
21634
21903
  # * {Types::DescribeStaleSecurityGroupsResult#next_token #next_token} => String
21635
21904
  # * {Types::DescribeStaleSecurityGroupsResult#stale_security_group_set #stale_security_group_set} => Array&lt;Types::StaleSecurityGroup&gt;
21636
21905
  #
21906
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
21907
+ #
21637
21908
  # @example Request syntax with placeholder values
21638
21909
  #
21639
21910
  # resp = client.describe_stale_security_groups({
@@ -21776,6 +22047,8 @@ module Aws::EC2
21776
22047
  # * {Types::DescribeSubnetsResult#subnets #subnets} => Array&lt;Types::Subnet&gt;
21777
22048
  # * {Types::DescribeSubnetsResult#next_token #next_token} => String
21778
22049
  #
22050
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
22051
+ #
21779
22052
  #
21780
22053
  # @example Example: To describe the subnets for a VPC
21781
22054
  #
@@ -21849,6 +22122,11 @@ module Aws::EC2
21849
22122
  # resp.subnets[0].outpost_arn #=> String
21850
22123
  # resp.next_token #=> String
21851
22124
  #
22125
+ #
22126
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
22127
+ #
22128
+ # * subnet_available
22129
+ #
21852
22130
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSubnets AWS API Documentation
21853
22131
  #
21854
22132
  # @overload describe_subnets(params = {})
@@ -21909,6 +22187,8 @@ module Aws::EC2
21909
22187
  # * {Types::DescribeTagsResult#next_token #next_token} => String
21910
22188
  # * {Types::DescribeTagsResult#tags #tags} => Array&lt;Types::TagDescription&gt;
21911
22189
  #
22190
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
22191
+ #
21912
22192
  #
21913
22193
  # @example Example: To describe the tags for a single resource
21914
22194
  #
@@ -22006,6 +22286,8 @@ module Aws::EC2
22006
22286
  # * {Types::DescribeTrafficMirrorFiltersResult#traffic_mirror_filters #traffic_mirror_filters} => Array&lt;Types::TrafficMirrorFilter&gt;
22007
22287
  # * {Types::DescribeTrafficMirrorFiltersResult#next_token #next_token} => String
22008
22288
  #
22289
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
22290
+ #
22009
22291
  # @example Request syntax with placeholder values
22010
22292
  #
22011
22293
  # resp = client.describe_traffic_mirror_filters({
@@ -22120,6 +22402,8 @@ module Aws::EC2
22120
22402
  # * {Types::DescribeTrafficMirrorSessionsResult#traffic_mirror_sessions #traffic_mirror_sessions} => Array&lt;Types::TrafficMirrorSession&gt;
22121
22403
  # * {Types::DescribeTrafficMirrorSessionsResult#next_token #next_token} => String
22122
22404
  #
22405
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
22406
+ #
22123
22407
  # @example Request syntax with placeholder values
22124
22408
  #
22125
22409
  # resp = client.describe_traffic_mirror_sessions({
@@ -22201,6 +22485,8 @@ module Aws::EC2
22201
22485
  # * {Types::DescribeTrafficMirrorTargetsResult#traffic_mirror_targets #traffic_mirror_targets} => Array&lt;Types::TrafficMirrorTarget&gt;
22202
22486
  # * {Types::DescribeTrafficMirrorTargetsResult#next_token #next_token} => String
22203
22487
  #
22488
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
22489
+ #
22204
22490
  # @example Request syntax with placeholder values
22205
22491
  #
22206
22492
  # resp = client.describe_traffic_mirror_targets({
@@ -22293,6 +22579,8 @@ module Aws::EC2
22293
22579
  # * {Types::DescribeTransitGatewayAttachmentsResult#transit_gateway_attachments #transit_gateway_attachments} => Array&lt;Types::TransitGatewayAttachment&gt;
22294
22580
  # * {Types::DescribeTransitGatewayAttachmentsResult#next_token #next_token} => String
22295
22581
  #
22582
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
22583
+ #
22296
22584
  # @example Request syntax with placeholder values
22297
22585
  #
22298
22586
  # resp = client.describe_transit_gateway_attachments({
@@ -22370,6 +22658,8 @@ module Aws::EC2
22370
22658
  # * {Types::DescribeTransitGatewayMulticastDomainsResult#transit_gateway_multicast_domains #transit_gateway_multicast_domains} => Array&lt;Types::TransitGatewayMulticastDomain&gt;
22371
22659
  # * {Types::DescribeTransitGatewayMulticastDomainsResult#next_token #next_token} => String
22372
22660
  #
22661
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
22662
+ #
22373
22663
  # @example Request syntax with placeholder values
22374
22664
  #
22375
22665
  # resp = client.describe_transit_gateway_multicast_domains({
@@ -22448,6 +22738,8 @@ module Aws::EC2
22448
22738
  # * {Types::DescribeTransitGatewayPeeringAttachmentsResult#transit_gateway_peering_attachments #transit_gateway_peering_attachments} => Array&lt;Types::TransitGatewayPeeringAttachment&gt;
22449
22739
  # * {Types::DescribeTransitGatewayPeeringAttachmentsResult#next_token #next_token} => String
22450
22740
  #
22741
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
22742
+ #
22451
22743
  # @example Request syntax with placeholder values
22452
22744
  #
22453
22745
  # resp = client.describe_transit_gateway_peering_attachments({
@@ -22537,6 +22829,8 @@ module Aws::EC2
22537
22829
  # * {Types::DescribeTransitGatewayRouteTablesResult#transit_gateway_route_tables #transit_gateway_route_tables} => Array&lt;Types::TransitGatewayRouteTable&gt;
22538
22830
  # * {Types::DescribeTransitGatewayRouteTablesResult#next_token #next_token} => String
22539
22831
  #
22832
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
22833
+ #
22540
22834
  # @example Request syntax with placeholder values
22541
22835
  #
22542
22836
  # resp = client.describe_transit_gateway_route_tables({
@@ -22613,6 +22907,8 @@ module Aws::EC2
22613
22907
  # * {Types::DescribeTransitGatewayVpcAttachmentsResult#transit_gateway_vpc_attachments #transit_gateway_vpc_attachments} => Array&lt;Types::TransitGatewayVpcAttachment&gt;
22614
22908
  # * {Types::DescribeTransitGatewayVpcAttachmentsResult#next_token #next_token} => String
22615
22909
  #
22910
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
22911
+ #
22616
22912
  # @example Request syntax with placeholder values
22617
22913
  #
22618
22914
  # resp = client.describe_transit_gateway_vpc_attachments({
@@ -22719,6 +23015,8 @@ module Aws::EC2
22719
23015
  # * {Types::DescribeTransitGatewaysResult#transit_gateways #transit_gateways} => Array&lt;Types::TransitGateway&gt;
22720
23016
  # * {Types::DescribeTransitGatewaysResult#next_token #next_token} => String
22721
23017
  #
23018
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
23019
+ #
22722
23020
  # @example Request syntax with placeholder values
22723
23021
  #
22724
23022
  # resp = client.describe_transit_gateways({
@@ -22951,6 +23249,8 @@ module Aws::EC2
22951
23249
  # * {Types::DescribeVolumeStatusResult#next_token #next_token} => String
22952
23250
  # * {Types::DescribeVolumeStatusResult#volume_statuses #volume_statuses} => Array&lt;Types::VolumeStatusItem&gt;
22953
23251
  #
23252
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
23253
+ #
22954
23254
  #
22955
23255
  # @example Example: To describe the status of a single volume
22956
23256
  #
@@ -23169,6 +23469,8 @@ module Aws::EC2
23169
23469
  # * {Types::DescribeVolumesResult#volumes #volumes} => Array&lt;Types::Volume&gt;
23170
23470
  # * {Types::DescribeVolumesResult#next_token #next_token} => String
23171
23471
  #
23472
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
23473
+ #
23172
23474
  #
23173
23475
  # @example Example: To describe all volumes
23174
23476
  #
@@ -23293,6 +23595,13 @@ module Aws::EC2
23293
23595
  # resp.volumes[0].multi_attach_enabled #=> Boolean
23294
23596
  # resp.next_token #=> String
23295
23597
  #
23598
+ #
23599
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
23600
+ #
23601
+ # * volume_available
23602
+ # * volume_deleted
23603
+ # * volume_in_use
23604
+ #
23296
23605
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumes AWS API Documentation
23297
23606
  #
23298
23607
  # @overload describe_volumes(params = {})
@@ -23352,6 +23661,8 @@ module Aws::EC2
23352
23661
  # * {Types::DescribeVolumesModificationsResult#volumes_modifications #volumes_modifications} => Array&lt;Types::VolumeModification&gt;
23353
23662
  # * {Types::DescribeVolumesModificationsResult#next_token #next_token} => String
23354
23663
  #
23664
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
23665
+ #
23355
23666
  # @example Request syntax with placeholder values
23356
23667
  #
23357
23668
  # resp = client.describe_volumes_modifications({
@@ -23566,6 +23877,8 @@ module Aws::EC2
23566
23877
  # * {Types::DescribeVpcClassicLinkDnsSupportResult#next_token #next_token} => String
23567
23878
  # * {Types::DescribeVpcClassicLinkDnsSupportResult#vpcs #vpcs} => Array&lt;Types::ClassicLinkDnsSupport&gt;
23568
23879
  #
23880
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
23881
+ #
23569
23882
  # @example Request syntax with placeholder values
23570
23883
  #
23571
23884
  # resp = client.describe_vpc_classic_link_dns_support({
@@ -23632,6 +23945,8 @@ module Aws::EC2
23632
23945
  # * {Types::DescribeVpcEndpointConnectionNotificationsResult#connection_notification_set #connection_notification_set} => Array&lt;Types::ConnectionNotification&gt;
23633
23946
  # * {Types::DescribeVpcEndpointConnectionNotificationsResult#next_token #next_token} => String
23634
23947
  #
23948
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
23949
+ #
23635
23950
  # @example Request syntax with placeholder values
23636
23951
  #
23637
23952
  # resp = client.describe_vpc_endpoint_connection_notifications({
@@ -23707,6 +24022,8 @@ module Aws::EC2
23707
24022
  # * {Types::DescribeVpcEndpointConnectionsResult#vpc_endpoint_connections #vpc_endpoint_connections} => Array&lt;Types::VpcEndpointConnection&gt;
23708
24023
  # * {Types::DescribeVpcEndpointConnectionsResult#next_token #next_token} => String
23709
24024
  #
24025
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
24026
+ #
23710
24027
  # @example Request syntax with placeholder values
23711
24028
  #
23712
24029
  # resp = client.describe_vpc_endpoint_connections({
@@ -23792,6 +24109,8 @@ module Aws::EC2
23792
24109
  # * {Types::DescribeVpcEndpointServiceConfigurationsResult#service_configurations #service_configurations} => Array&lt;Types::ServiceConfiguration&gt;
23793
24110
  # * {Types::DescribeVpcEndpointServiceConfigurationsResult#next_token #next_token} => String
23794
24111
  #
24112
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
24113
+ #
23795
24114
  # @example Request syntax with placeholder values
23796
24115
  #
23797
24116
  # resp = client.describe_vpc_endpoint_service_configurations({
@@ -23877,6 +24196,8 @@ module Aws::EC2
23877
24196
  # * {Types::DescribeVpcEndpointServicePermissionsResult#allowed_principals #allowed_principals} => Array&lt;Types::AllowedPrincipal&gt;
23878
24197
  # * {Types::DescribeVpcEndpointServicePermissionsResult#next_token #next_token} => String
23879
24198
  #
24199
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
24200
+ #
23880
24201
  # @example Request syntax with placeholder values
23881
24202
  #
23882
24203
  # resp = client.describe_vpc_endpoint_service_permissions({
@@ -24051,6 +24372,8 @@ module Aws::EC2
24051
24372
  # * {Types::DescribeVpcEndpointsResult#vpc_endpoints #vpc_endpoints} => Array&lt;Types::VpcEndpoint&gt;
24052
24373
  # * {Types::DescribeVpcEndpointsResult#next_token #next_token} => String
24053
24374
  #
24375
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
24376
+ #
24054
24377
  # @example Request syntax with placeholder values
24055
24378
  #
24056
24379
  # resp = client.describe_vpc_endpoints({
@@ -24174,6 +24497,8 @@ module Aws::EC2
24174
24497
  # * {Types::DescribeVpcPeeringConnectionsResult#vpc_peering_connections #vpc_peering_connections} => Array&lt;Types::VpcPeeringConnection&gt;
24175
24498
  # * {Types::DescribeVpcPeeringConnectionsResult#next_token #next_token} => String
24176
24499
  #
24500
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
24501
+ #
24177
24502
  # @example Request syntax with placeholder values
24178
24503
  #
24179
24504
  # resp = client.describe_vpc_peering_connections({
@@ -24223,6 +24548,12 @@ module Aws::EC2
24223
24548
  # resp.vpc_peering_connections[0].vpc_peering_connection_id #=> String
24224
24549
  # resp.next_token #=> String
24225
24550
  #
24551
+ #
24552
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
24553
+ #
24554
+ # * vpc_peering_connection_deleted
24555
+ # * vpc_peering_connection_exists
24556
+ #
24226
24557
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcPeeringConnections AWS API Documentation
24227
24558
  #
24228
24559
  # @overload describe_vpc_peering_connections(params = {})
@@ -24307,6 +24638,8 @@ module Aws::EC2
24307
24638
  # * {Types::DescribeVpcsResult#vpcs #vpcs} => Array&lt;Types::Vpc&gt;
24308
24639
  # * {Types::DescribeVpcsResult#next_token #next_token} => String
24309
24640
  #
24641
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
24642
+ #
24310
24643
  #
24311
24644
  # @example Example: To describe a VPC
24312
24645
  #
@@ -24380,6 +24713,12 @@ module Aws::EC2
24380
24713
  # resp.vpcs[0].tags[0].value #=> String
24381
24714
  # resp.next_token #=> String
24382
24715
  #
24716
+ #
24717
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
24718
+ #
24719
+ # * vpc_available
24720
+ # * vpc_exists
24721
+ #
24383
24722
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcs AWS API Documentation
24384
24723
  #
24385
24724
  # @overload describe_vpcs(params = {})
@@ -24521,6 +24860,12 @@ module Aws::EC2
24521
24860
  # resp.vpn_connections[0].vgw_telemetry[0].status_message #=> String
24522
24861
  # resp.vpn_connections[0].vgw_telemetry[0].certificate_arn #=> String
24523
24862
  #
24863
+ #
24864
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
24865
+ #
24866
+ # * vpn_connection_available
24867
+ # * vpn_connection_deleted
24868
+ #
24524
24869
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpnConnections AWS API Documentation
24525
24870
  #
24526
24871
  # @overload describe_vpn_connections(params = {})
@@ -26194,6 +26539,8 @@ module Aws::EC2
26194
26539
  # * {Types::GetAssociatedIpv6PoolCidrsResult#ipv_6_cidr_associations #ipv_6_cidr_associations} => Array&lt;Types::Ipv6CidrAssociation&gt;
26195
26540
  # * {Types::GetAssociatedIpv6PoolCidrsResult#next_token #next_token} => String
26196
26541
  #
26542
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
26543
+ #
26197
26544
  # @example Request syntax with placeholder values
26198
26545
  #
26199
26546
  # resp = client.get_associated_ipv_6_pool_cidrs({
@@ -26903,6 +27250,11 @@ module Aws::EC2
26903
27250
  # resp.password_data #=> String
26904
27251
  # resp.timestamp #=> Time
26905
27252
  #
27253
+ #
27254
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
27255
+ #
27256
+ # * password_data_available
27257
+ #
26906
27258
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetPasswordData AWS API Documentation
26907
27259
  #
26908
27260
  # @overload get_password_data(params = {})
@@ -27023,6 +27375,8 @@ module Aws::EC2
27023
27375
  # * {Types::GetTransitGatewayAttachmentPropagationsResult#transit_gateway_attachment_propagations #transit_gateway_attachment_propagations} => Array&lt;Types::TransitGatewayAttachmentPropagation&gt;
27024
27376
  # * {Types::GetTransitGatewayAttachmentPropagationsResult#next_token #next_token} => String
27025
27377
  #
27378
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
27379
+ #
27026
27380
  # @example Request syntax with placeholder values
27027
27381
  #
27028
27382
  # resp = client.get_transit_gateway_attachment_propagations({
@@ -27095,6 +27449,8 @@ module Aws::EC2
27095
27449
  # * {Types::GetTransitGatewayMulticastDomainAssociationsResult#multicast_domain_associations #multicast_domain_associations} => Array&lt;Types::TransitGatewayMulticastDomainAssociation&gt;
27096
27450
  # * {Types::GetTransitGatewayMulticastDomainAssociationsResult#next_token #next_token} => String
27097
27451
  #
27452
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
27453
+ #
27098
27454
  # @example Request syntax with placeholder values
27099
27455
  #
27100
27456
  # resp = client.get_transit_gateway_multicast_domain_associations({
@@ -27163,6 +27519,8 @@ module Aws::EC2
27163
27519
  # * {Types::GetTransitGatewayRouteTableAssociationsResult#associations #associations} => Array&lt;Types::TransitGatewayRouteTableAssociation&gt;
27164
27520
  # * {Types::GetTransitGatewayRouteTableAssociationsResult#next_token #next_token} => String
27165
27521
  #
27522
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
27523
+ #
27166
27524
  # @example Request syntax with placeholder values
27167
27525
  #
27168
27526
  # resp = client.get_transit_gateway_route_table_associations({
@@ -27230,6 +27588,8 @@ module Aws::EC2
27230
27588
  # * {Types::GetTransitGatewayRouteTablePropagationsResult#transit_gateway_route_table_propagations #transit_gateway_route_table_propagations} => Array&lt;Types::TransitGatewayRouteTablePropagation&gt;
27231
27589
  # * {Types::GetTransitGatewayRouteTablePropagationsResult#next_token #next_token} => String
27232
27590
  #
27591
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
27592
+ #
27233
27593
  # @example Request syntax with placeholder values
27234
27594
  #
27235
27595
  # resp = client.get_transit_gateway_route_table_propagations({
@@ -31973,6 +32333,54 @@ module Aws::EC2
31973
32333
  req.send_request(options)
31974
32334
  end
31975
32335
 
32336
+ # Registers a set of tag keys to include in scheduled event
32337
+ # notifications for your resources. For more information, see
32338
+ # [Customizing Scheduled Event Notifications][1].
32339
+ #
32340
+ # To remove tags, use .
32341
+ #
32342
+ #
32343
+ #
32344
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/monitoring-instances-status-check_sched.html#customizing_scheduled_event_notifications
32345
+ #
32346
+ # @option params [Boolean] :dry_run
32347
+ # Checks whether you have the required permissions for the action,
32348
+ # without actually making the request, and provides an error response.
32349
+ # If you have the required permissions, the error response is
32350
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
32351
+ #
32352
+ # @option params [Types::RegisterInstanceTagAttributeRequest] :instance_tag_attribute
32353
+ # Information about the tag keys to register.
32354
+ #
32355
+ # @return [Types::RegisterInstanceEventNotificationAttributesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
32356
+ #
32357
+ # * {Types::RegisterInstanceEventNotificationAttributesResult#instance_tag_attribute #instance_tag_attribute} => Types::InstanceTagNotificationAttribute
32358
+ #
32359
+ # @example Request syntax with placeholder values
32360
+ #
32361
+ # resp = client.register_instance_event_notification_attributes({
32362
+ # dry_run: false,
32363
+ # instance_tag_attribute: {
32364
+ # include_all_tags_of_instance: false,
32365
+ # instance_tag_keys: ["String"],
32366
+ # },
32367
+ # })
32368
+ #
32369
+ # @example Response structure
32370
+ #
32371
+ # resp.instance_tag_attribute.instance_tag_keys #=> Array
32372
+ # resp.instance_tag_attribute.instance_tag_keys[0] #=> String
32373
+ # resp.instance_tag_attribute.include_all_tags_of_instance #=> Boolean
32374
+ #
32375
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RegisterInstanceEventNotificationAttributes AWS API Documentation
32376
+ #
32377
+ # @overload register_instance_event_notification_attributes(params = {})
32378
+ # @param [Hash] params ({})
32379
+ def register_instance_event_notification_attributes(params = {}, options = {})
32380
+ req = build_request(:register_instance_event_notification_attributes, params)
32381
+ req.send_request(options)
32382
+ end
32383
+
31976
32384
  # Registers members (network interfaces) with the transit gateway
31977
32385
  # multicast group. A member is a network interface associated with a
31978
32386
  # supported EC2 instance that receives multicast traffic. For
@@ -35213,6 +35621,8 @@ module Aws::EC2
35213
35621
  # * {Types::SearchLocalGatewayRoutesResult#routes #routes} => Array&lt;Types::LocalGatewayRoute&gt;
35214
35622
  # * {Types::SearchLocalGatewayRoutesResult#next_token #next_token} => String
35215
35623
  #
35624
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
35625
+ #
35216
35626
  # @example Request syntax with placeholder values
35217
35627
  #
35218
35628
  # resp = client.search_local_gateway_routes({
@@ -35303,6 +35713,8 @@ module Aws::EC2
35303
35713
  # * {Types::SearchTransitGatewayMulticastGroupsResult#multicast_groups #multicast_groups} => Array&lt;Types::TransitGatewayMulticastGroup&gt;
35304
35714
  # * {Types::SearchTransitGatewayMulticastGroupsResult#next_token #next_token} => String
35305
35715
  #
35716
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
35717
+ #
35306
35718
  # @example Request syntax with placeholder values
35307
35719
  #
35308
35720
  # resp = client.search_transit_gateway_multicast_groups({
@@ -36333,7 +36745,7 @@ module Aws::EC2
36333
36745
  params: params,
36334
36746
  config: config)
36335
36747
  context[:gem_name] = 'aws-sdk-ec2'
36336
- context[:gem_version] = '1.151.0'
36748
+ context[:gem_version] = '1.152.0'
36337
36749
  Seahorse::Client::Request.new(handlers, context)
36338
36750
  end
36339
36751
 
@@ -36399,40 +36811,40 @@ module Aws::EC2
36399
36811
  # The following table lists the valid waiter names, the operations they call,
36400
36812
  # and the default `:delay` and `:max_attempts` values.
36401
36813
  #
36402
- # | waiter_name | params | :delay | :max_attempts |
36403
- # | ------------------------------- | ----------------------------------- | -------- | ------------- |
36404
- # | bundle_task_complete | {#describe_bundle_tasks} | 15 | 40 |
36405
- # | conversion_task_cancelled | {#describe_conversion_tasks} | 15 | 40 |
36406
- # | conversion_task_completed | {#describe_conversion_tasks} | 15 | 40 |
36407
- # | conversion_task_deleted | {#describe_conversion_tasks} | 15 | 40 |
36408
- # | customer_gateway_available | {#describe_customer_gateways} | 15 | 40 |
36409
- # | export_task_cancelled | {#describe_export_tasks} | 15 | 40 |
36410
- # | export_task_completed | {#describe_export_tasks} | 15 | 40 |
36411
- # | image_available | {#describe_images} | 15 | 40 |
36412
- # | image_exists | {#describe_images} | 15 | 40 |
36413
- # | instance_exists | {#describe_instances} | 5 | 40 |
36414
- # | instance_running | {#describe_instances} | 15 | 40 |
36415
- # | instance_status_ok | {#describe_instance_status} | 15 | 40 |
36416
- # | instance_stopped | {#describe_instances} | 15 | 40 |
36417
- # | instance_terminated | {#describe_instances} | 15 | 40 |
36418
- # | key_pair_exists | {#describe_key_pairs} | 5 | 6 |
36419
- # | nat_gateway_available | {#describe_nat_gateways} | 15 | 40 |
36420
- # | network_interface_available | {#describe_network_interfaces} | 20 | 10 |
36421
- # | password_data_available | {#get_password_data} | 15 | 40 |
36422
- # | security_group_exists | {#describe_security_groups} | 5 | 6 |
36423
- # | snapshot_completed | {#describe_snapshots} | 15 | 40 |
36424
- # | spot_instance_request_fulfilled | {#describe_spot_instance_requests} | 15 | 40 |
36425
- # | subnet_available | {#describe_subnets} | 15 | 40 |
36426
- # | system_status_ok | {#describe_instance_status} | 15 | 40 |
36427
- # | volume_available | {#describe_volumes} | 15 | 40 |
36428
- # | volume_deleted | {#describe_volumes} | 15 | 40 |
36429
- # | volume_in_use | {#describe_volumes} | 15 | 40 |
36430
- # | vpc_available | {#describe_vpcs} | 15 | 40 |
36431
- # | vpc_exists | {#describe_vpcs} | 1 | 5 |
36432
- # | vpc_peering_connection_deleted | {#describe_vpc_peering_connections} | 15 | 40 |
36433
- # | vpc_peering_connection_exists | {#describe_vpc_peering_connections} | 15 | 40 |
36434
- # | vpn_connection_available | {#describe_vpn_connections} | 15 | 40 |
36435
- # | vpn_connection_deleted | {#describe_vpn_connections} | 15 | 40 |
36814
+ # | waiter_name | params | :delay | :max_attempts |
36815
+ # | ------------------------------- | ----------------------------------------- | -------- | ------------- |
36816
+ # | bundle_task_complete | {Client#describe_bundle_tasks} | 15 | 40 |
36817
+ # | conversion_task_cancelled | {Client#describe_conversion_tasks} | 15 | 40 |
36818
+ # | conversion_task_completed | {Client#describe_conversion_tasks} | 15 | 40 |
36819
+ # | conversion_task_deleted | {Client#describe_conversion_tasks} | 15 | 40 |
36820
+ # | customer_gateway_available | {Client#describe_customer_gateways} | 15 | 40 |
36821
+ # | export_task_cancelled | {Client#describe_export_tasks} | 15 | 40 |
36822
+ # | export_task_completed | {Client#describe_export_tasks} | 15 | 40 |
36823
+ # | image_available | {Client#describe_images} | 15 | 40 |
36824
+ # | image_exists | {Client#describe_images} | 15 | 40 |
36825
+ # | instance_exists | {Client#describe_instances} | 5 | 40 |
36826
+ # | instance_running | {Client#describe_instances} | 15 | 40 |
36827
+ # | instance_status_ok | {Client#describe_instance_status} | 15 | 40 |
36828
+ # | instance_stopped | {Client#describe_instances} | 15 | 40 |
36829
+ # | instance_terminated | {Client#describe_instances} | 15 | 40 |
36830
+ # | key_pair_exists | {Client#describe_key_pairs} | 5 | 6 |
36831
+ # | nat_gateway_available | {Client#describe_nat_gateways} | 15 | 40 |
36832
+ # | network_interface_available | {Client#describe_network_interfaces} | 20 | 10 |
36833
+ # | password_data_available | {Client#get_password_data} | 15 | 40 |
36834
+ # | security_group_exists | {Client#describe_security_groups} | 5 | 6 |
36835
+ # | snapshot_completed | {Client#describe_snapshots} | 15 | 40 |
36836
+ # | spot_instance_request_fulfilled | {Client#describe_spot_instance_requests} | 15 | 40 |
36837
+ # | subnet_available | {Client#describe_subnets} | 15 | 40 |
36838
+ # | system_status_ok | {Client#describe_instance_status} | 15 | 40 |
36839
+ # | volume_available | {Client#describe_volumes} | 15 | 40 |
36840
+ # | volume_deleted | {Client#describe_volumes} | 15 | 40 |
36841
+ # | volume_in_use | {Client#describe_volumes} | 15 | 40 |
36842
+ # | vpc_available | {Client#describe_vpcs} | 15 | 40 |
36843
+ # | vpc_exists | {Client#describe_vpcs} | 1 | 5 |
36844
+ # | vpc_peering_connection_deleted | {Client#describe_vpc_peering_connections} | 15 | 40 |
36845
+ # | vpc_peering_connection_exists | {Client#describe_vpc_peering_connections} | 15 | 40 |
36846
+ # | vpn_connection_available | {Client#describe_vpn_connections} | 15 | 40 |
36847
+ # | vpn_connection_deleted | {Client#describe_vpn_connections} | 15 | 40 |
36436
36848
  #
36437
36849
  # @raise [Errors::FailureStateError] Raised when the waiter terminates
36438
36850
  # because the waiter has entered a state that it will not transition