aws-sdk-ec2 1.341.0 → 1.342.0

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