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