aws-sdk-ec2 1.285.0 → 1.417.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.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +663 -1
  3. data/VERSION +1 -1
  4. data/lib/aws-sdk-ec2/classic_address.rb +33 -36
  5. data/lib/aws-sdk-ec2/client.rb +13859 -2170
  6. data/lib/aws-sdk-ec2/client_api.rb +4203 -86
  7. data/lib/aws-sdk-ec2/customizations/instance.rb +3 -1
  8. data/lib/aws-sdk-ec2/customizations/resource.rb +3 -1
  9. data/lib/aws-sdk-ec2/dhcp_options.rb +19 -7
  10. data/lib/aws-sdk-ec2/endpoint_parameters.rb +66 -0
  11. data/lib/aws-sdk-ec2/endpoint_provider.rb +57 -0
  12. data/lib/aws-sdk-ec2/endpoints.rb +8444 -0
  13. data/lib/aws-sdk-ec2/image.rb +96 -22
  14. data/lib/aws-sdk-ec2/instance.rb +232 -95
  15. data/lib/aws-sdk-ec2/internet_gateway.rb +21 -7
  16. data/lib/aws-sdk-ec2/key_pair.rb +13 -4
  17. data/lib/aws-sdk-ec2/key_pair_info.rb +32 -4
  18. data/lib/aws-sdk-ec2/nat_gateway.rb +22 -12
  19. data/lib/aws-sdk-ec2/network_acl.rb +28 -10
  20. data/lib/aws-sdk-ec2/network_interface.rb +76 -17
  21. data/lib/aws-sdk-ec2/network_interface_association.rb +11 -5
  22. data/lib/aws-sdk-ec2/placement_group.rb +198 -33
  23. data/lib/aws-sdk-ec2/plugins/copy_encrypted_snapshot.rb +17 -12
  24. data/lib/aws-sdk-ec2/plugins/endpoints.rb +1272 -0
  25. data/lib/aws-sdk-ec2/plugins/region_validation.rb +1 -1
  26. data/lib/aws-sdk-ec2/resource.rb +793 -282
  27. data/lib/aws-sdk-ec2/route.rb +9 -3
  28. data/lib/aws-sdk-ec2/route_table.rb +21 -7
  29. data/lib/aws-sdk-ec2/route_table_association.rb +9 -3
  30. data/lib/aws-sdk-ec2/security_group.rb +74 -57
  31. data/lib/aws-sdk-ec2/snapshot.rb +38 -12
  32. data/lib/aws-sdk-ec2/subnet.rb +394 -137
  33. data/lib/aws-sdk-ec2/tag.rb +12 -4
  34. data/lib/aws-sdk-ec2/types.rb +15645 -13412
  35. data/lib/aws-sdk-ec2/volume.rb +65 -34
  36. data/lib/aws-sdk-ec2/vpc.rb +368 -123
  37. data/lib/aws-sdk-ec2/vpc_address.rb +29 -34
  38. data/lib/aws-sdk-ec2/vpc_peering_connection.rb +18 -6
  39. data/lib/aws-sdk-ec2/waiters.rb +184 -0
  40. data/lib/aws-sdk-ec2.rb +6 -2
  41. metadata +8 -4
@@ -0,0 +1,1272 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+
11
+ module Aws::EC2
12
+ module Plugins
13
+ class Endpoints < Seahorse::Client::Plugin
14
+ option(
15
+ :endpoint_provider,
16
+ doc_type: 'Aws::EC2::EndpointProvider',
17
+ docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
+ 'object that responds to `#resolve_endpoint(parameters)` '\
19
+ 'where `parameters` is a Struct similar to '\
20
+ '`Aws::EC2::EndpointParameters`'
21
+ ) do |cfg|
22
+ Aws::EC2::EndpointProvider.new
23
+ end
24
+
25
+ # @api private
26
+ class Handler < Seahorse::Client::Handler
27
+ def call(context)
28
+ # If endpoint was discovered, do not resolve or apply the endpoint.
29
+ unless context[:discovered_endpoint]
30
+ params = parameters_for_operation(context)
31
+ endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
+
33
+ context.http_request.endpoint = endpoint.url
34
+ apply_endpoint_headers(context, endpoint.headers)
35
+ end
36
+
37
+ context[:endpoint_params] = params
38
+ context[:auth_scheme] =
39
+ Aws::Endpoints.resolve_auth_scheme(context, endpoint)
40
+
41
+ @handler.call(context)
42
+ end
43
+
44
+ private
45
+
46
+ def apply_endpoint_headers(context, headers)
47
+ headers.each do |key, values|
48
+ value = values
49
+ .compact
50
+ .map { |s| Seahorse::Util.escape_header_list_string(s.to_s) }
51
+ .join(',')
52
+
53
+ context.http_request.headers[key] = value
54
+ end
55
+ end
56
+
57
+ def parameters_for_operation(context)
58
+ case context.operation_name
59
+ when :accept_address_transfer
60
+ Aws::EC2::Endpoints::AcceptAddressTransfer.build(context)
61
+ when :accept_reserved_instances_exchange_quote
62
+ Aws::EC2::Endpoints::AcceptReservedInstancesExchangeQuote.build(context)
63
+ when :accept_transit_gateway_multicast_domain_associations
64
+ Aws::EC2::Endpoints::AcceptTransitGatewayMulticastDomainAssociations.build(context)
65
+ when :accept_transit_gateway_peering_attachment
66
+ Aws::EC2::Endpoints::AcceptTransitGatewayPeeringAttachment.build(context)
67
+ when :accept_transit_gateway_vpc_attachment
68
+ Aws::EC2::Endpoints::AcceptTransitGatewayVpcAttachment.build(context)
69
+ when :accept_vpc_endpoint_connections
70
+ Aws::EC2::Endpoints::AcceptVpcEndpointConnections.build(context)
71
+ when :accept_vpc_peering_connection
72
+ Aws::EC2::Endpoints::AcceptVpcPeeringConnection.build(context)
73
+ when :advertise_byoip_cidr
74
+ Aws::EC2::Endpoints::AdvertiseByoipCidr.build(context)
75
+ when :allocate_address
76
+ Aws::EC2::Endpoints::AllocateAddress.build(context)
77
+ when :allocate_hosts
78
+ Aws::EC2::Endpoints::AllocateHosts.build(context)
79
+ when :allocate_ipam_pool_cidr
80
+ Aws::EC2::Endpoints::AllocateIpamPoolCidr.build(context)
81
+ when :apply_security_groups_to_client_vpn_target_network
82
+ Aws::EC2::Endpoints::ApplySecurityGroupsToClientVpnTargetNetwork.build(context)
83
+ when :assign_ipv_6_addresses
84
+ Aws::EC2::Endpoints::AssignIpv6Addresses.build(context)
85
+ when :assign_private_ip_addresses
86
+ Aws::EC2::Endpoints::AssignPrivateIpAddresses.build(context)
87
+ when :assign_private_nat_gateway_address
88
+ Aws::EC2::Endpoints::AssignPrivateNatGatewayAddress.build(context)
89
+ when :associate_address
90
+ Aws::EC2::Endpoints::AssociateAddress.build(context)
91
+ when :associate_client_vpn_target_network
92
+ Aws::EC2::Endpoints::AssociateClientVpnTargetNetwork.build(context)
93
+ when :associate_dhcp_options
94
+ Aws::EC2::Endpoints::AssociateDhcpOptions.build(context)
95
+ when :associate_enclave_certificate_iam_role
96
+ Aws::EC2::Endpoints::AssociateEnclaveCertificateIamRole.build(context)
97
+ when :associate_iam_instance_profile
98
+ Aws::EC2::Endpoints::AssociateIamInstanceProfile.build(context)
99
+ when :associate_instance_event_window
100
+ Aws::EC2::Endpoints::AssociateInstanceEventWindow.build(context)
101
+ when :associate_ipam_resource_discovery
102
+ Aws::EC2::Endpoints::AssociateIpamResourceDiscovery.build(context)
103
+ when :associate_nat_gateway_address
104
+ Aws::EC2::Endpoints::AssociateNatGatewayAddress.build(context)
105
+ when :associate_route_table
106
+ Aws::EC2::Endpoints::AssociateRouteTable.build(context)
107
+ when :associate_subnet_cidr_block
108
+ Aws::EC2::Endpoints::AssociateSubnetCidrBlock.build(context)
109
+ when :associate_transit_gateway_multicast_domain
110
+ Aws::EC2::Endpoints::AssociateTransitGatewayMulticastDomain.build(context)
111
+ when :associate_transit_gateway_policy_table
112
+ Aws::EC2::Endpoints::AssociateTransitGatewayPolicyTable.build(context)
113
+ when :associate_transit_gateway_route_table
114
+ Aws::EC2::Endpoints::AssociateTransitGatewayRouteTable.build(context)
115
+ when :associate_trunk_interface
116
+ Aws::EC2::Endpoints::AssociateTrunkInterface.build(context)
117
+ when :associate_vpc_cidr_block
118
+ Aws::EC2::Endpoints::AssociateVpcCidrBlock.build(context)
119
+ when :attach_classic_link_vpc
120
+ Aws::EC2::Endpoints::AttachClassicLinkVpc.build(context)
121
+ when :attach_internet_gateway
122
+ Aws::EC2::Endpoints::AttachInternetGateway.build(context)
123
+ when :attach_network_interface
124
+ Aws::EC2::Endpoints::AttachNetworkInterface.build(context)
125
+ when :attach_verified_access_trust_provider
126
+ Aws::EC2::Endpoints::AttachVerifiedAccessTrustProvider.build(context)
127
+ when :attach_volume
128
+ Aws::EC2::Endpoints::AttachVolume.build(context)
129
+ when :attach_vpn_gateway
130
+ Aws::EC2::Endpoints::AttachVpnGateway.build(context)
131
+ when :authorize_client_vpn_ingress
132
+ Aws::EC2::Endpoints::AuthorizeClientVpnIngress.build(context)
133
+ when :authorize_security_group_egress
134
+ Aws::EC2::Endpoints::AuthorizeSecurityGroupEgress.build(context)
135
+ when :authorize_security_group_ingress
136
+ Aws::EC2::Endpoints::AuthorizeSecurityGroupIngress.build(context)
137
+ when :bundle_instance
138
+ Aws::EC2::Endpoints::BundleInstance.build(context)
139
+ when :cancel_bundle_task
140
+ Aws::EC2::Endpoints::CancelBundleTask.build(context)
141
+ when :cancel_capacity_reservation
142
+ Aws::EC2::Endpoints::CancelCapacityReservation.build(context)
143
+ when :cancel_capacity_reservation_fleets
144
+ Aws::EC2::Endpoints::CancelCapacityReservationFleets.build(context)
145
+ when :cancel_conversion_task
146
+ Aws::EC2::Endpoints::CancelConversionTask.build(context)
147
+ when :cancel_export_task
148
+ Aws::EC2::Endpoints::CancelExportTask.build(context)
149
+ when :cancel_image_launch_permission
150
+ Aws::EC2::Endpoints::CancelImageLaunchPermission.build(context)
151
+ when :cancel_import_task
152
+ Aws::EC2::Endpoints::CancelImportTask.build(context)
153
+ when :cancel_reserved_instances_listing
154
+ Aws::EC2::Endpoints::CancelReservedInstancesListing.build(context)
155
+ when :cancel_spot_fleet_requests
156
+ Aws::EC2::Endpoints::CancelSpotFleetRequests.build(context)
157
+ when :cancel_spot_instance_requests
158
+ Aws::EC2::Endpoints::CancelSpotInstanceRequests.build(context)
159
+ when :confirm_product_instance
160
+ Aws::EC2::Endpoints::ConfirmProductInstance.build(context)
161
+ when :copy_fpga_image
162
+ Aws::EC2::Endpoints::CopyFpgaImage.build(context)
163
+ when :copy_image
164
+ Aws::EC2::Endpoints::CopyImage.build(context)
165
+ when :copy_snapshot
166
+ Aws::EC2::Endpoints::CopySnapshot.build(context)
167
+ when :create_capacity_reservation
168
+ Aws::EC2::Endpoints::CreateCapacityReservation.build(context)
169
+ when :create_capacity_reservation_fleet
170
+ Aws::EC2::Endpoints::CreateCapacityReservationFleet.build(context)
171
+ when :create_carrier_gateway
172
+ Aws::EC2::Endpoints::CreateCarrierGateway.build(context)
173
+ when :create_client_vpn_endpoint
174
+ Aws::EC2::Endpoints::CreateClientVpnEndpoint.build(context)
175
+ when :create_client_vpn_route
176
+ Aws::EC2::Endpoints::CreateClientVpnRoute.build(context)
177
+ when :create_coip_cidr
178
+ Aws::EC2::Endpoints::CreateCoipCidr.build(context)
179
+ when :create_coip_pool
180
+ Aws::EC2::Endpoints::CreateCoipPool.build(context)
181
+ when :create_customer_gateway
182
+ Aws::EC2::Endpoints::CreateCustomerGateway.build(context)
183
+ when :create_default_subnet
184
+ Aws::EC2::Endpoints::CreateDefaultSubnet.build(context)
185
+ when :create_default_vpc
186
+ Aws::EC2::Endpoints::CreateDefaultVpc.build(context)
187
+ when :create_dhcp_options
188
+ Aws::EC2::Endpoints::CreateDhcpOptions.build(context)
189
+ when :create_egress_only_internet_gateway
190
+ Aws::EC2::Endpoints::CreateEgressOnlyInternetGateway.build(context)
191
+ when :create_fleet
192
+ Aws::EC2::Endpoints::CreateFleet.build(context)
193
+ when :create_flow_logs
194
+ Aws::EC2::Endpoints::CreateFlowLogs.build(context)
195
+ when :create_fpga_image
196
+ Aws::EC2::Endpoints::CreateFpgaImage.build(context)
197
+ when :create_image
198
+ Aws::EC2::Endpoints::CreateImage.build(context)
199
+ when :create_instance_connect_endpoint
200
+ Aws::EC2::Endpoints::CreateInstanceConnectEndpoint.build(context)
201
+ when :create_instance_event_window
202
+ Aws::EC2::Endpoints::CreateInstanceEventWindow.build(context)
203
+ when :create_instance_export_task
204
+ Aws::EC2::Endpoints::CreateInstanceExportTask.build(context)
205
+ when :create_internet_gateway
206
+ Aws::EC2::Endpoints::CreateInternetGateway.build(context)
207
+ when :create_ipam
208
+ Aws::EC2::Endpoints::CreateIpam.build(context)
209
+ when :create_ipam_pool
210
+ Aws::EC2::Endpoints::CreateIpamPool.build(context)
211
+ when :create_ipam_resource_discovery
212
+ Aws::EC2::Endpoints::CreateIpamResourceDiscovery.build(context)
213
+ when :create_ipam_scope
214
+ Aws::EC2::Endpoints::CreateIpamScope.build(context)
215
+ when :create_key_pair
216
+ Aws::EC2::Endpoints::CreateKeyPair.build(context)
217
+ when :create_launch_template
218
+ Aws::EC2::Endpoints::CreateLaunchTemplate.build(context)
219
+ when :create_launch_template_version
220
+ Aws::EC2::Endpoints::CreateLaunchTemplateVersion.build(context)
221
+ when :create_local_gateway_route
222
+ Aws::EC2::Endpoints::CreateLocalGatewayRoute.build(context)
223
+ when :create_local_gateway_route_table
224
+ Aws::EC2::Endpoints::CreateLocalGatewayRouteTable.build(context)
225
+ when :create_local_gateway_route_table_virtual_interface_group_association
226
+ Aws::EC2::Endpoints::CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociation.build(context)
227
+ when :create_local_gateway_route_table_vpc_association
228
+ Aws::EC2::Endpoints::CreateLocalGatewayRouteTableVpcAssociation.build(context)
229
+ when :create_managed_prefix_list
230
+ Aws::EC2::Endpoints::CreateManagedPrefixList.build(context)
231
+ when :create_nat_gateway
232
+ Aws::EC2::Endpoints::CreateNatGateway.build(context)
233
+ when :create_network_acl
234
+ Aws::EC2::Endpoints::CreateNetworkAcl.build(context)
235
+ when :create_network_acl_entry
236
+ Aws::EC2::Endpoints::CreateNetworkAclEntry.build(context)
237
+ when :create_network_insights_access_scope
238
+ Aws::EC2::Endpoints::CreateNetworkInsightsAccessScope.build(context)
239
+ when :create_network_insights_path
240
+ Aws::EC2::Endpoints::CreateNetworkInsightsPath.build(context)
241
+ when :create_network_interface
242
+ Aws::EC2::Endpoints::CreateNetworkInterface.build(context)
243
+ when :create_network_interface_permission
244
+ Aws::EC2::Endpoints::CreateNetworkInterfacePermission.build(context)
245
+ when :create_placement_group
246
+ Aws::EC2::Endpoints::CreatePlacementGroup.build(context)
247
+ when :create_public_ipv_4_pool
248
+ Aws::EC2::Endpoints::CreatePublicIpv4Pool.build(context)
249
+ when :create_replace_root_volume_task
250
+ Aws::EC2::Endpoints::CreateReplaceRootVolumeTask.build(context)
251
+ when :create_reserved_instances_listing
252
+ Aws::EC2::Endpoints::CreateReservedInstancesListing.build(context)
253
+ when :create_restore_image_task
254
+ Aws::EC2::Endpoints::CreateRestoreImageTask.build(context)
255
+ when :create_route
256
+ Aws::EC2::Endpoints::CreateRoute.build(context)
257
+ when :create_route_table
258
+ Aws::EC2::Endpoints::CreateRouteTable.build(context)
259
+ when :create_security_group
260
+ Aws::EC2::Endpoints::CreateSecurityGroup.build(context)
261
+ when :create_snapshot
262
+ Aws::EC2::Endpoints::CreateSnapshot.build(context)
263
+ when :create_snapshots
264
+ Aws::EC2::Endpoints::CreateSnapshots.build(context)
265
+ when :create_spot_datafeed_subscription
266
+ Aws::EC2::Endpoints::CreateSpotDatafeedSubscription.build(context)
267
+ when :create_store_image_task
268
+ Aws::EC2::Endpoints::CreateStoreImageTask.build(context)
269
+ when :create_subnet
270
+ Aws::EC2::Endpoints::CreateSubnet.build(context)
271
+ when :create_subnet_cidr_reservation
272
+ Aws::EC2::Endpoints::CreateSubnetCidrReservation.build(context)
273
+ when :create_tags
274
+ Aws::EC2::Endpoints::CreateTags.build(context)
275
+ when :create_traffic_mirror_filter
276
+ Aws::EC2::Endpoints::CreateTrafficMirrorFilter.build(context)
277
+ when :create_traffic_mirror_filter_rule
278
+ Aws::EC2::Endpoints::CreateTrafficMirrorFilterRule.build(context)
279
+ when :create_traffic_mirror_session
280
+ Aws::EC2::Endpoints::CreateTrafficMirrorSession.build(context)
281
+ when :create_traffic_mirror_target
282
+ Aws::EC2::Endpoints::CreateTrafficMirrorTarget.build(context)
283
+ when :create_transit_gateway
284
+ Aws::EC2::Endpoints::CreateTransitGateway.build(context)
285
+ when :create_transit_gateway_connect
286
+ Aws::EC2::Endpoints::CreateTransitGatewayConnect.build(context)
287
+ when :create_transit_gateway_connect_peer
288
+ Aws::EC2::Endpoints::CreateTransitGatewayConnectPeer.build(context)
289
+ when :create_transit_gateway_multicast_domain
290
+ Aws::EC2::Endpoints::CreateTransitGatewayMulticastDomain.build(context)
291
+ when :create_transit_gateway_peering_attachment
292
+ Aws::EC2::Endpoints::CreateTransitGatewayPeeringAttachment.build(context)
293
+ when :create_transit_gateway_policy_table
294
+ Aws::EC2::Endpoints::CreateTransitGatewayPolicyTable.build(context)
295
+ when :create_transit_gateway_prefix_list_reference
296
+ Aws::EC2::Endpoints::CreateTransitGatewayPrefixListReference.build(context)
297
+ when :create_transit_gateway_route
298
+ Aws::EC2::Endpoints::CreateTransitGatewayRoute.build(context)
299
+ when :create_transit_gateway_route_table
300
+ Aws::EC2::Endpoints::CreateTransitGatewayRouteTable.build(context)
301
+ when :create_transit_gateway_route_table_announcement
302
+ Aws::EC2::Endpoints::CreateTransitGatewayRouteTableAnnouncement.build(context)
303
+ when :create_transit_gateway_vpc_attachment
304
+ Aws::EC2::Endpoints::CreateTransitGatewayVpcAttachment.build(context)
305
+ when :create_verified_access_endpoint
306
+ Aws::EC2::Endpoints::CreateVerifiedAccessEndpoint.build(context)
307
+ when :create_verified_access_group
308
+ Aws::EC2::Endpoints::CreateVerifiedAccessGroup.build(context)
309
+ when :create_verified_access_instance
310
+ Aws::EC2::Endpoints::CreateVerifiedAccessInstance.build(context)
311
+ when :create_verified_access_trust_provider
312
+ Aws::EC2::Endpoints::CreateVerifiedAccessTrustProvider.build(context)
313
+ when :create_volume
314
+ Aws::EC2::Endpoints::CreateVolume.build(context)
315
+ when :create_vpc
316
+ Aws::EC2::Endpoints::CreateVpc.build(context)
317
+ when :create_vpc_endpoint
318
+ Aws::EC2::Endpoints::CreateVpcEndpoint.build(context)
319
+ when :create_vpc_endpoint_connection_notification
320
+ Aws::EC2::Endpoints::CreateVpcEndpointConnectionNotification.build(context)
321
+ when :create_vpc_endpoint_service_configuration
322
+ Aws::EC2::Endpoints::CreateVpcEndpointServiceConfiguration.build(context)
323
+ when :create_vpc_peering_connection
324
+ Aws::EC2::Endpoints::CreateVpcPeeringConnection.build(context)
325
+ when :create_vpn_connection
326
+ Aws::EC2::Endpoints::CreateVpnConnection.build(context)
327
+ when :create_vpn_connection_route
328
+ Aws::EC2::Endpoints::CreateVpnConnectionRoute.build(context)
329
+ when :create_vpn_gateway
330
+ Aws::EC2::Endpoints::CreateVpnGateway.build(context)
331
+ when :delete_carrier_gateway
332
+ Aws::EC2::Endpoints::DeleteCarrierGateway.build(context)
333
+ when :delete_client_vpn_endpoint
334
+ Aws::EC2::Endpoints::DeleteClientVpnEndpoint.build(context)
335
+ when :delete_client_vpn_route
336
+ Aws::EC2::Endpoints::DeleteClientVpnRoute.build(context)
337
+ when :delete_coip_cidr
338
+ Aws::EC2::Endpoints::DeleteCoipCidr.build(context)
339
+ when :delete_coip_pool
340
+ Aws::EC2::Endpoints::DeleteCoipPool.build(context)
341
+ when :delete_customer_gateway
342
+ Aws::EC2::Endpoints::DeleteCustomerGateway.build(context)
343
+ when :delete_dhcp_options
344
+ Aws::EC2::Endpoints::DeleteDhcpOptions.build(context)
345
+ when :delete_egress_only_internet_gateway
346
+ Aws::EC2::Endpoints::DeleteEgressOnlyInternetGateway.build(context)
347
+ when :delete_fleets
348
+ Aws::EC2::Endpoints::DeleteFleets.build(context)
349
+ when :delete_flow_logs
350
+ Aws::EC2::Endpoints::DeleteFlowLogs.build(context)
351
+ when :delete_fpga_image
352
+ Aws::EC2::Endpoints::DeleteFpgaImage.build(context)
353
+ when :delete_instance_connect_endpoint
354
+ Aws::EC2::Endpoints::DeleteInstanceConnectEndpoint.build(context)
355
+ when :delete_instance_event_window
356
+ Aws::EC2::Endpoints::DeleteInstanceEventWindow.build(context)
357
+ when :delete_internet_gateway
358
+ Aws::EC2::Endpoints::DeleteInternetGateway.build(context)
359
+ when :delete_ipam
360
+ Aws::EC2::Endpoints::DeleteIpam.build(context)
361
+ when :delete_ipam_pool
362
+ Aws::EC2::Endpoints::DeleteIpamPool.build(context)
363
+ when :delete_ipam_resource_discovery
364
+ Aws::EC2::Endpoints::DeleteIpamResourceDiscovery.build(context)
365
+ when :delete_ipam_scope
366
+ Aws::EC2::Endpoints::DeleteIpamScope.build(context)
367
+ when :delete_key_pair
368
+ Aws::EC2::Endpoints::DeleteKeyPair.build(context)
369
+ when :delete_launch_template
370
+ Aws::EC2::Endpoints::DeleteLaunchTemplate.build(context)
371
+ when :delete_launch_template_versions
372
+ Aws::EC2::Endpoints::DeleteLaunchTemplateVersions.build(context)
373
+ when :delete_local_gateway_route
374
+ Aws::EC2::Endpoints::DeleteLocalGatewayRoute.build(context)
375
+ when :delete_local_gateway_route_table
376
+ Aws::EC2::Endpoints::DeleteLocalGatewayRouteTable.build(context)
377
+ when :delete_local_gateway_route_table_virtual_interface_group_association
378
+ Aws::EC2::Endpoints::DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociation.build(context)
379
+ when :delete_local_gateway_route_table_vpc_association
380
+ Aws::EC2::Endpoints::DeleteLocalGatewayRouteTableVpcAssociation.build(context)
381
+ when :delete_managed_prefix_list
382
+ Aws::EC2::Endpoints::DeleteManagedPrefixList.build(context)
383
+ when :delete_nat_gateway
384
+ Aws::EC2::Endpoints::DeleteNatGateway.build(context)
385
+ when :delete_network_acl
386
+ Aws::EC2::Endpoints::DeleteNetworkAcl.build(context)
387
+ when :delete_network_acl_entry
388
+ Aws::EC2::Endpoints::DeleteNetworkAclEntry.build(context)
389
+ when :delete_network_insights_access_scope
390
+ Aws::EC2::Endpoints::DeleteNetworkInsightsAccessScope.build(context)
391
+ when :delete_network_insights_access_scope_analysis
392
+ Aws::EC2::Endpoints::DeleteNetworkInsightsAccessScopeAnalysis.build(context)
393
+ when :delete_network_insights_analysis
394
+ Aws::EC2::Endpoints::DeleteNetworkInsightsAnalysis.build(context)
395
+ when :delete_network_insights_path
396
+ Aws::EC2::Endpoints::DeleteNetworkInsightsPath.build(context)
397
+ when :delete_network_interface
398
+ Aws::EC2::Endpoints::DeleteNetworkInterface.build(context)
399
+ when :delete_network_interface_permission
400
+ Aws::EC2::Endpoints::DeleteNetworkInterfacePermission.build(context)
401
+ when :delete_placement_group
402
+ Aws::EC2::Endpoints::DeletePlacementGroup.build(context)
403
+ when :delete_public_ipv_4_pool
404
+ Aws::EC2::Endpoints::DeletePublicIpv4Pool.build(context)
405
+ when :delete_queued_reserved_instances
406
+ Aws::EC2::Endpoints::DeleteQueuedReservedInstances.build(context)
407
+ when :delete_route
408
+ Aws::EC2::Endpoints::DeleteRoute.build(context)
409
+ when :delete_route_table
410
+ Aws::EC2::Endpoints::DeleteRouteTable.build(context)
411
+ when :delete_security_group
412
+ Aws::EC2::Endpoints::DeleteSecurityGroup.build(context)
413
+ when :delete_snapshot
414
+ Aws::EC2::Endpoints::DeleteSnapshot.build(context)
415
+ when :delete_spot_datafeed_subscription
416
+ Aws::EC2::Endpoints::DeleteSpotDatafeedSubscription.build(context)
417
+ when :delete_subnet
418
+ Aws::EC2::Endpoints::DeleteSubnet.build(context)
419
+ when :delete_subnet_cidr_reservation
420
+ Aws::EC2::Endpoints::DeleteSubnetCidrReservation.build(context)
421
+ when :delete_tags
422
+ Aws::EC2::Endpoints::DeleteTags.build(context)
423
+ when :delete_traffic_mirror_filter
424
+ Aws::EC2::Endpoints::DeleteTrafficMirrorFilter.build(context)
425
+ when :delete_traffic_mirror_filter_rule
426
+ Aws::EC2::Endpoints::DeleteTrafficMirrorFilterRule.build(context)
427
+ when :delete_traffic_mirror_session
428
+ Aws::EC2::Endpoints::DeleteTrafficMirrorSession.build(context)
429
+ when :delete_traffic_mirror_target
430
+ Aws::EC2::Endpoints::DeleteTrafficMirrorTarget.build(context)
431
+ when :delete_transit_gateway
432
+ Aws::EC2::Endpoints::DeleteTransitGateway.build(context)
433
+ when :delete_transit_gateway_connect
434
+ Aws::EC2::Endpoints::DeleteTransitGatewayConnect.build(context)
435
+ when :delete_transit_gateway_connect_peer
436
+ Aws::EC2::Endpoints::DeleteTransitGatewayConnectPeer.build(context)
437
+ when :delete_transit_gateway_multicast_domain
438
+ Aws::EC2::Endpoints::DeleteTransitGatewayMulticastDomain.build(context)
439
+ when :delete_transit_gateway_peering_attachment
440
+ Aws::EC2::Endpoints::DeleteTransitGatewayPeeringAttachment.build(context)
441
+ when :delete_transit_gateway_policy_table
442
+ Aws::EC2::Endpoints::DeleteTransitGatewayPolicyTable.build(context)
443
+ when :delete_transit_gateway_prefix_list_reference
444
+ Aws::EC2::Endpoints::DeleteTransitGatewayPrefixListReference.build(context)
445
+ when :delete_transit_gateway_route
446
+ Aws::EC2::Endpoints::DeleteTransitGatewayRoute.build(context)
447
+ when :delete_transit_gateway_route_table
448
+ Aws::EC2::Endpoints::DeleteTransitGatewayRouteTable.build(context)
449
+ when :delete_transit_gateway_route_table_announcement
450
+ Aws::EC2::Endpoints::DeleteTransitGatewayRouteTableAnnouncement.build(context)
451
+ when :delete_transit_gateway_vpc_attachment
452
+ Aws::EC2::Endpoints::DeleteTransitGatewayVpcAttachment.build(context)
453
+ when :delete_verified_access_endpoint
454
+ Aws::EC2::Endpoints::DeleteVerifiedAccessEndpoint.build(context)
455
+ when :delete_verified_access_group
456
+ Aws::EC2::Endpoints::DeleteVerifiedAccessGroup.build(context)
457
+ when :delete_verified_access_instance
458
+ Aws::EC2::Endpoints::DeleteVerifiedAccessInstance.build(context)
459
+ when :delete_verified_access_trust_provider
460
+ Aws::EC2::Endpoints::DeleteVerifiedAccessTrustProvider.build(context)
461
+ when :delete_volume
462
+ Aws::EC2::Endpoints::DeleteVolume.build(context)
463
+ when :delete_vpc
464
+ Aws::EC2::Endpoints::DeleteVpc.build(context)
465
+ when :delete_vpc_endpoint_connection_notifications
466
+ Aws::EC2::Endpoints::DeleteVpcEndpointConnectionNotifications.build(context)
467
+ when :delete_vpc_endpoint_service_configurations
468
+ Aws::EC2::Endpoints::DeleteVpcEndpointServiceConfigurations.build(context)
469
+ when :delete_vpc_endpoints
470
+ Aws::EC2::Endpoints::DeleteVpcEndpoints.build(context)
471
+ when :delete_vpc_peering_connection
472
+ Aws::EC2::Endpoints::DeleteVpcPeeringConnection.build(context)
473
+ when :delete_vpn_connection
474
+ Aws::EC2::Endpoints::DeleteVpnConnection.build(context)
475
+ when :delete_vpn_connection_route
476
+ Aws::EC2::Endpoints::DeleteVpnConnectionRoute.build(context)
477
+ when :delete_vpn_gateway
478
+ Aws::EC2::Endpoints::DeleteVpnGateway.build(context)
479
+ when :deprovision_byoip_cidr
480
+ Aws::EC2::Endpoints::DeprovisionByoipCidr.build(context)
481
+ when :deprovision_ipam_pool_cidr
482
+ Aws::EC2::Endpoints::DeprovisionIpamPoolCidr.build(context)
483
+ when :deprovision_public_ipv_4_pool_cidr
484
+ Aws::EC2::Endpoints::DeprovisionPublicIpv4PoolCidr.build(context)
485
+ when :deregister_image
486
+ Aws::EC2::Endpoints::DeregisterImage.build(context)
487
+ when :deregister_instance_event_notification_attributes
488
+ Aws::EC2::Endpoints::DeregisterInstanceEventNotificationAttributes.build(context)
489
+ when :deregister_transit_gateway_multicast_group_members
490
+ Aws::EC2::Endpoints::DeregisterTransitGatewayMulticastGroupMembers.build(context)
491
+ when :deregister_transit_gateway_multicast_group_sources
492
+ Aws::EC2::Endpoints::DeregisterTransitGatewayMulticastGroupSources.build(context)
493
+ when :describe_account_attributes
494
+ Aws::EC2::Endpoints::DescribeAccountAttributes.build(context)
495
+ when :describe_address_transfers
496
+ Aws::EC2::Endpoints::DescribeAddressTransfers.build(context)
497
+ when :describe_addresses
498
+ Aws::EC2::Endpoints::DescribeAddresses.build(context)
499
+ when :describe_addresses_attribute
500
+ Aws::EC2::Endpoints::DescribeAddressesAttribute.build(context)
501
+ when :describe_aggregate_id_format
502
+ Aws::EC2::Endpoints::DescribeAggregateIdFormat.build(context)
503
+ when :describe_availability_zones
504
+ Aws::EC2::Endpoints::DescribeAvailabilityZones.build(context)
505
+ when :describe_aws_network_performance_metric_subscriptions
506
+ Aws::EC2::Endpoints::DescribeAwsNetworkPerformanceMetricSubscriptions.build(context)
507
+ when :describe_bundle_tasks
508
+ Aws::EC2::Endpoints::DescribeBundleTasks.build(context)
509
+ when :describe_byoip_cidrs
510
+ Aws::EC2::Endpoints::DescribeByoipCidrs.build(context)
511
+ when :describe_capacity_block_offerings
512
+ Aws::EC2::Endpoints::DescribeCapacityBlockOfferings.build(context)
513
+ when :describe_capacity_reservation_fleets
514
+ Aws::EC2::Endpoints::DescribeCapacityReservationFleets.build(context)
515
+ when :describe_capacity_reservations
516
+ Aws::EC2::Endpoints::DescribeCapacityReservations.build(context)
517
+ when :describe_carrier_gateways
518
+ Aws::EC2::Endpoints::DescribeCarrierGateways.build(context)
519
+ when :describe_classic_link_instances
520
+ Aws::EC2::Endpoints::DescribeClassicLinkInstances.build(context)
521
+ when :describe_client_vpn_authorization_rules
522
+ Aws::EC2::Endpoints::DescribeClientVpnAuthorizationRules.build(context)
523
+ when :describe_client_vpn_connections
524
+ Aws::EC2::Endpoints::DescribeClientVpnConnections.build(context)
525
+ when :describe_client_vpn_endpoints
526
+ Aws::EC2::Endpoints::DescribeClientVpnEndpoints.build(context)
527
+ when :describe_client_vpn_routes
528
+ Aws::EC2::Endpoints::DescribeClientVpnRoutes.build(context)
529
+ when :describe_client_vpn_target_networks
530
+ Aws::EC2::Endpoints::DescribeClientVpnTargetNetworks.build(context)
531
+ when :describe_coip_pools
532
+ Aws::EC2::Endpoints::DescribeCoipPools.build(context)
533
+ when :describe_conversion_tasks
534
+ Aws::EC2::Endpoints::DescribeConversionTasks.build(context)
535
+ when :describe_customer_gateways
536
+ Aws::EC2::Endpoints::DescribeCustomerGateways.build(context)
537
+ when :describe_dhcp_options
538
+ Aws::EC2::Endpoints::DescribeDhcpOptions.build(context)
539
+ when :describe_egress_only_internet_gateways
540
+ Aws::EC2::Endpoints::DescribeEgressOnlyInternetGateways.build(context)
541
+ when :describe_elastic_gpus
542
+ Aws::EC2::Endpoints::DescribeElasticGpus.build(context)
543
+ when :describe_export_image_tasks
544
+ Aws::EC2::Endpoints::DescribeExportImageTasks.build(context)
545
+ when :describe_export_tasks
546
+ Aws::EC2::Endpoints::DescribeExportTasks.build(context)
547
+ when :describe_fast_launch_images
548
+ Aws::EC2::Endpoints::DescribeFastLaunchImages.build(context)
549
+ when :describe_fast_snapshot_restores
550
+ Aws::EC2::Endpoints::DescribeFastSnapshotRestores.build(context)
551
+ when :describe_fleet_history
552
+ Aws::EC2::Endpoints::DescribeFleetHistory.build(context)
553
+ when :describe_fleet_instances
554
+ Aws::EC2::Endpoints::DescribeFleetInstances.build(context)
555
+ when :describe_fleets
556
+ Aws::EC2::Endpoints::DescribeFleets.build(context)
557
+ when :describe_flow_logs
558
+ Aws::EC2::Endpoints::DescribeFlowLogs.build(context)
559
+ when :describe_fpga_image_attribute
560
+ Aws::EC2::Endpoints::DescribeFpgaImageAttribute.build(context)
561
+ when :describe_fpga_images
562
+ Aws::EC2::Endpoints::DescribeFpgaImages.build(context)
563
+ when :describe_host_reservation_offerings
564
+ Aws::EC2::Endpoints::DescribeHostReservationOfferings.build(context)
565
+ when :describe_host_reservations
566
+ Aws::EC2::Endpoints::DescribeHostReservations.build(context)
567
+ when :describe_hosts
568
+ Aws::EC2::Endpoints::DescribeHosts.build(context)
569
+ when :describe_iam_instance_profile_associations
570
+ Aws::EC2::Endpoints::DescribeIamInstanceProfileAssociations.build(context)
571
+ when :describe_id_format
572
+ Aws::EC2::Endpoints::DescribeIdFormat.build(context)
573
+ when :describe_identity_id_format
574
+ Aws::EC2::Endpoints::DescribeIdentityIdFormat.build(context)
575
+ when :describe_image_attribute
576
+ Aws::EC2::Endpoints::DescribeImageAttribute.build(context)
577
+ when :describe_images
578
+ Aws::EC2::Endpoints::DescribeImages.build(context)
579
+ when :describe_import_image_tasks
580
+ Aws::EC2::Endpoints::DescribeImportImageTasks.build(context)
581
+ when :describe_import_snapshot_tasks
582
+ Aws::EC2::Endpoints::DescribeImportSnapshotTasks.build(context)
583
+ when :describe_instance_attribute
584
+ Aws::EC2::Endpoints::DescribeInstanceAttribute.build(context)
585
+ when :describe_instance_connect_endpoints
586
+ Aws::EC2::Endpoints::DescribeInstanceConnectEndpoints.build(context)
587
+ when :describe_instance_credit_specifications
588
+ Aws::EC2::Endpoints::DescribeInstanceCreditSpecifications.build(context)
589
+ when :describe_instance_event_notification_attributes
590
+ Aws::EC2::Endpoints::DescribeInstanceEventNotificationAttributes.build(context)
591
+ when :describe_instance_event_windows
592
+ Aws::EC2::Endpoints::DescribeInstanceEventWindows.build(context)
593
+ when :describe_instance_status
594
+ Aws::EC2::Endpoints::DescribeInstanceStatus.build(context)
595
+ when :describe_instance_type_offerings
596
+ Aws::EC2::Endpoints::DescribeInstanceTypeOfferings.build(context)
597
+ when :describe_instance_types
598
+ Aws::EC2::Endpoints::DescribeInstanceTypes.build(context)
599
+ when :describe_instances
600
+ Aws::EC2::Endpoints::DescribeInstances.build(context)
601
+ when :describe_internet_gateways
602
+ Aws::EC2::Endpoints::DescribeInternetGateways.build(context)
603
+ when :describe_ipam_pools
604
+ Aws::EC2::Endpoints::DescribeIpamPools.build(context)
605
+ when :describe_ipam_resource_discoveries
606
+ Aws::EC2::Endpoints::DescribeIpamResourceDiscoveries.build(context)
607
+ when :describe_ipam_resource_discovery_associations
608
+ Aws::EC2::Endpoints::DescribeIpamResourceDiscoveryAssociations.build(context)
609
+ when :describe_ipam_scopes
610
+ Aws::EC2::Endpoints::DescribeIpamScopes.build(context)
611
+ when :describe_ipams
612
+ Aws::EC2::Endpoints::DescribeIpams.build(context)
613
+ when :describe_ipv_6_pools
614
+ Aws::EC2::Endpoints::DescribeIpv6Pools.build(context)
615
+ when :describe_key_pairs
616
+ Aws::EC2::Endpoints::DescribeKeyPairs.build(context)
617
+ when :describe_launch_template_versions
618
+ Aws::EC2::Endpoints::DescribeLaunchTemplateVersions.build(context)
619
+ when :describe_launch_templates
620
+ Aws::EC2::Endpoints::DescribeLaunchTemplates.build(context)
621
+ when :describe_local_gateway_route_table_virtual_interface_group_associations
622
+ Aws::EC2::Endpoints::DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociations.build(context)
623
+ when :describe_local_gateway_route_table_vpc_associations
624
+ Aws::EC2::Endpoints::DescribeLocalGatewayRouteTableVpcAssociations.build(context)
625
+ when :describe_local_gateway_route_tables
626
+ Aws::EC2::Endpoints::DescribeLocalGatewayRouteTables.build(context)
627
+ when :describe_local_gateway_virtual_interface_groups
628
+ Aws::EC2::Endpoints::DescribeLocalGatewayVirtualInterfaceGroups.build(context)
629
+ when :describe_local_gateway_virtual_interfaces
630
+ Aws::EC2::Endpoints::DescribeLocalGatewayVirtualInterfaces.build(context)
631
+ when :describe_local_gateways
632
+ Aws::EC2::Endpoints::DescribeLocalGateways.build(context)
633
+ when :describe_managed_prefix_lists
634
+ Aws::EC2::Endpoints::DescribeManagedPrefixLists.build(context)
635
+ when :describe_moving_addresses
636
+ Aws::EC2::Endpoints::DescribeMovingAddresses.build(context)
637
+ when :describe_nat_gateways
638
+ Aws::EC2::Endpoints::DescribeNatGateways.build(context)
639
+ when :describe_network_acls
640
+ Aws::EC2::Endpoints::DescribeNetworkAcls.build(context)
641
+ when :describe_network_insights_access_scope_analyses
642
+ Aws::EC2::Endpoints::DescribeNetworkInsightsAccessScopeAnalyses.build(context)
643
+ when :describe_network_insights_access_scopes
644
+ Aws::EC2::Endpoints::DescribeNetworkInsightsAccessScopes.build(context)
645
+ when :describe_network_insights_analyses
646
+ Aws::EC2::Endpoints::DescribeNetworkInsightsAnalyses.build(context)
647
+ when :describe_network_insights_paths
648
+ Aws::EC2::Endpoints::DescribeNetworkInsightsPaths.build(context)
649
+ when :describe_network_interface_attribute
650
+ Aws::EC2::Endpoints::DescribeNetworkInterfaceAttribute.build(context)
651
+ when :describe_network_interface_permissions
652
+ Aws::EC2::Endpoints::DescribeNetworkInterfacePermissions.build(context)
653
+ when :describe_network_interfaces
654
+ Aws::EC2::Endpoints::DescribeNetworkInterfaces.build(context)
655
+ when :describe_placement_groups
656
+ Aws::EC2::Endpoints::DescribePlacementGroups.build(context)
657
+ when :describe_prefix_lists
658
+ Aws::EC2::Endpoints::DescribePrefixLists.build(context)
659
+ when :describe_principal_id_format
660
+ Aws::EC2::Endpoints::DescribePrincipalIdFormat.build(context)
661
+ when :describe_public_ipv_4_pools
662
+ Aws::EC2::Endpoints::DescribePublicIpv4Pools.build(context)
663
+ when :describe_regions
664
+ Aws::EC2::Endpoints::DescribeRegions.build(context)
665
+ when :describe_replace_root_volume_tasks
666
+ Aws::EC2::Endpoints::DescribeReplaceRootVolumeTasks.build(context)
667
+ when :describe_reserved_instances
668
+ Aws::EC2::Endpoints::DescribeReservedInstances.build(context)
669
+ when :describe_reserved_instances_listings
670
+ Aws::EC2::Endpoints::DescribeReservedInstancesListings.build(context)
671
+ when :describe_reserved_instances_modifications
672
+ Aws::EC2::Endpoints::DescribeReservedInstancesModifications.build(context)
673
+ when :describe_reserved_instances_offerings
674
+ Aws::EC2::Endpoints::DescribeReservedInstancesOfferings.build(context)
675
+ when :describe_route_tables
676
+ Aws::EC2::Endpoints::DescribeRouteTables.build(context)
677
+ when :describe_scheduled_instance_availability
678
+ Aws::EC2::Endpoints::DescribeScheduledInstanceAvailability.build(context)
679
+ when :describe_scheduled_instances
680
+ Aws::EC2::Endpoints::DescribeScheduledInstances.build(context)
681
+ when :describe_security_group_references
682
+ Aws::EC2::Endpoints::DescribeSecurityGroupReferences.build(context)
683
+ when :describe_security_group_rules
684
+ Aws::EC2::Endpoints::DescribeSecurityGroupRules.build(context)
685
+ when :describe_security_groups
686
+ Aws::EC2::Endpoints::DescribeSecurityGroups.build(context)
687
+ when :describe_snapshot_attribute
688
+ Aws::EC2::Endpoints::DescribeSnapshotAttribute.build(context)
689
+ when :describe_snapshot_tier_status
690
+ Aws::EC2::Endpoints::DescribeSnapshotTierStatus.build(context)
691
+ when :describe_snapshots
692
+ Aws::EC2::Endpoints::DescribeSnapshots.build(context)
693
+ when :describe_spot_datafeed_subscription
694
+ Aws::EC2::Endpoints::DescribeSpotDatafeedSubscription.build(context)
695
+ when :describe_spot_fleet_instances
696
+ Aws::EC2::Endpoints::DescribeSpotFleetInstances.build(context)
697
+ when :describe_spot_fleet_request_history
698
+ Aws::EC2::Endpoints::DescribeSpotFleetRequestHistory.build(context)
699
+ when :describe_spot_fleet_requests
700
+ Aws::EC2::Endpoints::DescribeSpotFleetRequests.build(context)
701
+ when :describe_spot_instance_requests
702
+ Aws::EC2::Endpoints::DescribeSpotInstanceRequests.build(context)
703
+ when :describe_spot_price_history
704
+ Aws::EC2::Endpoints::DescribeSpotPriceHistory.build(context)
705
+ when :describe_stale_security_groups
706
+ Aws::EC2::Endpoints::DescribeStaleSecurityGroups.build(context)
707
+ when :describe_store_image_tasks
708
+ Aws::EC2::Endpoints::DescribeStoreImageTasks.build(context)
709
+ when :describe_subnets
710
+ Aws::EC2::Endpoints::DescribeSubnets.build(context)
711
+ when :describe_tags
712
+ Aws::EC2::Endpoints::DescribeTags.build(context)
713
+ when :describe_traffic_mirror_filters
714
+ Aws::EC2::Endpoints::DescribeTrafficMirrorFilters.build(context)
715
+ when :describe_traffic_mirror_sessions
716
+ Aws::EC2::Endpoints::DescribeTrafficMirrorSessions.build(context)
717
+ when :describe_traffic_mirror_targets
718
+ Aws::EC2::Endpoints::DescribeTrafficMirrorTargets.build(context)
719
+ when :describe_transit_gateway_attachments
720
+ Aws::EC2::Endpoints::DescribeTransitGatewayAttachments.build(context)
721
+ when :describe_transit_gateway_connect_peers
722
+ Aws::EC2::Endpoints::DescribeTransitGatewayConnectPeers.build(context)
723
+ when :describe_transit_gateway_connects
724
+ Aws::EC2::Endpoints::DescribeTransitGatewayConnects.build(context)
725
+ when :describe_transit_gateway_multicast_domains
726
+ Aws::EC2::Endpoints::DescribeTransitGatewayMulticastDomains.build(context)
727
+ when :describe_transit_gateway_peering_attachments
728
+ Aws::EC2::Endpoints::DescribeTransitGatewayPeeringAttachments.build(context)
729
+ when :describe_transit_gateway_policy_tables
730
+ Aws::EC2::Endpoints::DescribeTransitGatewayPolicyTables.build(context)
731
+ when :describe_transit_gateway_route_table_announcements
732
+ Aws::EC2::Endpoints::DescribeTransitGatewayRouteTableAnnouncements.build(context)
733
+ when :describe_transit_gateway_route_tables
734
+ Aws::EC2::Endpoints::DescribeTransitGatewayRouteTables.build(context)
735
+ when :describe_transit_gateway_vpc_attachments
736
+ Aws::EC2::Endpoints::DescribeTransitGatewayVpcAttachments.build(context)
737
+ when :describe_transit_gateways
738
+ Aws::EC2::Endpoints::DescribeTransitGateways.build(context)
739
+ when :describe_trunk_interface_associations
740
+ Aws::EC2::Endpoints::DescribeTrunkInterfaceAssociations.build(context)
741
+ when :describe_verified_access_endpoints
742
+ Aws::EC2::Endpoints::DescribeVerifiedAccessEndpoints.build(context)
743
+ when :describe_verified_access_groups
744
+ Aws::EC2::Endpoints::DescribeVerifiedAccessGroups.build(context)
745
+ when :describe_verified_access_instance_logging_configurations
746
+ Aws::EC2::Endpoints::DescribeVerifiedAccessInstanceLoggingConfigurations.build(context)
747
+ when :describe_verified_access_instances
748
+ Aws::EC2::Endpoints::DescribeVerifiedAccessInstances.build(context)
749
+ when :describe_verified_access_trust_providers
750
+ Aws::EC2::Endpoints::DescribeVerifiedAccessTrustProviders.build(context)
751
+ when :describe_volume_attribute
752
+ Aws::EC2::Endpoints::DescribeVolumeAttribute.build(context)
753
+ when :describe_volume_status
754
+ Aws::EC2::Endpoints::DescribeVolumeStatus.build(context)
755
+ when :describe_volumes
756
+ Aws::EC2::Endpoints::DescribeVolumes.build(context)
757
+ when :describe_volumes_modifications
758
+ Aws::EC2::Endpoints::DescribeVolumesModifications.build(context)
759
+ when :describe_vpc_attribute
760
+ Aws::EC2::Endpoints::DescribeVpcAttribute.build(context)
761
+ when :describe_vpc_classic_link
762
+ Aws::EC2::Endpoints::DescribeVpcClassicLink.build(context)
763
+ when :describe_vpc_classic_link_dns_support
764
+ Aws::EC2::Endpoints::DescribeVpcClassicLinkDnsSupport.build(context)
765
+ when :describe_vpc_endpoint_connection_notifications
766
+ Aws::EC2::Endpoints::DescribeVpcEndpointConnectionNotifications.build(context)
767
+ when :describe_vpc_endpoint_connections
768
+ Aws::EC2::Endpoints::DescribeVpcEndpointConnections.build(context)
769
+ when :describe_vpc_endpoint_service_configurations
770
+ Aws::EC2::Endpoints::DescribeVpcEndpointServiceConfigurations.build(context)
771
+ when :describe_vpc_endpoint_service_permissions
772
+ Aws::EC2::Endpoints::DescribeVpcEndpointServicePermissions.build(context)
773
+ when :describe_vpc_endpoint_services
774
+ Aws::EC2::Endpoints::DescribeVpcEndpointServices.build(context)
775
+ when :describe_vpc_endpoints
776
+ Aws::EC2::Endpoints::DescribeVpcEndpoints.build(context)
777
+ when :describe_vpc_peering_connections
778
+ Aws::EC2::Endpoints::DescribeVpcPeeringConnections.build(context)
779
+ when :describe_vpcs
780
+ Aws::EC2::Endpoints::DescribeVpcs.build(context)
781
+ when :describe_vpn_connections
782
+ Aws::EC2::Endpoints::DescribeVpnConnections.build(context)
783
+ when :describe_vpn_gateways
784
+ Aws::EC2::Endpoints::DescribeVpnGateways.build(context)
785
+ when :detach_classic_link_vpc
786
+ Aws::EC2::Endpoints::DetachClassicLinkVpc.build(context)
787
+ when :detach_internet_gateway
788
+ Aws::EC2::Endpoints::DetachInternetGateway.build(context)
789
+ when :detach_network_interface
790
+ Aws::EC2::Endpoints::DetachNetworkInterface.build(context)
791
+ when :detach_verified_access_trust_provider
792
+ Aws::EC2::Endpoints::DetachVerifiedAccessTrustProvider.build(context)
793
+ when :detach_volume
794
+ Aws::EC2::Endpoints::DetachVolume.build(context)
795
+ when :detach_vpn_gateway
796
+ Aws::EC2::Endpoints::DetachVpnGateway.build(context)
797
+ when :disable_address_transfer
798
+ Aws::EC2::Endpoints::DisableAddressTransfer.build(context)
799
+ when :disable_aws_network_performance_metric_subscription
800
+ Aws::EC2::Endpoints::DisableAwsNetworkPerformanceMetricSubscription.build(context)
801
+ when :disable_ebs_encryption_by_default
802
+ Aws::EC2::Endpoints::DisableEbsEncryptionByDefault.build(context)
803
+ when :disable_fast_launch
804
+ Aws::EC2::Endpoints::DisableFastLaunch.build(context)
805
+ when :disable_fast_snapshot_restores
806
+ Aws::EC2::Endpoints::DisableFastSnapshotRestores.build(context)
807
+ when :disable_image
808
+ Aws::EC2::Endpoints::DisableImage.build(context)
809
+ when :disable_image_block_public_access
810
+ Aws::EC2::Endpoints::DisableImageBlockPublicAccess.build(context)
811
+ when :disable_image_deprecation
812
+ Aws::EC2::Endpoints::DisableImageDeprecation.build(context)
813
+ when :disable_ipam_organization_admin_account
814
+ Aws::EC2::Endpoints::DisableIpamOrganizationAdminAccount.build(context)
815
+ when :disable_serial_console_access
816
+ Aws::EC2::Endpoints::DisableSerialConsoleAccess.build(context)
817
+ when :disable_transit_gateway_route_table_propagation
818
+ Aws::EC2::Endpoints::DisableTransitGatewayRouteTablePropagation.build(context)
819
+ when :disable_vgw_route_propagation
820
+ Aws::EC2::Endpoints::DisableVgwRoutePropagation.build(context)
821
+ when :disable_vpc_classic_link
822
+ Aws::EC2::Endpoints::DisableVpcClassicLink.build(context)
823
+ when :disable_vpc_classic_link_dns_support
824
+ Aws::EC2::Endpoints::DisableVpcClassicLinkDnsSupport.build(context)
825
+ when :disassociate_address
826
+ Aws::EC2::Endpoints::DisassociateAddress.build(context)
827
+ when :disassociate_client_vpn_target_network
828
+ Aws::EC2::Endpoints::DisassociateClientVpnTargetNetwork.build(context)
829
+ when :disassociate_enclave_certificate_iam_role
830
+ Aws::EC2::Endpoints::DisassociateEnclaveCertificateIamRole.build(context)
831
+ when :disassociate_iam_instance_profile
832
+ Aws::EC2::Endpoints::DisassociateIamInstanceProfile.build(context)
833
+ when :disassociate_instance_event_window
834
+ Aws::EC2::Endpoints::DisassociateInstanceEventWindow.build(context)
835
+ when :disassociate_ipam_resource_discovery
836
+ Aws::EC2::Endpoints::DisassociateIpamResourceDiscovery.build(context)
837
+ when :disassociate_nat_gateway_address
838
+ Aws::EC2::Endpoints::DisassociateNatGatewayAddress.build(context)
839
+ when :disassociate_route_table
840
+ Aws::EC2::Endpoints::DisassociateRouteTable.build(context)
841
+ when :disassociate_subnet_cidr_block
842
+ Aws::EC2::Endpoints::DisassociateSubnetCidrBlock.build(context)
843
+ when :disassociate_transit_gateway_multicast_domain
844
+ Aws::EC2::Endpoints::DisassociateTransitGatewayMulticastDomain.build(context)
845
+ when :disassociate_transit_gateway_policy_table
846
+ Aws::EC2::Endpoints::DisassociateTransitGatewayPolicyTable.build(context)
847
+ when :disassociate_transit_gateway_route_table
848
+ Aws::EC2::Endpoints::DisassociateTransitGatewayRouteTable.build(context)
849
+ when :disassociate_trunk_interface
850
+ Aws::EC2::Endpoints::DisassociateTrunkInterface.build(context)
851
+ when :disassociate_vpc_cidr_block
852
+ Aws::EC2::Endpoints::DisassociateVpcCidrBlock.build(context)
853
+ when :enable_address_transfer
854
+ Aws::EC2::Endpoints::EnableAddressTransfer.build(context)
855
+ when :enable_aws_network_performance_metric_subscription
856
+ Aws::EC2::Endpoints::EnableAwsNetworkPerformanceMetricSubscription.build(context)
857
+ when :enable_ebs_encryption_by_default
858
+ Aws::EC2::Endpoints::EnableEbsEncryptionByDefault.build(context)
859
+ when :enable_fast_launch
860
+ Aws::EC2::Endpoints::EnableFastLaunch.build(context)
861
+ when :enable_fast_snapshot_restores
862
+ Aws::EC2::Endpoints::EnableFastSnapshotRestores.build(context)
863
+ when :enable_image
864
+ Aws::EC2::Endpoints::EnableImage.build(context)
865
+ when :enable_image_block_public_access
866
+ Aws::EC2::Endpoints::EnableImageBlockPublicAccess.build(context)
867
+ when :enable_image_deprecation
868
+ Aws::EC2::Endpoints::EnableImageDeprecation.build(context)
869
+ when :enable_ipam_organization_admin_account
870
+ Aws::EC2::Endpoints::EnableIpamOrganizationAdminAccount.build(context)
871
+ when :enable_reachability_analyzer_organization_sharing
872
+ Aws::EC2::Endpoints::EnableReachabilityAnalyzerOrganizationSharing.build(context)
873
+ when :enable_serial_console_access
874
+ Aws::EC2::Endpoints::EnableSerialConsoleAccess.build(context)
875
+ when :enable_transit_gateway_route_table_propagation
876
+ Aws::EC2::Endpoints::EnableTransitGatewayRouteTablePropagation.build(context)
877
+ when :enable_vgw_route_propagation
878
+ Aws::EC2::Endpoints::EnableVgwRoutePropagation.build(context)
879
+ when :enable_volume_io
880
+ Aws::EC2::Endpoints::EnableVolumeIO.build(context)
881
+ when :enable_vpc_classic_link
882
+ Aws::EC2::Endpoints::EnableVpcClassicLink.build(context)
883
+ when :enable_vpc_classic_link_dns_support
884
+ Aws::EC2::Endpoints::EnableVpcClassicLinkDnsSupport.build(context)
885
+ when :export_client_vpn_client_certificate_revocation_list
886
+ Aws::EC2::Endpoints::ExportClientVpnClientCertificateRevocationList.build(context)
887
+ when :export_client_vpn_client_configuration
888
+ Aws::EC2::Endpoints::ExportClientVpnClientConfiguration.build(context)
889
+ when :export_image
890
+ Aws::EC2::Endpoints::ExportImage.build(context)
891
+ when :export_transit_gateway_routes
892
+ Aws::EC2::Endpoints::ExportTransitGatewayRoutes.build(context)
893
+ when :get_associated_enclave_certificate_iam_roles
894
+ Aws::EC2::Endpoints::GetAssociatedEnclaveCertificateIamRoles.build(context)
895
+ when :get_associated_ipv_6_pool_cidrs
896
+ Aws::EC2::Endpoints::GetAssociatedIpv6PoolCidrs.build(context)
897
+ when :get_aws_network_performance_data
898
+ Aws::EC2::Endpoints::GetAwsNetworkPerformanceData.build(context)
899
+ when :get_capacity_reservation_usage
900
+ Aws::EC2::Endpoints::GetCapacityReservationUsage.build(context)
901
+ when :get_coip_pool_usage
902
+ Aws::EC2::Endpoints::GetCoipPoolUsage.build(context)
903
+ when :get_console_output
904
+ Aws::EC2::Endpoints::GetConsoleOutput.build(context)
905
+ when :get_console_screenshot
906
+ Aws::EC2::Endpoints::GetConsoleScreenshot.build(context)
907
+ when :get_default_credit_specification
908
+ Aws::EC2::Endpoints::GetDefaultCreditSpecification.build(context)
909
+ when :get_ebs_default_kms_key_id
910
+ Aws::EC2::Endpoints::GetEbsDefaultKmsKeyId.build(context)
911
+ when :get_ebs_encryption_by_default
912
+ Aws::EC2::Endpoints::GetEbsEncryptionByDefault.build(context)
913
+ when :get_flow_logs_integration_template
914
+ Aws::EC2::Endpoints::GetFlowLogsIntegrationTemplate.build(context)
915
+ when :get_groups_for_capacity_reservation
916
+ Aws::EC2::Endpoints::GetGroupsForCapacityReservation.build(context)
917
+ when :get_host_reservation_purchase_preview
918
+ Aws::EC2::Endpoints::GetHostReservationPurchasePreview.build(context)
919
+ when :get_image_block_public_access_state
920
+ Aws::EC2::Endpoints::GetImageBlockPublicAccessState.build(context)
921
+ when :get_instance_types_from_instance_requirements
922
+ Aws::EC2::Endpoints::GetInstanceTypesFromInstanceRequirements.build(context)
923
+ when :get_instance_uefi_data
924
+ Aws::EC2::Endpoints::GetInstanceUefiData.build(context)
925
+ when :get_ipam_address_history
926
+ Aws::EC2::Endpoints::GetIpamAddressHistory.build(context)
927
+ when :get_ipam_discovered_accounts
928
+ Aws::EC2::Endpoints::GetIpamDiscoveredAccounts.build(context)
929
+ when :get_ipam_discovered_resource_cidrs
930
+ Aws::EC2::Endpoints::GetIpamDiscoveredResourceCidrs.build(context)
931
+ when :get_ipam_pool_allocations
932
+ Aws::EC2::Endpoints::GetIpamPoolAllocations.build(context)
933
+ when :get_ipam_pool_cidrs
934
+ Aws::EC2::Endpoints::GetIpamPoolCidrs.build(context)
935
+ when :get_ipam_resource_cidrs
936
+ Aws::EC2::Endpoints::GetIpamResourceCidrs.build(context)
937
+ when :get_launch_template_data
938
+ Aws::EC2::Endpoints::GetLaunchTemplateData.build(context)
939
+ when :get_managed_prefix_list_associations
940
+ Aws::EC2::Endpoints::GetManagedPrefixListAssociations.build(context)
941
+ when :get_managed_prefix_list_entries
942
+ Aws::EC2::Endpoints::GetManagedPrefixListEntries.build(context)
943
+ when :get_network_insights_access_scope_analysis_findings
944
+ Aws::EC2::Endpoints::GetNetworkInsightsAccessScopeAnalysisFindings.build(context)
945
+ when :get_network_insights_access_scope_content
946
+ Aws::EC2::Endpoints::GetNetworkInsightsAccessScopeContent.build(context)
947
+ when :get_password_data
948
+ Aws::EC2::Endpoints::GetPasswordData.build(context)
949
+ when :get_reserved_instances_exchange_quote
950
+ Aws::EC2::Endpoints::GetReservedInstancesExchangeQuote.build(context)
951
+ when :get_security_groups_for_vpc
952
+ Aws::EC2::Endpoints::GetSecurityGroupsForVpc.build(context)
953
+ when :get_serial_console_access_status
954
+ Aws::EC2::Endpoints::GetSerialConsoleAccessStatus.build(context)
955
+ when :get_spot_placement_scores
956
+ Aws::EC2::Endpoints::GetSpotPlacementScores.build(context)
957
+ when :get_subnet_cidr_reservations
958
+ Aws::EC2::Endpoints::GetSubnetCidrReservations.build(context)
959
+ when :get_transit_gateway_attachment_propagations
960
+ Aws::EC2::Endpoints::GetTransitGatewayAttachmentPropagations.build(context)
961
+ when :get_transit_gateway_multicast_domain_associations
962
+ Aws::EC2::Endpoints::GetTransitGatewayMulticastDomainAssociations.build(context)
963
+ when :get_transit_gateway_policy_table_associations
964
+ Aws::EC2::Endpoints::GetTransitGatewayPolicyTableAssociations.build(context)
965
+ when :get_transit_gateway_policy_table_entries
966
+ Aws::EC2::Endpoints::GetTransitGatewayPolicyTableEntries.build(context)
967
+ when :get_transit_gateway_prefix_list_references
968
+ Aws::EC2::Endpoints::GetTransitGatewayPrefixListReferences.build(context)
969
+ when :get_transit_gateway_route_table_associations
970
+ Aws::EC2::Endpoints::GetTransitGatewayRouteTableAssociations.build(context)
971
+ when :get_transit_gateway_route_table_propagations
972
+ Aws::EC2::Endpoints::GetTransitGatewayRouteTablePropagations.build(context)
973
+ when :get_verified_access_endpoint_policy
974
+ Aws::EC2::Endpoints::GetVerifiedAccessEndpointPolicy.build(context)
975
+ when :get_verified_access_group_policy
976
+ Aws::EC2::Endpoints::GetVerifiedAccessGroupPolicy.build(context)
977
+ when :get_vpn_connection_device_sample_configuration
978
+ Aws::EC2::Endpoints::GetVpnConnectionDeviceSampleConfiguration.build(context)
979
+ when :get_vpn_connection_device_types
980
+ Aws::EC2::Endpoints::GetVpnConnectionDeviceTypes.build(context)
981
+ when :get_vpn_tunnel_replacement_status
982
+ Aws::EC2::Endpoints::GetVpnTunnelReplacementStatus.build(context)
983
+ when :import_client_vpn_client_certificate_revocation_list
984
+ Aws::EC2::Endpoints::ImportClientVpnClientCertificateRevocationList.build(context)
985
+ when :import_image
986
+ Aws::EC2::Endpoints::ImportImage.build(context)
987
+ when :import_instance
988
+ Aws::EC2::Endpoints::ImportInstance.build(context)
989
+ when :import_key_pair
990
+ Aws::EC2::Endpoints::ImportKeyPair.build(context)
991
+ when :import_snapshot
992
+ Aws::EC2::Endpoints::ImportSnapshot.build(context)
993
+ when :import_volume
994
+ Aws::EC2::Endpoints::ImportVolume.build(context)
995
+ when :list_images_in_recycle_bin
996
+ Aws::EC2::Endpoints::ListImagesInRecycleBin.build(context)
997
+ when :list_snapshots_in_recycle_bin
998
+ Aws::EC2::Endpoints::ListSnapshotsInRecycleBin.build(context)
999
+ when :modify_address_attribute
1000
+ Aws::EC2::Endpoints::ModifyAddressAttribute.build(context)
1001
+ when :modify_availability_zone_group
1002
+ Aws::EC2::Endpoints::ModifyAvailabilityZoneGroup.build(context)
1003
+ when :modify_capacity_reservation
1004
+ Aws::EC2::Endpoints::ModifyCapacityReservation.build(context)
1005
+ when :modify_capacity_reservation_fleet
1006
+ Aws::EC2::Endpoints::ModifyCapacityReservationFleet.build(context)
1007
+ when :modify_client_vpn_endpoint
1008
+ Aws::EC2::Endpoints::ModifyClientVpnEndpoint.build(context)
1009
+ when :modify_default_credit_specification
1010
+ Aws::EC2::Endpoints::ModifyDefaultCreditSpecification.build(context)
1011
+ when :modify_ebs_default_kms_key_id
1012
+ Aws::EC2::Endpoints::ModifyEbsDefaultKmsKeyId.build(context)
1013
+ when :modify_fleet
1014
+ Aws::EC2::Endpoints::ModifyFleet.build(context)
1015
+ when :modify_fpga_image_attribute
1016
+ Aws::EC2::Endpoints::ModifyFpgaImageAttribute.build(context)
1017
+ when :modify_hosts
1018
+ Aws::EC2::Endpoints::ModifyHosts.build(context)
1019
+ when :modify_id_format
1020
+ Aws::EC2::Endpoints::ModifyIdFormat.build(context)
1021
+ when :modify_identity_id_format
1022
+ Aws::EC2::Endpoints::ModifyIdentityIdFormat.build(context)
1023
+ when :modify_image_attribute
1024
+ Aws::EC2::Endpoints::ModifyImageAttribute.build(context)
1025
+ when :modify_instance_attribute
1026
+ Aws::EC2::Endpoints::ModifyInstanceAttribute.build(context)
1027
+ when :modify_instance_capacity_reservation_attributes
1028
+ Aws::EC2::Endpoints::ModifyInstanceCapacityReservationAttributes.build(context)
1029
+ when :modify_instance_credit_specification
1030
+ Aws::EC2::Endpoints::ModifyInstanceCreditSpecification.build(context)
1031
+ when :modify_instance_event_start_time
1032
+ Aws::EC2::Endpoints::ModifyInstanceEventStartTime.build(context)
1033
+ when :modify_instance_event_window
1034
+ Aws::EC2::Endpoints::ModifyInstanceEventWindow.build(context)
1035
+ when :modify_instance_maintenance_options
1036
+ Aws::EC2::Endpoints::ModifyInstanceMaintenanceOptions.build(context)
1037
+ when :modify_instance_metadata_options
1038
+ Aws::EC2::Endpoints::ModifyInstanceMetadataOptions.build(context)
1039
+ when :modify_instance_placement
1040
+ Aws::EC2::Endpoints::ModifyInstancePlacement.build(context)
1041
+ when :modify_ipam
1042
+ Aws::EC2::Endpoints::ModifyIpam.build(context)
1043
+ when :modify_ipam_pool
1044
+ Aws::EC2::Endpoints::ModifyIpamPool.build(context)
1045
+ when :modify_ipam_resource_cidr
1046
+ Aws::EC2::Endpoints::ModifyIpamResourceCidr.build(context)
1047
+ when :modify_ipam_resource_discovery
1048
+ Aws::EC2::Endpoints::ModifyIpamResourceDiscovery.build(context)
1049
+ when :modify_ipam_scope
1050
+ Aws::EC2::Endpoints::ModifyIpamScope.build(context)
1051
+ when :modify_launch_template
1052
+ Aws::EC2::Endpoints::ModifyLaunchTemplate.build(context)
1053
+ when :modify_local_gateway_route
1054
+ Aws::EC2::Endpoints::ModifyLocalGatewayRoute.build(context)
1055
+ when :modify_managed_prefix_list
1056
+ Aws::EC2::Endpoints::ModifyManagedPrefixList.build(context)
1057
+ when :modify_network_interface_attribute
1058
+ Aws::EC2::Endpoints::ModifyNetworkInterfaceAttribute.build(context)
1059
+ when :modify_private_dns_name_options
1060
+ Aws::EC2::Endpoints::ModifyPrivateDnsNameOptions.build(context)
1061
+ when :modify_reserved_instances
1062
+ Aws::EC2::Endpoints::ModifyReservedInstances.build(context)
1063
+ when :modify_security_group_rules
1064
+ Aws::EC2::Endpoints::ModifySecurityGroupRules.build(context)
1065
+ when :modify_snapshot_attribute
1066
+ Aws::EC2::Endpoints::ModifySnapshotAttribute.build(context)
1067
+ when :modify_snapshot_tier
1068
+ Aws::EC2::Endpoints::ModifySnapshotTier.build(context)
1069
+ when :modify_spot_fleet_request
1070
+ Aws::EC2::Endpoints::ModifySpotFleetRequest.build(context)
1071
+ when :modify_subnet_attribute
1072
+ Aws::EC2::Endpoints::ModifySubnetAttribute.build(context)
1073
+ when :modify_traffic_mirror_filter_network_services
1074
+ Aws::EC2::Endpoints::ModifyTrafficMirrorFilterNetworkServices.build(context)
1075
+ when :modify_traffic_mirror_filter_rule
1076
+ Aws::EC2::Endpoints::ModifyTrafficMirrorFilterRule.build(context)
1077
+ when :modify_traffic_mirror_session
1078
+ Aws::EC2::Endpoints::ModifyTrafficMirrorSession.build(context)
1079
+ when :modify_transit_gateway
1080
+ Aws::EC2::Endpoints::ModifyTransitGateway.build(context)
1081
+ when :modify_transit_gateway_prefix_list_reference
1082
+ Aws::EC2::Endpoints::ModifyTransitGatewayPrefixListReference.build(context)
1083
+ when :modify_transit_gateway_vpc_attachment
1084
+ Aws::EC2::Endpoints::ModifyTransitGatewayVpcAttachment.build(context)
1085
+ when :modify_verified_access_endpoint
1086
+ Aws::EC2::Endpoints::ModifyVerifiedAccessEndpoint.build(context)
1087
+ when :modify_verified_access_endpoint_policy
1088
+ Aws::EC2::Endpoints::ModifyVerifiedAccessEndpointPolicy.build(context)
1089
+ when :modify_verified_access_group
1090
+ Aws::EC2::Endpoints::ModifyVerifiedAccessGroup.build(context)
1091
+ when :modify_verified_access_group_policy
1092
+ Aws::EC2::Endpoints::ModifyVerifiedAccessGroupPolicy.build(context)
1093
+ when :modify_verified_access_instance
1094
+ Aws::EC2::Endpoints::ModifyVerifiedAccessInstance.build(context)
1095
+ when :modify_verified_access_instance_logging_configuration
1096
+ Aws::EC2::Endpoints::ModifyVerifiedAccessInstanceLoggingConfiguration.build(context)
1097
+ when :modify_verified_access_trust_provider
1098
+ Aws::EC2::Endpoints::ModifyVerifiedAccessTrustProvider.build(context)
1099
+ when :modify_volume
1100
+ Aws::EC2::Endpoints::ModifyVolume.build(context)
1101
+ when :modify_volume_attribute
1102
+ Aws::EC2::Endpoints::ModifyVolumeAttribute.build(context)
1103
+ when :modify_vpc_attribute
1104
+ Aws::EC2::Endpoints::ModifyVpcAttribute.build(context)
1105
+ when :modify_vpc_endpoint
1106
+ Aws::EC2::Endpoints::ModifyVpcEndpoint.build(context)
1107
+ when :modify_vpc_endpoint_connection_notification
1108
+ Aws::EC2::Endpoints::ModifyVpcEndpointConnectionNotification.build(context)
1109
+ when :modify_vpc_endpoint_service_configuration
1110
+ Aws::EC2::Endpoints::ModifyVpcEndpointServiceConfiguration.build(context)
1111
+ when :modify_vpc_endpoint_service_payer_responsibility
1112
+ Aws::EC2::Endpoints::ModifyVpcEndpointServicePayerResponsibility.build(context)
1113
+ when :modify_vpc_endpoint_service_permissions
1114
+ Aws::EC2::Endpoints::ModifyVpcEndpointServicePermissions.build(context)
1115
+ when :modify_vpc_peering_connection_options
1116
+ Aws::EC2::Endpoints::ModifyVpcPeeringConnectionOptions.build(context)
1117
+ when :modify_vpc_tenancy
1118
+ Aws::EC2::Endpoints::ModifyVpcTenancy.build(context)
1119
+ when :modify_vpn_connection
1120
+ Aws::EC2::Endpoints::ModifyVpnConnection.build(context)
1121
+ when :modify_vpn_connection_options
1122
+ Aws::EC2::Endpoints::ModifyVpnConnectionOptions.build(context)
1123
+ when :modify_vpn_tunnel_certificate
1124
+ Aws::EC2::Endpoints::ModifyVpnTunnelCertificate.build(context)
1125
+ when :modify_vpn_tunnel_options
1126
+ Aws::EC2::Endpoints::ModifyVpnTunnelOptions.build(context)
1127
+ when :monitor_instances
1128
+ Aws::EC2::Endpoints::MonitorInstances.build(context)
1129
+ when :move_address_to_vpc
1130
+ Aws::EC2::Endpoints::MoveAddressToVpc.build(context)
1131
+ when :move_byoip_cidr_to_ipam
1132
+ Aws::EC2::Endpoints::MoveByoipCidrToIpam.build(context)
1133
+ when :provision_byoip_cidr
1134
+ Aws::EC2::Endpoints::ProvisionByoipCidr.build(context)
1135
+ when :provision_ipam_pool_cidr
1136
+ Aws::EC2::Endpoints::ProvisionIpamPoolCidr.build(context)
1137
+ when :provision_public_ipv_4_pool_cidr
1138
+ Aws::EC2::Endpoints::ProvisionPublicIpv4PoolCidr.build(context)
1139
+ when :purchase_capacity_block
1140
+ Aws::EC2::Endpoints::PurchaseCapacityBlock.build(context)
1141
+ when :purchase_host_reservation
1142
+ Aws::EC2::Endpoints::PurchaseHostReservation.build(context)
1143
+ when :purchase_reserved_instances_offering
1144
+ Aws::EC2::Endpoints::PurchaseReservedInstancesOffering.build(context)
1145
+ when :purchase_scheduled_instances
1146
+ Aws::EC2::Endpoints::PurchaseScheduledInstances.build(context)
1147
+ when :reboot_instances
1148
+ Aws::EC2::Endpoints::RebootInstances.build(context)
1149
+ when :register_image
1150
+ Aws::EC2::Endpoints::RegisterImage.build(context)
1151
+ when :register_instance_event_notification_attributes
1152
+ Aws::EC2::Endpoints::RegisterInstanceEventNotificationAttributes.build(context)
1153
+ when :register_transit_gateway_multicast_group_members
1154
+ Aws::EC2::Endpoints::RegisterTransitGatewayMulticastGroupMembers.build(context)
1155
+ when :register_transit_gateway_multicast_group_sources
1156
+ Aws::EC2::Endpoints::RegisterTransitGatewayMulticastGroupSources.build(context)
1157
+ when :reject_transit_gateway_multicast_domain_associations
1158
+ Aws::EC2::Endpoints::RejectTransitGatewayMulticastDomainAssociations.build(context)
1159
+ when :reject_transit_gateway_peering_attachment
1160
+ Aws::EC2::Endpoints::RejectTransitGatewayPeeringAttachment.build(context)
1161
+ when :reject_transit_gateway_vpc_attachment
1162
+ Aws::EC2::Endpoints::RejectTransitGatewayVpcAttachment.build(context)
1163
+ when :reject_vpc_endpoint_connections
1164
+ Aws::EC2::Endpoints::RejectVpcEndpointConnections.build(context)
1165
+ when :reject_vpc_peering_connection
1166
+ Aws::EC2::Endpoints::RejectVpcPeeringConnection.build(context)
1167
+ when :release_address
1168
+ Aws::EC2::Endpoints::ReleaseAddress.build(context)
1169
+ when :release_hosts
1170
+ Aws::EC2::Endpoints::ReleaseHosts.build(context)
1171
+ when :release_ipam_pool_allocation
1172
+ Aws::EC2::Endpoints::ReleaseIpamPoolAllocation.build(context)
1173
+ when :replace_iam_instance_profile_association
1174
+ Aws::EC2::Endpoints::ReplaceIamInstanceProfileAssociation.build(context)
1175
+ when :replace_network_acl_association
1176
+ Aws::EC2::Endpoints::ReplaceNetworkAclAssociation.build(context)
1177
+ when :replace_network_acl_entry
1178
+ Aws::EC2::Endpoints::ReplaceNetworkAclEntry.build(context)
1179
+ when :replace_route
1180
+ Aws::EC2::Endpoints::ReplaceRoute.build(context)
1181
+ when :replace_route_table_association
1182
+ Aws::EC2::Endpoints::ReplaceRouteTableAssociation.build(context)
1183
+ when :replace_transit_gateway_route
1184
+ Aws::EC2::Endpoints::ReplaceTransitGatewayRoute.build(context)
1185
+ when :replace_vpn_tunnel
1186
+ Aws::EC2::Endpoints::ReplaceVpnTunnel.build(context)
1187
+ when :report_instance_status
1188
+ Aws::EC2::Endpoints::ReportInstanceStatus.build(context)
1189
+ when :request_spot_fleet
1190
+ Aws::EC2::Endpoints::RequestSpotFleet.build(context)
1191
+ when :request_spot_instances
1192
+ Aws::EC2::Endpoints::RequestSpotInstances.build(context)
1193
+ when :reset_address_attribute
1194
+ Aws::EC2::Endpoints::ResetAddressAttribute.build(context)
1195
+ when :reset_ebs_default_kms_key_id
1196
+ Aws::EC2::Endpoints::ResetEbsDefaultKmsKeyId.build(context)
1197
+ when :reset_fpga_image_attribute
1198
+ Aws::EC2::Endpoints::ResetFpgaImageAttribute.build(context)
1199
+ when :reset_image_attribute
1200
+ Aws::EC2::Endpoints::ResetImageAttribute.build(context)
1201
+ when :reset_instance_attribute
1202
+ Aws::EC2::Endpoints::ResetInstanceAttribute.build(context)
1203
+ when :reset_network_interface_attribute
1204
+ Aws::EC2::Endpoints::ResetNetworkInterfaceAttribute.build(context)
1205
+ when :reset_snapshot_attribute
1206
+ Aws::EC2::Endpoints::ResetSnapshotAttribute.build(context)
1207
+ when :restore_address_to_classic
1208
+ Aws::EC2::Endpoints::RestoreAddressToClassic.build(context)
1209
+ when :restore_image_from_recycle_bin
1210
+ Aws::EC2::Endpoints::RestoreImageFromRecycleBin.build(context)
1211
+ when :restore_managed_prefix_list_version
1212
+ Aws::EC2::Endpoints::RestoreManagedPrefixListVersion.build(context)
1213
+ when :restore_snapshot_from_recycle_bin
1214
+ Aws::EC2::Endpoints::RestoreSnapshotFromRecycleBin.build(context)
1215
+ when :restore_snapshot_tier
1216
+ Aws::EC2::Endpoints::RestoreSnapshotTier.build(context)
1217
+ when :revoke_client_vpn_ingress
1218
+ Aws::EC2::Endpoints::RevokeClientVpnIngress.build(context)
1219
+ when :revoke_security_group_egress
1220
+ Aws::EC2::Endpoints::RevokeSecurityGroupEgress.build(context)
1221
+ when :revoke_security_group_ingress
1222
+ Aws::EC2::Endpoints::RevokeSecurityGroupIngress.build(context)
1223
+ when :run_instances
1224
+ Aws::EC2::Endpoints::RunInstances.build(context)
1225
+ when :run_scheduled_instances
1226
+ Aws::EC2::Endpoints::RunScheduledInstances.build(context)
1227
+ when :search_local_gateway_routes
1228
+ Aws::EC2::Endpoints::SearchLocalGatewayRoutes.build(context)
1229
+ when :search_transit_gateway_multicast_groups
1230
+ Aws::EC2::Endpoints::SearchTransitGatewayMulticastGroups.build(context)
1231
+ when :search_transit_gateway_routes
1232
+ Aws::EC2::Endpoints::SearchTransitGatewayRoutes.build(context)
1233
+ when :send_diagnostic_interrupt
1234
+ Aws::EC2::Endpoints::SendDiagnosticInterrupt.build(context)
1235
+ when :start_instances
1236
+ Aws::EC2::Endpoints::StartInstances.build(context)
1237
+ when :start_network_insights_access_scope_analysis
1238
+ Aws::EC2::Endpoints::StartNetworkInsightsAccessScopeAnalysis.build(context)
1239
+ when :start_network_insights_analysis
1240
+ Aws::EC2::Endpoints::StartNetworkInsightsAnalysis.build(context)
1241
+ when :start_vpc_endpoint_service_private_dns_verification
1242
+ Aws::EC2::Endpoints::StartVpcEndpointServicePrivateDnsVerification.build(context)
1243
+ when :stop_instances
1244
+ Aws::EC2::Endpoints::StopInstances.build(context)
1245
+ when :terminate_client_vpn_connections
1246
+ Aws::EC2::Endpoints::TerminateClientVpnConnections.build(context)
1247
+ when :terminate_instances
1248
+ Aws::EC2::Endpoints::TerminateInstances.build(context)
1249
+ when :unassign_ipv_6_addresses
1250
+ Aws::EC2::Endpoints::UnassignIpv6Addresses.build(context)
1251
+ when :unassign_private_ip_addresses
1252
+ Aws::EC2::Endpoints::UnassignPrivateIpAddresses.build(context)
1253
+ when :unassign_private_nat_gateway_address
1254
+ Aws::EC2::Endpoints::UnassignPrivateNatGatewayAddress.build(context)
1255
+ when :unmonitor_instances
1256
+ Aws::EC2::Endpoints::UnmonitorInstances.build(context)
1257
+ when :update_security_group_rule_descriptions_egress
1258
+ Aws::EC2::Endpoints::UpdateSecurityGroupRuleDescriptionsEgress.build(context)
1259
+ when :update_security_group_rule_descriptions_ingress
1260
+ Aws::EC2::Endpoints::UpdateSecurityGroupRuleDescriptionsIngress.build(context)
1261
+ when :withdraw_byoip_cidr
1262
+ Aws::EC2::Endpoints::WithdrawByoipCidr.build(context)
1263
+ end
1264
+ end
1265
+ end
1266
+
1267
+ def add_handlers(handlers, _config)
1268
+ handlers.add(Handler, step: :build, priority: 75)
1269
+ end
1270
+ end
1271
+ end
1272
+ end