@effect-aws/client-ec2 1.4.0 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. package/EC2ClientInstance/package.json +6 -0
  2. package/EC2Service/package.json +6 -0
  3. package/EC2ServiceConfig/package.json +6 -0
  4. package/Errors/package.json +6 -0
  5. package/dist/cjs/EC2ClientInstance.d.ts +24 -0
  6. package/dist/cjs/EC2ClientInstance.d.ts.map +1 -0
  7. package/dist/cjs/EC2ClientInstance.js +50 -0
  8. package/dist/cjs/EC2ClientInstance.js.map +1 -0
  9. package/{lib → dist/cjs}/EC2Service.d.ts +16 -38
  10. package/dist/cjs/EC2Service.d.ts.map +1 -0
  11. package/dist/cjs/EC2Service.js +713 -0
  12. package/dist/cjs/EC2Service.js.map +1 -0
  13. package/dist/cjs/EC2ServiceConfig.d.ts +25 -0
  14. package/dist/cjs/EC2ServiceConfig.d.ts.map +1 -0
  15. package/dist/cjs/EC2ServiceConfig.js +35 -0
  16. package/dist/cjs/EC2ServiceConfig.js.map +1 -0
  17. package/{lib → dist/cjs}/Errors.d.ts +5 -9
  18. package/dist/cjs/Errors.d.ts.map +1 -0
  19. package/dist/cjs/Errors.js +8 -0
  20. package/dist/cjs/Errors.js.map +1 -0
  21. package/dist/cjs/index.d.ts +39 -0
  22. package/dist/cjs/index.d.ts.map +1 -0
  23. package/dist/cjs/index.js +56 -0
  24. package/dist/cjs/index.js.map +1 -0
  25. package/dist/dts/EC2ClientInstance.d.ts +24 -0
  26. package/dist/dts/EC2ClientInstance.d.ts.map +1 -0
  27. package/dist/dts/EC2Service.d.ts +3333 -0
  28. package/dist/dts/EC2Service.d.ts.map +1 -0
  29. package/dist/dts/EC2ServiceConfig.d.ts +25 -0
  30. package/dist/dts/EC2ServiceConfig.d.ts.map +1 -0
  31. package/dist/dts/Errors.d.ts +11 -0
  32. package/dist/dts/Errors.d.ts.map +1 -0
  33. package/dist/dts/index.d.ts +39 -0
  34. package/dist/dts/index.d.ts.map +1 -0
  35. package/dist/esm/EC2ClientInstance.js +23 -0
  36. package/dist/esm/EC2ClientInstance.js.map +1 -0
  37. package/dist/esm/EC2Service.js +686 -0
  38. package/dist/esm/EC2Service.js.map +1 -0
  39. package/dist/esm/EC2ServiceConfig.js +31 -0
  40. package/dist/esm/EC2ServiceConfig.js.map +1 -0
  41. package/dist/esm/Errors.js +5 -0
  42. package/dist/esm/Errors.js.map +1 -0
  43. package/dist/esm/index.js +27 -0
  44. package/dist/esm/index.js.map +1 -0
  45. package/dist/esm/package.json +4 -0
  46. package/package.json +60 -43
  47. package/src/EC2ClientInstance.ts +33 -0
  48. package/src/EC2Service.ts +9939 -0
  49. package/src/EC2ServiceConfig.ts +51 -0
  50. package/src/Errors.ts +11 -0
  51. package/src/index.ts +44 -0
  52. package/CHANGELOG.md +0 -41
  53. package/docgen.json +0 -8
  54. package/lib/EC2ClientInstance.d.ts +0 -31
  55. package/lib/EC2ClientInstance.js +0 -57
  56. package/lib/EC2ClientInstanceConfig.d.ts +0 -23
  57. package/lib/EC2ClientInstanceConfig.js +0 -44
  58. package/lib/EC2Service.js +0 -745
  59. package/lib/Errors.js +0 -7
  60. package/lib/esm/EC2ClientInstance.js +0 -30
  61. package/lib/esm/EC2ClientInstanceConfig.js +0 -40
  62. package/lib/esm/EC2Service.js +0 -741
  63. package/lib/esm/Errors.js +0 -4
  64. package/lib/esm/index.js +0 -5
  65. package/lib/index.d.ts +0 -4
  66. package/lib/index.js +0 -21
  67. package/project.json +0 -77
  68. package/vitest.config.ts +0 -3
@@ -0,0 +1,713 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.EC2Service = exports.makeEC2Service = void 0;
27
+ /**
28
+ * @since 1.0.0
29
+ */
30
+ const client_ec2_1 = require("@aws-sdk/client-ec2");
31
+ const commons_1 = require("@effect-aws/commons");
32
+ const effect_1 = require("effect");
33
+ const Instance = __importStar(require("./EC2ClientInstance.js"));
34
+ const EC2ServiceConfig = __importStar(require("./EC2ServiceConfig.js"));
35
+ const commands = {
36
+ AcceptAddressTransferCommand: client_ec2_1.AcceptAddressTransferCommand,
37
+ AcceptCapacityReservationBillingOwnershipCommand: client_ec2_1.AcceptCapacityReservationBillingOwnershipCommand,
38
+ AcceptReservedInstancesExchangeQuoteCommand: client_ec2_1.AcceptReservedInstancesExchangeQuoteCommand,
39
+ AcceptTransitGatewayMulticastDomainAssociationsCommand: client_ec2_1.AcceptTransitGatewayMulticastDomainAssociationsCommand,
40
+ AcceptTransitGatewayPeeringAttachmentCommand: client_ec2_1.AcceptTransitGatewayPeeringAttachmentCommand,
41
+ AcceptTransitGatewayVpcAttachmentCommand: client_ec2_1.AcceptTransitGatewayVpcAttachmentCommand,
42
+ AcceptVpcEndpointConnectionsCommand: client_ec2_1.AcceptVpcEndpointConnectionsCommand,
43
+ AcceptVpcPeeringConnectionCommand: client_ec2_1.AcceptVpcPeeringConnectionCommand,
44
+ AdvertiseByoipCidrCommand: client_ec2_1.AdvertiseByoipCidrCommand,
45
+ AllocateAddressCommand: client_ec2_1.AllocateAddressCommand,
46
+ AllocateHostsCommand: client_ec2_1.AllocateHostsCommand,
47
+ AllocateIpamPoolCidrCommand: client_ec2_1.AllocateIpamPoolCidrCommand,
48
+ ApplySecurityGroupsToClientVpnTargetNetworkCommand: client_ec2_1.ApplySecurityGroupsToClientVpnTargetNetworkCommand,
49
+ AssignIpv6AddressesCommand: client_ec2_1.AssignIpv6AddressesCommand,
50
+ AssignPrivateIpAddressesCommand: client_ec2_1.AssignPrivateIpAddressesCommand,
51
+ AssignPrivateNatGatewayAddressCommand: client_ec2_1.AssignPrivateNatGatewayAddressCommand,
52
+ AssociateAddressCommand: client_ec2_1.AssociateAddressCommand,
53
+ AssociateCapacityReservationBillingOwnerCommand: client_ec2_1.AssociateCapacityReservationBillingOwnerCommand,
54
+ AssociateClientVpnTargetNetworkCommand: client_ec2_1.AssociateClientVpnTargetNetworkCommand,
55
+ AssociateDhcpOptionsCommand: client_ec2_1.AssociateDhcpOptionsCommand,
56
+ AssociateEnclaveCertificateIamRoleCommand: client_ec2_1.AssociateEnclaveCertificateIamRoleCommand,
57
+ AssociateIamInstanceProfileCommand: client_ec2_1.AssociateIamInstanceProfileCommand,
58
+ AssociateInstanceEventWindowCommand: client_ec2_1.AssociateInstanceEventWindowCommand,
59
+ AssociateIpamByoasnCommand: client_ec2_1.AssociateIpamByoasnCommand,
60
+ AssociateIpamResourceDiscoveryCommand: client_ec2_1.AssociateIpamResourceDiscoveryCommand,
61
+ AssociateNatGatewayAddressCommand: client_ec2_1.AssociateNatGatewayAddressCommand,
62
+ AssociateRouteTableCommand: client_ec2_1.AssociateRouteTableCommand,
63
+ AssociateSecurityGroupVpcCommand: client_ec2_1.AssociateSecurityGroupVpcCommand,
64
+ AssociateSubnetCidrBlockCommand: client_ec2_1.AssociateSubnetCidrBlockCommand,
65
+ AssociateTransitGatewayMulticastDomainCommand: client_ec2_1.AssociateTransitGatewayMulticastDomainCommand,
66
+ AssociateTransitGatewayPolicyTableCommand: client_ec2_1.AssociateTransitGatewayPolicyTableCommand,
67
+ AssociateTransitGatewayRouteTableCommand: client_ec2_1.AssociateTransitGatewayRouteTableCommand,
68
+ AssociateTrunkInterfaceCommand: client_ec2_1.AssociateTrunkInterfaceCommand,
69
+ AssociateVpcCidrBlockCommand: client_ec2_1.AssociateVpcCidrBlockCommand,
70
+ AttachClassicLinkVpcCommand: client_ec2_1.AttachClassicLinkVpcCommand,
71
+ AttachInternetGatewayCommand: client_ec2_1.AttachInternetGatewayCommand,
72
+ AttachNetworkInterfaceCommand: client_ec2_1.AttachNetworkInterfaceCommand,
73
+ AttachVerifiedAccessTrustProviderCommand: client_ec2_1.AttachVerifiedAccessTrustProviderCommand,
74
+ AttachVolumeCommand: client_ec2_1.AttachVolumeCommand,
75
+ AttachVpnGatewayCommand: client_ec2_1.AttachVpnGatewayCommand,
76
+ AuthorizeClientVpnIngressCommand: client_ec2_1.AuthorizeClientVpnIngressCommand,
77
+ AuthorizeSecurityGroupEgressCommand: client_ec2_1.AuthorizeSecurityGroupEgressCommand,
78
+ AuthorizeSecurityGroupIngressCommand: client_ec2_1.AuthorizeSecurityGroupIngressCommand,
79
+ BundleInstanceCommand: client_ec2_1.BundleInstanceCommand,
80
+ CancelBundleTaskCommand: client_ec2_1.CancelBundleTaskCommand,
81
+ CancelCapacityReservationCommand: client_ec2_1.CancelCapacityReservationCommand,
82
+ CancelCapacityReservationFleetsCommand: client_ec2_1.CancelCapacityReservationFleetsCommand,
83
+ CancelConversionTaskCommand: client_ec2_1.CancelConversionTaskCommand,
84
+ CancelDeclarativePoliciesReportCommand: client_ec2_1.CancelDeclarativePoliciesReportCommand,
85
+ CancelExportTaskCommand: client_ec2_1.CancelExportTaskCommand,
86
+ CancelImageLaunchPermissionCommand: client_ec2_1.CancelImageLaunchPermissionCommand,
87
+ CancelImportTaskCommand: client_ec2_1.CancelImportTaskCommand,
88
+ CancelReservedInstancesListingCommand: client_ec2_1.CancelReservedInstancesListingCommand,
89
+ CancelSpotFleetRequestsCommand: client_ec2_1.CancelSpotFleetRequestsCommand,
90
+ CancelSpotInstanceRequestsCommand: client_ec2_1.CancelSpotInstanceRequestsCommand,
91
+ ConfirmProductInstanceCommand: client_ec2_1.ConfirmProductInstanceCommand,
92
+ CopyFpgaImageCommand: client_ec2_1.CopyFpgaImageCommand,
93
+ CopyImageCommand: client_ec2_1.CopyImageCommand,
94
+ CopySnapshotCommand: client_ec2_1.CopySnapshotCommand,
95
+ CreateCapacityReservationCommand: client_ec2_1.CreateCapacityReservationCommand,
96
+ CreateCapacityReservationBySplittingCommand: client_ec2_1.CreateCapacityReservationBySplittingCommand,
97
+ CreateCapacityReservationFleetCommand: client_ec2_1.CreateCapacityReservationFleetCommand,
98
+ CreateCarrierGatewayCommand: client_ec2_1.CreateCarrierGatewayCommand,
99
+ CreateClientVpnEndpointCommand: client_ec2_1.CreateClientVpnEndpointCommand,
100
+ CreateClientVpnRouteCommand: client_ec2_1.CreateClientVpnRouteCommand,
101
+ CreateCoipCidrCommand: client_ec2_1.CreateCoipCidrCommand,
102
+ CreateCoipPoolCommand: client_ec2_1.CreateCoipPoolCommand,
103
+ CreateCustomerGatewayCommand: client_ec2_1.CreateCustomerGatewayCommand,
104
+ CreateDefaultSubnetCommand: client_ec2_1.CreateDefaultSubnetCommand,
105
+ CreateDefaultVpcCommand: client_ec2_1.CreateDefaultVpcCommand,
106
+ CreateDhcpOptionsCommand: client_ec2_1.CreateDhcpOptionsCommand,
107
+ CreateEgressOnlyInternetGatewayCommand: client_ec2_1.CreateEgressOnlyInternetGatewayCommand,
108
+ CreateFleetCommand: client_ec2_1.CreateFleetCommand,
109
+ CreateFlowLogsCommand: client_ec2_1.CreateFlowLogsCommand,
110
+ CreateFpgaImageCommand: client_ec2_1.CreateFpgaImageCommand,
111
+ CreateImageCommand: client_ec2_1.CreateImageCommand,
112
+ CreateInstanceConnectEndpointCommand: client_ec2_1.CreateInstanceConnectEndpointCommand,
113
+ CreateInstanceEventWindowCommand: client_ec2_1.CreateInstanceEventWindowCommand,
114
+ CreateInstanceExportTaskCommand: client_ec2_1.CreateInstanceExportTaskCommand,
115
+ CreateInternetGatewayCommand: client_ec2_1.CreateInternetGatewayCommand,
116
+ CreateIpamCommand: client_ec2_1.CreateIpamCommand,
117
+ CreateIpamExternalResourceVerificationTokenCommand: client_ec2_1.CreateIpamExternalResourceVerificationTokenCommand,
118
+ CreateIpamPoolCommand: client_ec2_1.CreateIpamPoolCommand,
119
+ CreateIpamResourceDiscoveryCommand: client_ec2_1.CreateIpamResourceDiscoveryCommand,
120
+ CreateIpamScopeCommand: client_ec2_1.CreateIpamScopeCommand,
121
+ CreateKeyPairCommand: client_ec2_1.CreateKeyPairCommand,
122
+ CreateLaunchTemplateCommand: client_ec2_1.CreateLaunchTemplateCommand,
123
+ CreateLaunchTemplateVersionCommand: client_ec2_1.CreateLaunchTemplateVersionCommand,
124
+ CreateLocalGatewayRouteCommand: client_ec2_1.CreateLocalGatewayRouteCommand,
125
+ CreateLocalGatewayRouteTableCommand: client_ec2_1.CreateLocalGatewayRouteTableCommand,
126
+ CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand: client_ec2_1.CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand,
127
+ CreateLocalGatewayRouteTableVpcAssociationCommand: client_ec2_1.CreateLocalGatewayRouteTableVpcAssociationCommand,
128
+ CreateManagedPrefixListCommand: client_ec2_1.CreateManagedPrefixListCommand,
129
+ CreateNatGatewayCommand: client_ec2_1.CreateNatGatewayCommand,
130
+ CreateNetworkAclCommand: client_ec2_1.CreateNetworkAclCommand,
131
+ CreateNetworkAclEntryCommand: client_ec2_1.CreateNetworkAclEntryCommand,
132
+ CreateNetworkInsightsAccessScopeCommand: client_ec2_1.CreateNetworkInsightsAccessScopeCommand,
133
+ CreateNetworkInsightsPathCommand: client_ec2_1.CreateNetworkInsightsPathCommand,
134
+ CreateNetworkInterfaceCommand: client_ec2_1.CreateNetworkInterfaceCommand,
135
+ CreateNetworkInterfacePermissionCommand: client_ec2_1.CreateNetworkInterfacePermissionCommand,
136
+ CreatePlacementGroupCommand: client_ec2_1.CreatePlacementGroupCommand,
137
+ CreatePublicIpv4PoolCommand: client_ec2_1.CreatePublicIpv4PoolCommand,
138
+ CreateReplaceRootVolumeTaskCommand: client_ec2_1.CreateReplaceRootVolumeTaskCommand,
139
+ CreateReservedInstancesListingCommand: client_ec2_1.CreateReservedInstancesListingCommand,
140
+ CreateRestoreImageTaskCommand: client_ec2_1.CreateRestoreImageTaskCommand,
141
+ CreateRouteCommand: client_ec2_1.CreateRouteCommand,
142
+ CreateRouteTableCommand: client_ec2_1.CreateRouteTableCommand,
143
+ CreateSecurityGroupCommand: client_ec2_1.CreateSecurityGroupCommand,
144
+ CreateSnapshotCommand: client_ec2_1.CreateSnapshotCommand,
145
+ CreateSnapshotsCommand: client_ec2_1.CreateSnapshotsCommand,
146
+ CreateSpotDatafeedSubscriptionCommand: client_ec2_1.CreateSpotDatafeedSubscriptionCommand,
147
+ CreateStoreImageTaskCommand: client_ec2_1.CreateStoreImageTaskCommand,
148
+ CreateSubnetCommand: client_ec2_1.CreateSubnetCommand,
149
+ CreateSubnetCidrReservationCommand: client_ec2_1.CreateSubnetCidrReservationCommand,
150
+ CreateTagsCommand: client_ec2_1.CreateTagsCommand,
151
+ CreateTrafficMirrorFilterCommand: client_ec2_1.CreateTrafficMirrorFilterCommand,
152
+ CreateTrafficMirrorFilterRuleCommand: client_ec2_1.CreateTrafficMirrorFilterRuleCommand,
153
+ CreateTrafficMirrorSessionCommand: client_ec2_1.CreateTrafficMirrorSessionCommand,
154
+ CreateTrafficMirrorTargetCommand: client_ec2_1.CreateTrafficMirrorTargetCommand,
155
+ CreateTransitGatewayCommand: client_ec2_1.CreateTransitGatewayCommand,
156
+ CreateTransitGatewayConnectCommand: client_ec2_1.CreateTransitGatewayConnectCommand,
157
+ CreateTransitGatewayConnectPeerCommand: client_ec2_1.CreateTransitGatewayConnectPeerCommand,
158
+ CreateTransitGatewayMulticastDomainCommand: client_ec2_1.CreateTransitGatewayMulticastDomainCommand,
159
+ CreateTransitGatewayPeeringAttachmentCommand: client_ec2_1.CreateTransitGatewayPeeringAttachmentCommand,
160
+ CreateTransitGatewayPolicyTableCommand: client_ec2_1.CreateTransitGatewayPolicyTableCommand,
161
+ CreateTransitGatewayPrefixListReferenceCommand: client_ec2_1.CreateTransitGatewayPrefixListReferenceCommand,
162
+ CreateTransitGatewayRouteCommand: client_ec2_1.CreateTransitGatewayRouteCommand,
163
+ CreateTransitGatewayRouteTableCommand: client_ec2_1.CreateTransitGatewayRouteTableCommand,
164
+ CreateTransitGatewayRouteTableAnnouncementCommand: client_ec2_1.CreateTransitGatewayRouteTableAnnouncementCommand,
165
+ CreateTransitGatewayVpcAttachmentCommand: client_ec2_1.CreateTransitGatewayVpcAttachmentCommand,
166
+ CreateVerifiedAccessEndpointCommand: client_ec2_1.CreateVerifiedAccessEndpointCommand,
167
+ CreateVerifiedAccessGroupCommand: client_ec2_1.CreateVerifiedAccessGroupCommand,
168
+ CreateVerifiedAccessInstanceCommand: client_ec2_1.CreateVerifiedAccessInstanceCommand,
169
+ CreateVerifiedAccessTrustProviderCommand: client_ec2_1.CreateVerifiedAccessTrustProviderCommand,
170
+ CreateVolumeCommand: client_ec2_1.CreateVolumeCommand,
171
+ CreateVpcCommand: client_ec2_1.CreateVpcCommand,
172
+ CreateVpcBlockPublicAccessExclusionCommand: client_ec2_1.CreateVpcBlockPublicAccessExclusionCommand,
173
+ CreateVpcEndpointCommand: client_ec2_1.CreateVpcEndpointCommand,
174
+ CreateVpcEndpointConnectionNotificationCommand: client_ec2_1.CreateVpcEndpointConnectionNotificationCommand,
175
+ CreateVpcEndpointServiceConfigurationCommand: client_ec2_1.CreateVpcEndpointServiceConfigurationCommand,
176
+ CreateVpcPeeringConnectionCommand: client_ec2_1.CreateVpcPeeringConnectionCommand,
177
+ CreateVpnConnectionCommand: client_ec2_1.CreateVpnConnectionCommand,
178
+ CreateVpnConnectionRouteCommand: client_ec2_1.CreateVpnConnectionRouteCommand,
179
+ CreateVpnGatewayCommand: client_ec2_1.CreateVpnGatewayCommand,
180
+ DeleteCarrierGatewayCommand: client_ec2_1.DeleteCarrierGatewayCommand,
181
+ DeleteClientVpnEndpointCommand: client_ec2_1.DeleteClientVpnEndpointCommand,
182
+ DeleteClientVpnRouteCommand: client_ec2_1.DeleteClientVpnRouteCommand,
183
+ DeleteCoipCidrCommand: client_ec2_1.DeleteCoipCidrCommand,
184
+ DeleteCoipPoolCommand: client_ec2_1.DeleteCoipPoolCommand,
185
+ DeleteCustomerGatewayCommand: client_ec2_1.DeleteCustomerGatewayCommand,
186
+ DeleteDhcpOptionsCommand: client_ec2_1.DeleteDhcpOptionsCommand,
187
+ DeleteEgressOnlyInternetGatewayCommand: client_ec2_1.DeleteEgressOnlyInternetGatewayCommand,
188
+ DeleteFleetsCommand: client_ec2_1.DeleteFleetsCommand,
189
+ DeleteFlowLogsCommand: client_ec2_1.DeleteFlowLogsCommand,
190
+ DeleteFpgaImageCommand: client_ec2_1.DeleteFpgaImageCommand,
191
+ DeleteInstanceConnectEndpointCommand: client_ec2_1.DeleteInstanceConnectEndpointCommand,
192
+ DeleteInstanceEventWindowCommand: client_ec2_1.DeleteInstanceEventWindowCommand,
193
+ DeleteInternetGatewayCommand: client_ec2_1.DeleteInternetGatewayCommand,
194
+ DeleteIpamCommand: client_ec2_1.DeleteIpamCommand,
195
+ DeleteIpamExternalResourceVerificationTokenCommand: client_ec2_1.DeleteIpamExternalResourceVerificationTokenCommand,
196
+ DeleteIpamPoolCommand: client_ec2_1.DeleteIpamPoolCommand,
197
+ DeleteIpamResourceDiscoveryCommand: client_ec2_1.DeleteIpamResourceDiscoveryCommand,
198
+ DeleteIpamScopeCommand: client_ec2_1.DeleteIpamScopeCommand,
199
+ DeleteKeyPairCommand: client_ec2_1.DeleteKeyPairCommand,
200
+ DeleteLaunchTemplateCommand: client_ec2_1.DeleteLaunchTemplateCommand,
201
+ DeleteLaunchTemplateVersionsCommand: client_ec2_1.DeleteLaunchTemplateVersionsCommand,
202
+ DeleteLocalGatewayRouteCommand: client_ec2_1.DeleteLocalGatewayRouteCommand,
203
+ DeleteLocalGatewayRouteTableCommand: client_ec2_1.DeleteLocalGatewayRouteTableCommand,
204
+ DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand: client_ec2_1.DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand,
205
+ DeleteLocalGatewayRouteTableVpcAssociationCommand: client_ec2_1.DeleteLocalGatewayRouteTableVpcAssociationCommand,
206
+ DeleteManagedPrefixListCommand: client_ec2_1.DeleteManagedPrefixListCommand,
207
+ DeleteNatGatewayCommand: client_ec2_1.DeleteNatGatewayCommand,
208
+ DeleteNetworkAclCommand: client_ec2_1.DeleteNetworkAclCommand,
209
+ DeleteNetworkAclEntryCommand: client_ec2_1.DeleteNetworkAclEntryCommand,
210
+ DeleteNetworkInsightsAccessScopeCommand: client_ec2_1.DeleteNetworkInsightsAccessScopeCommand,
211
+ DeleteNetworkInsightsAccessScopeAnalysisCommand: client_ec2_1.DeleteNetworkInsightsAccessScopeAnalysisCommand,
212
+ DeleteNetworkInsightsAnalysisCommand: client_ec2_1.DeleteNetworkInsightsAnalysisCommand,
213
+ DeleteNetworkInsightsPathCommand: client_ec2_1.DeleteNetworkInsightsPathCommand,
214
+ DeleteNetworkInterfaceCommand: client_ec2_1.DeleteNetworkInterfaceCommand,
215
+ DeleteNetworkInterfacePermissionCommand: client_ec2_1.DeleteNetworkInterfacePermissionCommand,
216
+ DeletePlacementGroupCommand: client_ec2_1.DeletePlacementGroupCommand,
217
+ DeletePublicIpv4PoolCommand: client_ec2_1.DeletePublicIpv4PoolCommand,
218
+ DeleteQueuedReservedInstancesCommand: client_ec2_1.DeleteQueuedReservedInstancesCommand,
219
+ DeleteRouteCommand: client_ec2_1.DeleteRouteCommand,
220
+ DeleteRouteTableCommand: client_ec2_1.DeleteRouteTableCommand,
221
+ DeleteSecurityGroupCommand: client_ec2_1.DeleteSecurityGroupCommand,
222
+ DeleteSnapshotCommand: client_ec2_1.DeleteSnapshotCommand,
223
+ DeleteSpotDatafeedSubscriptionCommand: client_ec2_1.DeleteSpotDatafeedSubscriptionCommand,
224
+ DeleteSubnetCommand: client_ec2_1.DeleteSubnetCommand,
225
+ DeleteSubnetCidrReservationCommand: client_ec2_1.DeleteSubnetCidrReservationCommand,
226
+ DeleteTagsCommand: client_ec2_1.DeleteTagsCommand,
227
+ DeleteTrafficMirrorFilterCommand: client_ec2_1.DeleteTrafficMirrorFilterCommand,
228
+ DeleteTrafficMirrorFilterRuleCommand: client_ec2_1.DeleteTrafficMirrorFilterRuleCommand,
229
+ DeleteTrafficMirrorSessionCommand: client_ec2_1.DeleteTrafficMirrorSessionCommand,
230
+ DeleteTrafficMirrorTargetCommand: client_ec2_1.DeleteTrafficMirrorTargetCommand,
231
+ DeleteTransitGatewayCommand: client_ec2_1.DeleteTransitGatewayCommand,
232
+ DeleteTransitGatewayConnectCommand: client_ec2_1.DeleteTransitGatewayConnectCommand,
233
+ DeleteTransitGatewayConnectPeerCommand: client_ec2_1.DeleteTransitGatewayConnectPeerCommand,
234
+ DeleteTransitGatewayMulticastDomainCommand: client_ec2_1.DeleteTransitGatewayMulticastDomainCommand,
235
+ DeleteTransitGatewayPeeringAttachmentCommand: client_ec2_1.DeleteTransitGatewayPeeringAttachmentCommand,
236
+ DeleteTransitGatewayPolicyTableCommand: client_ec2_1.DeleteTransitGatewayPolicyTableCommand,
237
+ DeleteTransitGatewayPrefixListReferenceCommand: client_ec2_1.DeleteTransitGatewayPrefixListReferenceCommand,
238
+ DeleteTransitGatewayRouteCommand: client_ec2_1.DeleteTransitGatewayRouteCommand,
239
+ DeleteTransitGatewayRouteTableCommand: client_ec2_1.DeleteTransitGatewayRouteTableCommand,
240
+ DeleteTransitGatewayRouteTableAnnouncementCommand: client_ec2_1.DeleteTransitGatewayRouteTableAnnouncementCommand,
241
+ DeleteTransitGatewayVpcAttachmentCommand: client_ec2_1.DeleteTransitGatewayVpcAttachmentCommand,
242
+ DeleteVerifiedAccessEndpointCommand: client_ec2_1.DeleteVerifiedAccessEndpointCommand,
243
+ DeleteVerifiedAccessGroupCommand: client_ec2_1.DeleteVerifiedAccessGroupCommand,
244
+ DeleteVerifiedAccessInstanceCommand: client_ec2_1.DeleteVerifiedAccessInstanceCommand,
245
+ DeleteVerifiedAccessTrustProviderCommand: client_ec2_1.DeleteVerifiedAccessTrustProviderCommand,
246
+ DeleteVolumeCommand: client_ec2_1.DeleteVolumeCommand,
247
+ DeleteVpcCommand: client_ec2_1.DeleteVpcCommand,
248
+ DeleteVpcBlockPublicAccessExclusionCommand: client_ec2_1.DeleteVpcBlockPublicAccessExclusionCommand,
249
+ DeleteVpcEndpointConnectionNotificationsCommand: client_ec2_1.DeleteVpcEndpointConnectionNotificationsCommand,
250
+ DeleteVpcEndpointServiceConfigurationsCommand: client_ec2_1.DeleteVpcEndpointServiceConfigurationsCommand,
251
+ DeleteVpcEndpointsCommand: client_ec2_1.DeleteVpcEndpointsCommand,
252
+ DeleteVpcPeeringConnectionCommand: client_ec2_1.DeleteVpcPeeringConnectionCommand,
253
+ DeleteVpnConnectionCommand: client_ec2_1.DeleteVpnConnectionCommand,
254
+ DeleteVpnConnectionRouteCommand: client_ec2_1.DeleteVpnConnectionRouteCommand,
255
+ DeleteVpnGatewayCommand: client_ec2_1.DeleteVpnGatewayCommand,
256
+ DeprovisionByoipCidrCommand: client_ec2_1.DeprovisionByoipCidrCommand,
257
+ DeprovisionIpamByoasnCommand: client_ec2_1.DeprovisionIpamByoasnCommand,
258
+ DeprovisionIpamPoolCidrCommand: client_ec2_1.DeprovisionIpamPoolCidrCommand,
259
+ DeprovisionPublicIpv4PoolCidrCommand: client_ec2_1.DeprovisionPublicIpv4PoolCidrCommand,
260
+ DeregisterImageCommand: client_ec2_1.DeregisterImageCommand,
261
+ DeregisterInstanceEventNotificationAttributesCommand: client_ec2_1.DeregisterInstanceEventNotificationAttributesCommand,
262
+ DeregisterTransitGatewayMulticastGroupMembersCommand: client_ec2_1.DeregisterTransitGatewayMulticastGroupMembersCommand,
263
+ DeregisterTransitGatewayMulticastGroupSourcesCommand: client_ec2_1.DeregisterTransitGatewayMulticastGroupSourcesCommand,
264
+ DescribeAccountAttributesCommand: client_ec2_1.DescribeAccountAttributesCommand,
265
+ DescribeAddressTransfersCommand: client_ec2_1.DescribeAddressTransfersCommand,
266
+ DescribeAddressesCommand: client_ec2_1.DescribeAddressesCommand,
267
+ DescribeAddressesAttributeCommand: client_ec2_1.DescribeAddressesAttributeCommand,
268
+ DescribeAggregateIdFormatCommand: client_ec2_1.DescribeAggregateIdFormatCommand,
269
+ DescribeAvailabilityZonesCommand: client_ec2_1.DescribeAvailabilityZonesCommand,
270
+ DescribeAwsNetworkPerformanceMetricSubscriptionsCommand: client_ec2_1.DescribeAwsNetworkPerformanceMetricSubscriptionsCommand,
271
+ DescribeBundleTasksCommand: client_ec2_1.DescribeBundleTasksCommand,
272
+ DescribeByoipCidrsCommand: client_ec2_1.DescribeByoipCidrsCommand,
273
+ DescribeCapacityBlockExtensionHistoryCommand: client_ec2_1.DescribeCapacityBlockExtensionHistoryCommand,
274
+ DescribeCapacityBlockExtensionOfferingsCommand: client_ec2_1.DescribeCapacityBlockExtensionOfferingsCommand,
275
+ DescribeCapacityBlockOfferingsCommand: client_ec2_1.DescribeCapacityBlockOfferingsCommand,
276
+ DescribeCapacityReservationBillingRequestsCommand: client_ec2_1.DescribeCapacityReservationBillingRequestsCommand,
277
+ DescribeCapacityReservationFleetsCommand: client_ec2_1.DescribeCapacityReservationFleetsCommand,
278
+ DescribeCapacityReservationsCommand: client_ec2_1.DescribeCapacityReservationsCommand,
279
+ DescribeCarrierGatewaysCommand: client_ec2_1.DescribeCarrierGatewaysCommand,
280
+ DescribeClassicLinkInstancesCommand: client_ec2_1.DescribeClassicLinkInstancesCommand,
281
+ DescribeClientVpnAuthorizationRulesCommand: client_ec2_1.DescribeClientVpnAuthorizationRulesCommand,
282
+ DescribeClientVpnConnectionsCommand: client_ec2_1.DescribeClientVpnConnectionsCommand,
283
+ DescribeClientVpnEndpointsCommand: client_ec2_1.DescribeClientVpnEndpointsCommand,
284
+ DescribeClientVpnRoutesCommand: client_ec2_1.DescribeClientVpnRoutesCommand,
285
+ DescribeClientVpnTargetNetworksCommand: client_ec2_1.DescribeClientVpnTargetNetworksCommand,
286
+ DescribeCoipPoolsCommand: client_ec2_1.DescribeCoipPoolsCommand,
287
+ DescribeConversionTasksCommand: client_ec2_1.DescribeConversionTasksCommand,
288
+ DescribeCustomerGatewaysCommand: client_ec2_1.DescribeCustomerGatewaysCommand,
289
+ DescribeDeclarativePoliciesReportsCommand: client_ec2_1.DescribeDeclarativePoliciesReportsCommand,
290
+ DescribeDhcpOptionsCommand: client_ec2_1.DescribeDhcpOptionsCommand,
291
+ DescribeEgressOnlyInternetGatewaysCommand: client_ec2_1.DescribeEgressOnlyInternetGatewaysCommand,
292
+ DescribeElasticGpusCommand: client_ec2_1.DescribeElasticGpusCommand,
293
+ DescribeExportImageTasksCommand: client_ec2_1.DescribeExportImageTasksCommand,
294
+ DescribeExportTasksCommand: client_ec2_1.DescribeExportTasksCommand,
295
+ DescribeFastLaunchImagesCommand: client_ec2_1.DescribeFastLaunchImagesCommand,
296
+ DescribeFastSnapshotRestoresCommand: client_ec2_1.DescribeFastSnapshotRestoresCommand,
297
+ DescribeFleetHistoryCommand: client_ec2_1.DescribeFleetHistoryCommand,
298
+ DescribeFleetInstancesCommand: client_ec2_1.DescribeFleetInstancesCommand,
299
+ DescribeFleetsCommand: client_ec2_1.DescribeFleetsCommand,
300
+ DescribeFlowLogsCommand: client_ec2_1.DescribeFlowLogsCommand,
301
+ DescribeFpgaImageAttributeCommand: client_ec2_1.DescribeFpgaImageAttributeCommand,
302
+ DescribeFpgaImagesCommand: client_ec2_1.DescribeFpgaImagesCommand,
303
+ DescribeHostReservationOfferingsCommand: client_ec2_1.DescribeHostReservationOfferingsCommand,
304
+ DescribeHostReservationsCommand: client_ec2_1.DescribeHostReservationsCommand,
305
+ DescribeHostsCommand: client_ec2_1.DescribeHostsCommand,
306
+ DescribeIamInstanceProfileAssociationsCommand: client_ec2_1.DescribeIamInstanceProfileAssociationsCommand,
307
+ DescribeIdFormatCommand: client_ec2_1.DescribeIdFormatCommand,
308
+ DescribeIdentityIdFormatCommand: client_ec2_1.DescribeIdentityIdFormatCommand,
309
+ DescribeImageAttributeCommand: client_ec2_1.DescribeImageAttributeCommand,
310
+ DescribeImagesCommand: client_ec2_1.DescribeImagesCommand,
311
+ DescribeImportImageTasksCommand: client_ec2_1.DescribeImportImageTasksCommand,
312
+ DescribeImportSnapshotTasksCommand: client_ec2_1.DescribeImportSnapshotTasksCommand,
313
+ DescribeInstanceAttributeCommand: client_ec2_1.DescribeInstanceAttributeCommand,
314
+ DescribeInstanceConnectEndpointsCommand: client_ec2_1.DescribeInstanceConnectEndpointsCommand,
315
+ DescribeInstanceCreditSpecificationsCommand: client_ec2_1.DescribeInstanceCreditSpecificationsCommand,
316
+ DescribeInstanceEventNotificationAttributesCommand: client_ec2_1.DescribeInstanceEventNotificationAttributesCommand,
317
+ DescribeInstanceEventWindowsCommand: client_ec2_1.DescribeInstanceEventWindowsCommand,
318
+ DescribeInstanceImageMetadataCommand: client_ec2_1.DescribeInstanceImageMetadataCommand,
319
+ DescribeInstanceStatusCommand: client_ec2_1.DescribeInstanceStatusCommand,
320
+ DescribeInstanceTopologyCommand: client_ec2_1.DescribeInstanceTopologyCommand,
321
+ DescribeInstanceTypeOfferingsCommand: client_ec2_1.DescribeInstanceTypeOfferingsCommand,
322
+ DescribeInstanceTypesCommand: client_ec2_1.DescribeInstanceTypesCommand,
323
+ DescribeInstancesCommand: client_ec2_1.DescribeInstancesCommand,
324
+ DescribeInternetGatewaysCommand: client_ec2_1.DescribeInternetGatewaysCommand,
325
+ DescribeIpamByoasnCommand: client_ec2_1.DescribeIpamByoasnCommand,
326
+ DescribeIpamExternalResourceVerificationTokensCommand: client_ec2_1.DescribeIpamExternalResourceVerificationTokensCommand,
327
+ DescribeIpamPoolsCommand: client_ec2_1.DescribeIpamPoolsCommand,
328
+ DescribeIpamResourceDiscoveriesCommand: client_ec2_1.DescribeIpamResourceDiscoveriesCommand,
329
+ DescribeIpamResourceDiscoveryAssociationsCommand: client_ec2_1.DescribeIpamResourceDiscoveryAssociationsCommand,
330
+ DescribeIpamScopesCommand: client_ec2_1.DescribeIpamScopesCommand,
331
+ DescribeIpamsCommand: client_ec2_1.DescribeIpamsCommand,
332
+ DescribeIpv6PoolsCommand: client_ec2_1.DescribeIpv6PoolsCommand,
333
+ DescribeKeyPairsCommand: client_ec2_1.DescribeKeyPairsCommand,
334
+ DescribeLaunchTemplateVersionsCommand: client_ec2_1.DescribeLaunchTemplateVersionsCommand,
335
+ DescribeLaunchTemplatesCommand: client_ec2_1.DescribeLaunchTemplatesCommand,
336
+ DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand: client_ec2_1.DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand,
337
+ DescribeLocalGatewayRouteTableVpcAssociationsCommand: client_ec2_1.DescribeLocalGatewayRouteTableVpcAssociationsCommand,
338
+ DescribeLocalGatewayRouteTablesCommand: client_ec2_1.DescribeLocalGatewayRouteTablesCommand,
339
+ DescribeLocalGatewayVirtualInterfaceGroupsCommand: client_ec2_1.DescribeLocalGatewayVirtualInterfaceGroupsCommand,
340
+ DescribeLocalGatewayVirtualInterfacesCommand: client_ec2_1.DescribeLocalGatewayVirtualInterfacesCommand,
341
+ DescribeLocalGatewaysCommand: client_ec2_1.DescribeLocalGatewaysCommand,
342
+ DescribeLockedSnapshotsCommand: client_ec2_1.DescribeLockedSnapshotsCommand,
343
+ DescribeMacHostsCommand: client_ec2_1.DescribeMacHostsCommand,
344
+ DescribeManagedPrefixListsCommand: client_ec2_1.DescribeManagedPrefixListsCommand,
345
+ DescribeMovingAddressesCommand: client_ec2_1.DescribeMovingAddressesCommand,
346
+ DescribeNatGatewaysCommand: client_ec2_1.DescribeNatGatewaysCommand,
347
+ DescribeNetworkAclsCommand: client_ec2_1.DescribeNetworkAclsCommand,
348
+ DescribeNetworkInsightsAccessScopeAnalysesCommand: client_ec2_1.DescribeNetworkInsightsAccessScopeAnalysesCommand,
349
+ DescribeNetworkInsightsAccessScopesCommand: client_ec2_1.DescribeNetworkInsightsAccessScopesCommand,
350
+ DescribeNetworkInsightsAnalysesCommand: client_ec2_1.DescribeNetworkInsightsAnalysesCommand,
351
+ DescribeNetworkInsightsPathsCommand: client_ec2_1.DescribeNetworkInsightsPathsCommand,
352
+ DescribeNetworkInterfaceAttributeCommand: client_ec2_1.DescribeNetworkInterfaceAttributeCommand,
353
+ DescribeNetworkInterfacePermissionsCommand: client_ec2_1.DescribeNetworkInterfacePermissionsCommand,
354
+ DescribeNetworkInterfacesCommand: client_ec2_1.DescribeNetworkInterfacesCommand,
355
+ DescribePlacementGroupsCommand: client_ec2_1.DescribePlacementGroupsCommand,
356
+ DescribePrefixListsCommand: client_ec2_1.DescribePrefixListsCommand,
357
+ DescribePrincipalIdFormatCommand: client_ec2_1.DescribePrincipalIdFormatCommand,
358
+ DescribePublicIpv4PoolsCommand: client_ec2_1.DescribePublicIpv4PoolsCommand,
359
+ DescribeRegionsCommand: client_ec2_1.DescribeRegionsCommand,
360
+ DescribeReplaceRootVolumeTasksCommand: client_ec2_1.DescribeReplaceRootVolumeTasksCommand,
361
+ DescribeReservedInstancesCommand: client_ec2_1.DescribeReservedInstancesCommand,
362
+ DescribeReservedInstancesListingsCommand: client_ec2_1.DescribeReservedInstancesListingsCommand,
363
+ DescribeReservedInstancesModificationsCommand: client_ec2_1.DescribeReservedInstancesModificationsCommand,
364
+ DescribeReservedInstancesOfferingsCommand: client_ec2_1.DescribeReservedInstancesOfferingsCommand,
365
+ DescribeRouteTablesCommand: client_ec2_1.DescribeRouteTablesCommand,
366
+ DescribeScheduledInstanceAvailabilityCommand: client_ec2_1.DescribeScheduledInstanceAvailabilityCommand,
367
+ DescribeScheduledInstancesCommand: client_ec2_1.DescribeScheduledInstancesCommand,
368
+ DescribeSecurityGroupReferencesCommand: client_ec2_1.DescribeSecurityGroupReferencesCommand,
369
+ DescribeSecurityGroupRulesCommand: client_ec2_1.DescribeSecurityGroupRulesCommand,
370
+ DescribeSecurityGroupVpcAssociationsCommand: client_ec2_1.DescribeSecurityGroupVpcAssociationsCommand,
371
+ DescribeSecurityGroupsCommand: client_ec2_1.DescribeSecurityGroupsCommand,
372
+ DescribeSnapshotAttributeCommand: client_ec2_1.DescribeSnapshotAttributeCommand,
373
+ DescribeSnapshotTierStatusCommand: client_ec2_1.DescribeSnapshotTierStatusCommand,
374
+ DescribeSnapshotsCommand: client_ec2_1.DescribeSnapshotsCommand,
375
+ DescribeSpotDatafeedSubscriptionCommand: client_ec2_1.DescribeSpotDatafeedSubscriptionCommand,
376
+ DescribeSpotFleetInstancesCommand: client_ec2_1.DescribeSpotFleetInstancesCommand,
377
+ DescribeSpotFleetRequestHistoryCommand: client_ec2_1.DescribeSpotFleetRequestHistoryCommand,
378
+ DescribeSpotFleetRequestsCommand: client_ec2_1.DescribeSpotFleetRequestsCommand,
379
+ DescribeSpotInstanceRequestsCommand: client_ec2_1.DescribeSpotInstanceRequestsCommand,
380
+ DescribeSpotPriceHistoryCommand: client_ec2_1.DescribeSpotPriceHistoryCommand,
381
+ DescribeStaleSecurityGroupsCommand: client_ec2_1.DescribeStaleSecurityGroupsCommand,
382
+ DescribeStoreImageTasksCommand: client_ec2_1.DescribeStoreImageTasksCommand,
383
+ DescribeSubnetsCommand: client_ec2_1.DescribeSubnetsCommand,
384
+ DescribeTagsCommand: client_ec2_1.DescribeTagsCommand,
385
+ DescribeTrafficMirrorFilterRulesCommand: client_ec2_1.DescribeTrafficMirrorFilterRulesCommand,
386
+ DescribeTrafficMirrorFiltersCommand: client_ec2_1.DescribeTrafficMirrorFiltersCommand,
387
+ DescribeTrafficMirrorSessionsCommand: client_ec2_1.DescribeTrafficMirrorSessionsCommand,
388
+ DescribeTrafficMirrorTargetsCommand: client_ec2_1.DescribeTrafficMirrorTargetsCommand,
389
+ DescribeTransitGatewayAttachmentsCommand: client_ec2_1.DescribeTransitGatewayAttachmentsCommand,
390
+ DescribeTransitGatewayConnectPeersCommand: client_ec2_1.DescribeTransitGatewayConnectPeersCommand,
391
+ DescribeTransitGatewayConnectsCommand: client_ec2_1.DescribeTransitGatewayConnectsCommand,
392
+ DescribeTransitGatewayMulticastDomainsCommand: client_ec2_1.DescribeTransitGatewayMulticastDomainsCommand,
393
+ DescribeTransitGatewayPeeringAttachmentsCommand: client_ec2_1.DescribeTransitGatewayPeeringAttachmentsCommand,
394
+ DescribeTransitGatewayPolicyTablesCommand: client_ec2_1.DescribeTransitGatewayPolicyTablesCommand,
395
+ DescribeTransitGatewayRouteTableAnnouncementsCommand: client_ec2_1.DescribeTransitGatewayRouteTableAnnouncementsCommand,
396
+ DescribeTransitGatewayRouteTablesCommand: client_ec2_1.DescribeTransitGatewayRouteTablesCommand,
397
+ DescribeTransitGatewayVpcAttachmentsCommand: client_ec2_1.DescribeTransitGatewayVpcAttachmentsCommand,
398
+ DescribeTransitGatewaysCommand: client_ec2_1.DescribeTransitGatewaysCommand,
399
+ DescribeTrunkInterfaceAssociationsCommand: client_ec2_1.DescribeTrunkInterfaceAssociationsCommand,
400
+ DescribeVerifiedAccessEndpointsCommand: client_ec2_1.DescribeVerifiedAccessEndpointsCommand,
401
+ DescribeVerifiedAccessGroupsCommand: client_ec2_1.DescribeVerifiedAccessGroupsCommand,
402
+ DescribeVerifiedAccessInstanceLoggingConfigurationsCommand: client_ec2_1.DescribeVerifiedAccessInstanceLoggingConfigurationsCommand,
403
+ DescribeVerifiedAccessInstancesCommand: client_ec2_1.DescribeVerifiedAccessInstancesCommand,
404
+ DescribeVerifiedAccessTrustProvidersCommand: client_ec2_1.DescribeVerifiedAccessTrustProvidersCommand,
405
+ DescribeVolumeAttributeCommand: client_ec2_1.DescribeVolumeAttributeCommand,
406
+ DescribeVolumeStatusCommand: client_ec2_1.DescribeVolumeStatusCommand,
407
+ DescribeVolumesCommand: client_ec2_1.DescribeVolumesCommand,
408
+ DescribeVolumesModificationsCommand: client_ec2_1.DescribeVolumesModificationsCommand,
409
+ DescribeVpcAttributeCommand: client_ec2_1.DescribeVpcAttributeCommand,
410
+ DescribeVpcBlockPublicAccessExclusionsCommand: client_ec2_1.DescribeVpcBlockPublicAccessExclusionsCommand,
411
+ DescribeVpcBlockPublicAccessOptionsCommand: client_ec2_1.DescribeVpcBlockPublicAccessOptionsCommand,
412
+ DescribeVpcClassicLinkCommand: client_ec2_1.DescribeVpcClassicLinkCommand,
413
+ DescribeVpcClassicLinkDnsSupportCommand: client_ec2_1.DescribeVpcClassicLinkDnsSupportCommand,
414
+ DescribeVpcEndpointAssociationsCommand: client_ec2_1.DescribeVpcEndpointAssociationsCommand,
415
+ DescribeVpcEndpointConnectionNotificationsCommand: client_ec2_1.DescribeVpcEndpointConnectionNotificationsCommand,
416
+ DescribeVpcEndpointConnectionsCommand: client_ec2_1.DescribeVpcEndpointConnectionsCommand,
417
+ DescribeVpcEndpointServiceConfigurationsCommand: client_ec2_1.DescribeVpcEndpointServiceConfigurationsCommand,
418
+ DescribeVpcEndpointServicePermissionsCommand: client_ec2_1.DescribeVpcEndpointServicePermissionsCommand,
419
+ DescribeVpcEndpointServicesCommand: client_ec2_1.DescribeVpcEndpointServicesCommand,
420
+ DescribeVpcEndpointsCommand: client_ec2_1.DescribeVpcEndpointsCommand,
421
+ DescribeVpcPeeringConnectionsCommand: client_ec2_1.DescribeVpcPeeringConnectionsCommand,
422
+ DescribeVpcsCommand: client_ec2_1.DescribeVpcsCommand,
423
+ DescribeVpnConnectionsCommand: client_ec2_1.DescribeVpnConnectionsCommand,
424
+ DescribeVpnGatewaysCommand: client_ec2_1.DescribeVpnGatewaysCommand,
425
+ DetachClassicLinkVpcCommand: client_ec2_1.DetachClassicLinkVpcCommand,
426
+ DetachInternetGatewayCommand: client_ec2_1.DetachInternetGatewayCommand,
427
+ DetachNetworkInterfaceCommand: client_ec2_1.DetachNetworkInterfaceCommand,
428
+ DetachVerifiedAccessTrustProviderCommand: client_ec2_1.DetachVerifiedAccessTrustProviderCommand,
429
+ DetachVolumeCommand: client_ec2_1.DetachVolumeCommand,
430
+ DetachVpnGatewayCommand: client_ec2_1.DetachVpnGatewayCommand,
431
+ DisableAddressTransferCommand: client_ec2_1.DisableAddressTransferCommand,
432
+ DisableAllowedImagesSettingsCommand: client_ec2_1.DisableAllowedImagesSettingsCommand,
433
+ DisableAwsNetworkPerformanceMetricSubscriptionCommand: client_ec2_1.DisableAwsNetworkPerformanceMetricSubscriptionCommand,
434
+ DisableEbsEncryptionByDefaultCommand: client_ec2_1.DisableEbsEncryptionByDefaultCommand,
435
+ DisableFastLaunchCommand: client_ec2_1.DisableFastLaunchCommand,
436
+ DisableFastSnapshotRestoresCommand: client_ec2_1.DisableFastSnapshotRestoresCommand,
437
+ DisableImageCommand: client_ec2_1.DisableImageCommand,
438
+ DisableImageBlockPublicAccessCommand: client_ec2_1.DisableImageBlockPublicAccessCommand,
439
+ DisableImageDeprecationCommand: client_ec2_1.DisableImageDeprecationCommand,
440
+ DisableImageDeregistrationProtectionCommand: client_ec2_1.DisableImageDeregistrationProtectionCommand,
441
+ DisableIpamOrganizationAdminAccountCommand: client_ec2_1.DisableIpamOrganizationAdminAccountCommand,
442
+ DisableSerialConsoleAccessCommand: client_ec2_1.DisableSerialConsoleAccessCommand,
443
+ DisableSnapshotBlockPublicAccessCommand: client_ec2_1.DisableSnapshotBlockPublicAccessCommand,
444
+ DisableTransitGatewayRouteTablePropagationCommand: client_ec2_1.DisableTransitGatewayRouteTablePropagationCommand,
445
+ DisableVgwRoutePropagationCommand: client_ec2_1.DisableVgwRoutePropagationCommand,
446
+ DisableVpcClassicLinkCommand: client_ec2_1.DisableVpcClassicLinkCommand,
447
+ DisableVpcClassicLinkDnsSupportCommand: client_ec2_1.DisableVpcClassicLinkDnsSupportCommand,
448
+ DisassociateAddressCommand: client_ec2_1.DisassociateAddressCommand,
449
+ DisassociateCapacityReservationBillingOwnerCommand: client_ec2_1.DisassociateCapacityReservationBillingOwnerCommand,
450
+ DisassociateClientVpnTargetNetworkCommand: client_ec2_1.DisassociateClientVpnTargetNetworkCommand,
451
+ DisassociateEnclaveCertificateIamRoleCommand: client_ec2_1.DisassociateEnclaveCertificateIamRoleCommand,
452
+ DisassociateIamInstanceProfileCommand: client_ec2_1.DisassociateIamInstanceProfileCommand,
453
+ DisassociateInstanceEventWindowCommand: client_ec2_1.DisassociateInstanceEventWindowCommand,
454
+ DisassociateIpamByoasnCommand: client_ec2_1.DisassociateIpamByoasnCommand,
455
+ DisassociateIpamResourceDiscoveryCommand: client_ec2_1.DisassociateIpamResourceDiscoveryCommand,
456
+ DisassociateNatGatewayAddressCommand: client_ec2_1.DisassociateNatGatewayAddressCommand,
457
+ DisassociateRouteTableCommand: client_ec2_1.DisassociateRouteTableCommand,
458
+ DisassociateSecurityGroupVpcCommand: client_ec2_1.DisassociateSecurityGroupVpcCommand,
459
+ DisassociateSubnetCidrBlockCommand: client_ec2_1.DisassociateSubnetCidrBlockCommand,
460
+ DisassociateTransitGatewayMulticastDomainCommand: client_ec2_1.DisassociateTransitGatewayMulticastDomainCommand,
461
+ DisassociateTransitGatewayPolicyTableCommand: client_ec2_1.DisassociateTransitGatewayPolicyTableCommand,
462
+ DisassociateTransitGatewayRouteTableCommand: client_ec2_1.DisassociateTransitGatewayRouteTableCommand,
463
+ DisassociateTrunkInterfaceCommand: client_ec2_1.DisassociateTrunkInterfaceCommand,
464
+ DisassociateVpcCidrBlockCommand: client_ec2_1.DisassociateVpcCidrBlockCommand,
465
+ EnableAddressTransferCommand: client_ec2_1.EnableAddressTransferCommand,
466
+ EnableAllowedImagesSettingsCommand: client_ec2_1.EnableAllowedImagesSettingsCommand,
467
+ EnableAwsNetworkPerformanceMetricSubscriptionCommand: client_ec2_1.EnableAwsNetworkPerformanceMetricSubscriptionCommand,
468
+ EnableEbsEncryptionByDefaultCommand: client_ec2_1.EnableEbsEncryptionByDefaultCommand,
469
+ EnableFastLaunchCommand: client_ec2_1.EnableFastLaunchCommand,
470
+ EnableFastSnapshotRestoresCommand: client_ec2_1.EnableFastSnapshotRestoresCommand,
471
+ EnableImageCommand: client_ec2_1.EnableImageCommand,
472
+ EnableImageBlockPublicAccessCommand: client_ec2_1.EnableImageBlockPublicAccessCommand,
473
+ EnableImageDeprecationCommand: client_ec2_1.EnableImageDeprecationCommand,
474
+ EnableImageDeregistrationProtectionCommand: client_ec2_1.EnableImageDeregistrationProtectionCommand,
475
+ EnableIpamOrganizationAdminAccountCommand: client_ec2_1.EnableIpamOrganizationAdminAccountCommand,
476
+ EnableReachabilityAnalyzerOrganizationSharingCommand: client_ec2_1.EnableReachabilityAnalyzerOrganizationSharingCommand,
477
+ EnableSerialConsoleAccessCommand: client_ec2_1.EnableSerialConsoleAccessCommand,
478
+ EnableSnapshotBlockPublicAccessCommand: client_ec2_1.EnableSnapshotBlockPublicAccessCommand,
479
+ EnableTransitGatewayRouteTablePropagationCommand: client_ec2_1.EnableTransitGatewayRouteTablePropagationCommand,
480
+ EnableVgwRoutePropagationCommand: client_ec2_1.EnableVgwRoutePropagationCommand,
481
+ EnableVolumeIOCommand: client_ec2_1.EnableVolumeIOCommand,
482
+ EnableVpcClassicLinkCommand: client_ec2_1.EnableVpcClassicLinkCommand,
483
+ EnableVpcClassicLinkDnsSupportCommand: client_ec2_1.EnableVpcClassicLinkDnsSupportCommand,
484
+ ExportClientVpnClientCertificateRevocationListCommand: client_ec2_1.ExportClientVpnClientCertificateRevocationListCommand,
485
+ ExportClientVpnClientConfigurationCommand: client_ec2_1.ExportClientVpnClientConfigurationCommand,
486
+ ExportImageCommand: client_ec2_1.ExportImageCommand,
487
+ ExportTransitGatewayRoutesCommand: client_ec2_1.ExportTransitGatewayRoutesCommand,
488
+ ExportVerifiedAccessInstanceClientConfigurationCommand: client_ec2_1.ExportVerifiedAccessInstanceClientConfigurationCommand,
489
+ GetAllowedImagesSettingsCommand: client_ec2_1.GetAllowedImagesSettingsCommand,
490
+ GetAssociatedEnclaveCertificateIamRolesCommand: client_ec2_1.GetAssociatedEnclaveCertificateIamRolesCommand,
491
+ GetAssociatedIpv6PoolCidrsCommand: client_ec2_1.GetAssociatedIpv6PoolCidrsCommand,
492
+ GetAwsNetworkPerformanceDataCommand: client_ec2_1.GetAwsNetworkPerformanceDataCommand,
493
+ GetCapacityReservationUsageCommand: client_ec2_1.GetCapacityReservationUsageCommand,
494
+ GetCoipPoolUsageCommand: client_ec2_1.GetCoipPoolUsageCommand,
495
+ GetConsoleOutputCommand: client_ec2_1.GetConsoleOutputCommand,
496
+ GetConsoleScreenshotCommand: client_ec2_1.GetConsoleScreenshotCommand,
497
+ GetDeclarativePoliciesReportSummaryCommand: client_ec2_1.GetDeclarativePoliciesReportSummaryCommand,
498
+ GetDefaultCreditSpecificationCommand: client_ec2_1.GetDefaultCreditSpecificationCommand,
499
+ GetEbsDefaultKmsKeyIdCommand: client_ec2_1.GetEbsDefaultKmsKeyIdCommand,
500
+ GetEbsEncryptionByDefaultCommand: client_ec2_1.GetEbsEncryptionByDefaultCommand,
501
+ GetFlowLogsIntegrationTemplateCommand: client_ec2_1.GetFlowLogsIntegrationTemplateCommand,
502
+ GetGroupsForCapacityReservationCommand: client_ec2_1.GetGroupsForCapacityReservationCommand,
503
+ GetHostReservationPurchasePreviewCommand: client_ec2_1.GetHostReservationPurchasePreviewCommand,
504
+ GetImageBlockPublicAccessStateCommand: client_ec2_1.GetImageBlockPublicAccessStateCommand,
505
+ GetInstanceMetadataDefaultsCommand: client_ec2_1.GetInstanceMetadataDefaultsCommand,
506
+ GetInstanceTpmEkPubCommand: client_ec2_1.GetInstanceTpmEkPubCommand,
507
+ GetInstanceTypesFromInstanceRequirementsCommand: client_ec2_1.GetInstanceTypesFromInstanceRequirementsCommand,
508
+ GetInstanceUefiDataCommand: client_ec2_1.GetInstanceUefiDataCommand,
509
+ GetIpamAddressHistoryCommand: client_ec2_1.GetIpamAddressHistoryCommand,
510
+ GetIpamDiscoveredAccountsCommand: client_ec2_1.GetIpamDiscoveredAccountsCommand,
511
+ GetIpamDiscoveredPublicAddressesCommand: client_ec2_1.GetIpamDiscoveredPublicAddressesCommand,
512
+ GetIpamDiscoveredResourceCidrsCommand: client_ec2_1.GetIpamDiscoveredResourceCidrsCommand,
513
+ GetIpamPoolAllocationsCommand: client_ec2_1.GetIpamPoolAllocationsCommand,
514
+ GetIpamPoolCidrsCommand: client_ec2_1.GetIpamPoolCidrsCommand,
515
+ GetIpamResourceCidrsCommand: client_ec2_1.GetIpamResourceCidrsCommand,
516
+ GetLaunchTemplateDataCommand: client_ec2_1.GetLaunchTemplateDataCommand,
517
+ GetManagedPrefixListAssociationsCommand: client_ec2_1.GetManagedPrefixListAssociationsCommand,
518
+ GetManagedPrefixListEntriesCommand: client_ec2_1.GetManagedPrefixListEntriesCommand,
519
+ GetNetworkInsightsAccessScopeAnalysisFindingsCommand: client_ec2_1.GetNetworkInsightsAccessScopeAnalysisFindingsCommand,
520
+ GetNetworkInsightsAccessScopeContentCommand: client_ec2_1.GetNetworkInsightsAccessScopeContentCommand,
521
+ GetPasswordDataCommand: client_ec2_1.GetPasswordDataCommand,
522
+ GetReservedInstancesExchangeQuoteCommand: client_ec2_1.GetReservedInstancesExchangeQuoteCommand,
523
+ GetSecurityGroupsForVpcCommand: client_ec2_1.GetSecurityGroupsForVpcCommand,
524
+ GetSerialConsoleAccessStatusCommand: client_ec2_1.GetSerialConsoleAccessStatusCommand,
525
+ GetSnapshotBlockPublicAccessStateCommand: client_ec2_1.GetSnapshotBlockPublicAccessStateCommand,
526
+ GetSpotPlacementScoresCommand: client_ec2_1.GetSpotPlacementScoresCommand,
527
+ GetSubnetCidrReservationsCommand: client_ec2_1.GetSubnetCidrReservationsCommand,
528
+ GetTransitGatewayAttachmentPropagationsCommand: client_ec2_1.GetTransitGatewayAttachmentPropagationsCommand,
529
+ GetTransitGatewayMulticastDomainAssociationsCommand: client_ec2_1.GetTransitGatewayMulticastDomainAssociationsCommand,
530
+ GetTransitGatewayPolicyTableAssociationsCommand: client_ec2_1.GetTransitGatewayPolicyTableAssociationsCommand,
531
+ GetTransitGatewayPolicyTableEntriesCommand: client_ec2_1.GetTransitGatewayPolicyTableEntriesCommand,
532
+ GetTransitGatewayPrefixListReferencesCommand: client_ec2_1.GetTransitGatewayPrefixListReferencesCommand,
533
+ GetTransitGatewayRouteTableAssociationsCommand: client_ec2_1.GetTransitGatewayRouteTableAssociationsCommand,
534
+ GetTransitGatewayRouteTablePropagationsCommand: client_ec2_1.GetTransitGatewayRouteTablePropagationsCommand,
535
+ GetVerifiedAccessEndpointPolicyCommand: client_ec2_1.GetVerifiedAccessEndpointPolicyCommand,
536
+ GetVerifiedAccessEndpointTargetsCommand: client_ec2_1.GetVerifiedAccessEndpointTargetsCommand,
537
+ GetVerifiedAccessGroupPolicyCommand: client_ec2_1.GetVerifiedAccessGroupPolicyCommand,
538
+ GetVpnConnectionDeviceSampleConfigurationCommand: client_ec2_1.GetVpnConnectionDeviceSampleConfigurationCommand,
539
+ GetVpnConnectionDeviceTypesCommand: client_ec2_1.GetVpnConnectionDeviceTypesCommand,
540
+ GetVpnTunnelReplacementStatusCommand: client_ec2_1.GetVpnTunnelReplacementStatusCommand,
541
+ ImportClientVpnClientCertificateRevocationListCommand: client_ec2_1.ImportClientVpnClientCertificateRevocationListCommand,
542
+ ImportImageCommand: client_ec2_1.ImportImageCommand,
543
+ ImportInstanceCommand: client_ec2_1.ImportInstanceCommand,
544
+ ImportKeyPairCommand: client_ec2_1.ImportKeyPairCommand,
545
+ ImportSnapshotCommand: client_ec2_1.ImportSnapshotCommand,
546
+ ImportVolumeCommand: client_ec2_1.ImportVolumeCommand,
547
+ ListImagesInRecycleBinCommand: client_ec2_1.ListImagesInRecycleBinCommand,
548
+ ListSnapshotsInRecycleBinCommand: client_ec2_1.ListSnapshotsInRecycleBinCommand,
549
+ LockSnapshotCommand: client_ec2_1.LockSnapshotCommand,
550
+ ModifyAddressAttributeCommand: client_ec2_1.ModifyAddressAttributeCommand,
551
+ ModifyAvailabilityZoneGroupCommand: client_ec2_1.ModifyAvailabilityZoneGroupCommand,
552
+ ModifyCapacityReservationCommand: client_ec2_1.ModifyCapacityReservationCommand,
553
+ ModifyCapacityReservationFleetCommand: client_ec2_1.ModifyCapacityReservationFleetCommand,
554
+ ModifyClientVpnEndpointCommand: client_ec2_1.ModifyClientVpnEndpointCommand,
555
+ ModifyDefaultCreditSpecificationCommand: client_ec2_1.ModifyDefaultCreditSpecificationCommand,
556
+ ModifyEbsDefaultKmsKeyIdCommand: client_ec2_1.ModifyEbsDefaultKmsKeyIdCommand,
557
+ ModifyFleetCommand: client_ec2_1.ModifyFleetCommand,
558
+ ModifyFpgaImageAttributeCommand: client_ec2_1.ModifyFpgaImageAttributeCommand,
559
+ ModifyHostsCommand: client_ec2_1.ModifyHostsCommand,
560
+ ModifyIdFormatCommand: client_ec2_1.ModifyIdFormatCommand,
561
+ ModifyIdentityIdFormatCommand: client_ec2_1.ModifyIdentityIdFormatCommand,
562
+ ModifyImageAttributeCommand: client_ec2_1.ModifyImageAttributeCommand,
563
+ ModifyInstanceAttributeCommand: client_ec2_1.ModifyInstanceAttributeCommand,
564
+ ModifyInstanceCapacityReservationAttributesCommand: client_ec2_1.ModifyInstanceCapacityReservationAttributesCommand,
565
+ ModifyInstanceCpuOptionsCommand: client_ec2_1.ModifyInstanceCpuOptionsCommand,
566
+ ModifyInstanceCreditSpecificationCommand: client_ec2_1.ModifyInstanceCreditSpecificationCommand,
567
+ ModifyInstanceEventStartTimeCommand: client_ec2_1.ModifyInstanceEventStartTimeCommand,
568
+ ModifyInstanceEventWindowCommand: client_ec2_1.ModifyInstanceEventWindowCommand,
569
+ ModifyInstanceMaintenanceOptionsCommand: client_ec2_1.ModifyInstanceMaintenanceOptionsCommand,
570
+ ModifyInstanceMetadataDefaultsCommand: client_ec2_1.ModifyInstanceMetadataDefaultsCommand,
571
+ ModifyInstanceMetadataOptionsCommand: client_ec2_1.ModifyInstanceMetadataOptionsCommand,
572
+ ModifyInstanceNetworkPerformanceOptionsCommand: client_ec2_1.ModifyInstanceNetworkPerformanceOptionsCommand,
573
+ ModifyInstancePlacementCommand: client_ec2_1.ModifyInstancePlacementCommand,
574
+ ModifyIpamCommand: client_ec2_1.ModifyIpamCommand,
575
+ ModifyIpamPoolCommand: client_ec2_1.ModifyIpamPoolCommand,
576
+ ModifyIpamResourceCidrCommand: client_ec2_1.ModifyIpamResourceCidrCommand,
577
+ ModifyIpamResourceDiscoveryCommand: client_ec2_1.ModifyIpamResourceDiscoveryCommand,
578
+ ModifyIpamScopeCommand: client_ec2_1.ModifyIpamScopeCommand,
579
+ ModifyLaunchTemplateCommand: client_ec2_1.ModifyLaunchTemplateCommand,
580
+ ModifyLocalGatewayRouteCommand: client_ec2_1.ModifyLocalGatewayRouteCommand,
581
+ ModifyManagedPrefixListCommand: client_ec2_1.ModifyManagedPrefixListCommand,
582
+ ModifyNetworkInterfaceAttributeCommand: client_ec2_1.ModifyNetworkInterfaceAttributeCommand,
583
+ ModifyPrivateDnsNameOptionsCommand: client_ec2_1.ModifyPrivateDnsNameOptionsCommand,
584
+ ModifyReservedInstancesCommand: client_ec2_1.ModifyReservedInstancesCommand,
585
+ ModifySecurityGroupRulesCommand: client_ec2_1.ModifySecurityGroupRulesCommand,
586
+ ModifySnapshotAttributeCommand: client_ec2_1.ModifySnapshotAttributeCommand,
587
+ ModifySnapshotTierCommand: client_ec2_1.ModifySnapshotTierCommand,
588
+ ModifySpotFleetRequestCommand: client_ec2_1.ModifySpotFleetRequestCommand,
589
+ ModifySubnetAttributeCommand: client_ec2_1.ModifySubnetAttributeCommand,
590
+ ModifyTrafficMirrorFilterNetworkServicesCommand: client_ec2_1.ModifyTrafficMirrorFilterNetworkServicesCommand,
591
+ ModifyTrafficMirrorFilterRuleCommand: client_ec2_1.ModifyTrafficMirrorFilterRuleCommand,
592
+ ModifyTrafficMirrorSessionCommand: client_ec2_1.ModifyTrafficMirrorSessionCommand,
593
+ ModifyTransitGatewayCommand: client_ec2_1.ModifyTransitGatewayCommand,
594
+ ModifyTransitGatewayPrefixListReferenceCommand: client_ec2_1.ModifyTransitGatewayPrefixListReferenceCommand,
595
+ ModifyTransitGatewayVpcAttachmentCommand: client_ec2_1.ModifyTransitGatewayVpcAttachmentCommand,
596
+ ModifyVerifiedAccessEndpointCommand: client_ec2_1.ModifyVerifiedAccessEndpointCommand,
597
+ ModifyVerifiedAccessEndpointPolicyCommand: client_ec2_1.ModifyVerifiedAccessEndpointPolicyCommand,
598
+ ModifyVerifiedAccessGroupCommand: client_ec2_1.ModifyVerifiedAccessGroupCommand,
599
+ ModifyVerifiedAccessGroupPolicyCommand: client_ec2_1.ModifyVerifiedAccessGroupPolicyCommand,
600
+ ModifyVerifiedAccessInstanceCommand: client_ec2_1.ModifyVerifiedAccessInstanceCommand,
601
+ ModifyVerifiedAccessInstanceLoggingConfigurationCommand: client_ec2_1.ModifyVerifiedAccessInstanceLoggingConfigurationCommand,
602
+ ModifyVerifiedAccessTrustProviderCommand: client_ec2_1.ModifyVerifiedAccessTrustProviderCommand,
603
+ ModifyVolumeCommand: client_ec2_1.ModifyVolumeCommand,
604
+ ModifyVolumeAttributeCommand: client_ec2_1.ModifyVolumeAttributeCommand,
605
+ ModifyVpcAttributeCommand: client_ec2_1.ModifyVpcAttributeCommand,
606
+ ModifyVpcBlockPublicAccessExclusionCommand: client_ec2_1.ModifyVpcBlockPublicAccessExclusionCommand,
607
+ ModifyVpcBlockPublicAccessOptionsCommand: client_ec2_1.ModifyVpcBlockPublicAccessOptionsCommand,
608
+ ModifyVpcEndpointCommand: client_ec2_1.ModifyVpcEndpointCommand,
609
+ ModifyVpcEndpointConnectionNotificationCommand: client_ec2_1.ModifyVpcEndpointConnectionNotificationCommand,
610
+ ModifyVpcEndpointServiceConfigurationCommand: client_ec2_1.ModifyVpcEndpointServiceConfigurationCommand,
611
+ ModifyVpcEndpointServicePayerResponsibilityCommand: client_ec2_1.ModifyVpcEndpointServicePayerResponsibilityCommand,
612
+ ModifyVpcEndpointServicePermissionsCommand: client_ec2_1.ModifyVpcEndpointServicePermissionsCommand,
613
+ ModifyVpcPeeringConnectionOptionsCommand: client_ec2_1.ModifyVpcPeeringConnectionOptionsCommand,
614
+ ModifyVpcTenancyCommand: client_ec2_1.ModifyVpcTenancyCommand,
615
+ ModifyVpnConnectionCommand: client_ec2_1.ModifyVpnConnectionCommand,
616
+ ModifyVpnConnectionOptionsCommand: client_ec2_1.ModifyVpnConnectionOptionsCommand,
617
+ ModifyVpnTunnelCertificateCommand: client_ec2_1.ModifyVpnTunnelCertificateCommand,
618
+ ModifyVpnTunnelOptionsCommand: client_ec2_1.ModifyVpnTunnelOptionsCommand,
619
+ MonitorInstancesCommand: client_ec2_1.MonitorInstancesCommand,
620
+ MoveAddressToVpcCommand: client_ec2_1.MoveAddressToVpcCommand,
621
+ MoveByoipCidrToIpamCommand: client_ec2_1.MoveByoipCidrToIpamCommand,
622
+ MoveCapacityReservationInstancesCommand: client_ec2_1.MoveCapacityReservationInstancesCommand,
623
+ ProvisionByoipCidrCommand: client_ec2_1.ProvisionByoipCidrCommand,
624
+ ProvisionIpamByoasnCommand: client_ec2_1.ProvisionIpamByoasnCommand,
625
+ ProvisionIpamPoolCidrCommand: client_ec2_1.ProvisionIpamPoolCidrCommand,
626
+ ProvisionPublicIpv4PoolCidrCommand: client_ec2_1.ProvisionPublicIpv4PoolCidrCommand,
627
+ PurchaseCapacityBlockCommand: client_ec2_1.PurchaseCapacityBlockCommand,
628
+ PurchaseCapacityBlockExtensionCommand: client_ec2_1.PurchaseCapacityBlockExtensionCommand,
629
+ PurchaseHostReservationCommand: client_ec2_1.PurchaseHostReservationCommand,
630
+ PurchaseReservedInstancesOfferingCommand: client_ec2_1.PurchaseReservedInstancesOfferingCommand,
631
+ PurchaseScheduledInstancesCommand: client_ec2_1.PurchaseScheduledInstancesCommand,
632
+ RebootInstancesCommand: client_ec2_1.RebootInstancesCommand,
633
+ RegisterImageCommand: client_ec2_1.RegisterImageCommand,
634
+ RegisterInstanceEventNotificationAttributesCommand: client_ec2_1.RegisterInstanceEventNotificationAttributesCommand,
635
+ RegisterTransitGatewayMulticastGroupMembersCommand: client_ec2_1.RegisterTransitGatewayMulticastGroupMembersCommand,
636
+ RegisterTransitGatewayMulticastGroupSourcesCommand: client_ec2_1.RegisterTransitGatewayMulticastGroupSourcesCommand,
637
+ RejectCapacityReservationBillingOwnershipCommand: client_ec2_1.RejectCapacityReservationBillingOwnershipCommand,
638
+ RejectTransitGatewayMulticastDomainAssociationsCommand: client_ec2_1.RejectTransitGatewayMulticastDomainAssociationsCommand,
639
+ RejectTransitGatewayPeeringAttachmentCommand: client_ec2_1.RejectTransitGatewayPeeringAttachmentCommand,
640
+ RejectTransitGatewayVpcAttachmentCommand: client_ec2_1.RejectTransitGatewayVpcAttachmentCommand,
641
+ RejectVpcEndpointConnectionsCommand: client_ec2_1.RejectVpcEndpointConnectionsCommand,
642
+ RejectVpcPeeringConnectionCommand: client_ec2_1.RejectVpcPeeringConnectionCommand,
643
+ ReleaseAddressCommand: client_ec2_1.ReleaseAddressCommand,
644
+ ReleaseHostsCommand: client_ec2_1.ReleaseHostsCommand,
645
+ ReleaseIpamPoolAllocationCommand: client_ec2_1.ReleaseIpamPoolAllocationCommand,
646
+ ReplaceIamInstanceProfileAssociationCommand: client_ec2_1.ReplaceIamInstanceProfileAssociationCommand,
647
+ ReplaceImageCriteriaInAllowedImagesSettingsCommand: client_ec2_1.ReplaceImageCriteriaInAllowedImagesSettingsCommand,
648
+ ReplaceNetworkAclAssociationCommand: client_ec2_1.ReplaceNetworkAclAssociationCommand,
649
+ ReplaceNetworkAclEntryCommand: client_ec2_1.ReplaceNetworkAclEntryCommand,
650
+ ReplaceRouteCommand: client_ec2_1.ReplaceRouteCommand,
651
+ ReplaceRouteTableAssociationCommand: client_ec2_1.ReplaceRouteTableAssociationCommand,
652
+ ReplaceTransitGatewayRouteCommand: client_ec2_1.ReplaceTransitGatewayRouteCommand,
653
+ ReplaceVpnTunnelCommand: client_ec2_1.ReplaceVpnTunnelCommand,
654
+ ReportInstanceStatusCommand: client_ec2_1.ReportInstanceStatusCommand,
655
+ RequestSpotFleetCommand: client_ec2_1.RequestSpotFleetCommand,
656
+ RequestSpotInstancesCommand: client_ec2_1.RequestSpotInstancesCommand,
657
+ ResetAddressAttributeCommand: client_ec2_1.ResetAddressAttributeCommand,
658
+ ResetEbsDefaultKmsKeyIdCommand: client_ec2_1.ResetEbsDefaultKmsKeyIdCommand,
659
+ ResetFpgaImageAttributeCommand: client_ec2_1.ResetFpgaImageAttributeCommand,
660
+ ResetImageAttributeCommand: client_ec2_1.ResetImageAttributeCommand,
661
+ ResetInstanceAttributeCommand: client_ec2_1.ResetInstanceAttributeCommand,
662
+ ResetNetworkInterfaceAttributeCommand: client_ec2_1.ResetNetworkInterfaceAttributeCommand,
663
+ ResetSnapshotAttributeCommand: client_ec2_1.ResetSnapshotAttributeCommand,
664
+ RestoreAddressToClassicCommand: client_ec2_1.RestoreAddressToClassicCommand,
665
+ RestoreImageFromRecycleBinCommand: client_ec2_1.RestoreImageFromRecycleBinCommand,
666
+ RestoreManagedPrefixListVersionCommand: client_ec2_1.RestoreManagedPrefixListVersionCommand,
667
+ RestoreSnapshotFromRecycleBinCommand: client_ec2_1.RestoreSnapshotFromRecycleBinCommand,
668
+ RestoreSnapshotTierCommand: client_ec2_1.RestoreSnapshotTierCommand,
669
+ RevokeClientVpnIngressCommand: client_ec2_1.RevokeClientVpnIngressCommand,
670
+ RevokeSecurityGroupEgressCommand: client_ec2_1.RevokeSecurityGroupEgressCommand,
671
+ RevokeSecurityGroupIngressCommand: client_ec2_1.RevokeSecurityGroupIngressCommand,
672
+ RunInstancesCommand: client_ec2_1.RunInstancesCommand,
673
+ RunScheduledInstancesCommand: client_ec2_1.RunScheduledInstancesCommand,
674
+ SearchLocalGatewayRoutesCommand: client_ec2_1.SearchLocalGatewayRoutesCommand,
675
+ SearchTransitGatewayMulticastGroupsCommand: client_ec2_1.SearchTransitGatewayMulticastGroupsCommand,
676
+ SearchTransitGatewayRoutesCommand: client_ec2_1.SearchTransitGatewayRoutesCommand,
677
+ SendDiagnosticInterruptCommand: client_ec2_1.SendDiagnosticInterruptCommand,
678
+ StartDeclarativePoliciesReportCommand: client_ec2_1.StartDeclarativePoliciesReportCommand,
679
+ StartInstancesCommand: client_ec2_1.StartInstancesCommand,
680
+ StartNetworkInsightsAccessScopeAnalysisCommand: client_ec2_1.StartNetworkInsightsAccessScopeAnalysisCommand,
681
+ StartNetworkInsightsAnalysisCommand: client_ec2_1.StartNetworkInsightsAnalysisCommand,
682
+ StartVpcEndpointServicePrivateDnsVerificationCommand: client_ec2_1.StartVpcEndpointServicePrivateDnsVerificationCommand,
683
+ StopInstancesCommand: client_ec2_1.StopInstancesCommand,
684
+ TerminateClientVpnConnectionsCommand: client_ec2_1.TerminateClientVpnConnectionsCommand,
685
+ TerminateInstancesCommand: client_ec2_1.TerminateInstancesCommand,
686
+ UnassignIpv6AddressesCommand: client_ec2_1.UnassignIpv6AddressesCommand,
687
+ UnassignPrivateIpAddressesCommand: client_ec2_1.UnassignPrivateIpAddressesCommand,
688
+ UnassignPrivateNatGatewayAddressCommand: client_ec2_1.UnassignPrivateNatGatewayAddressCommand,
689
+ UnlockSnapshotCommand: client_ec2_1.UnlockSnapshotCommand,
690
+ UnmonitorInstancesCommand: client_ec2_1.UnmonitorInstancesCommand,
691
+ UpdateSecurityGroupRuleDescriptionsEgressCommand: client_ec2_1.UpdateSecurityGroupRuleDescriptionsEgressCommand,
692
+ UpdateSecurityGroupRuleDescriptionsIngressCommand: client_ec2_1.UpdateSecurityGroupRuleDescriptionsIngressCommand,
693
+ WithdrawByoipCidrCommand: client_ec2_1.WithdrawByoipCidrCommand,
694
+ };
695
+ /**
696
+ * @since 1.0.0
697
+ * @category constructors
698
+ */
699
+ exports.makeEC2Service = effect_1.Effect.gen(function* () {
700
+ const client = yield* Instance.EC2ClientInstance;
701
+ return commons_1.Service.fromClientAndCommands(client, commands);
702
+ });
703
+ /**
704
+ * @since 1.0.0
705
+ * @category models
706
+ */
707
+ class EC2Service extends effect_1.Effect.Tag("@effect-aws/client-ec2/EC2Service")() {
708
+ static defaultLayer = effect_1.Layer.effect(this, exports.makeEC2Service).pipe(effect_1.Layer.provide(Instance.layer));
709
+ static layer = (config) => effect_1.Layer.effect(this, exports.makeEC2Service).pipe(effect_1.Layer.provide(Instance.layer), effect_1.Layer.provide(EC2ServiceConfig.setEC2ServiceConfig(config)));
710
+ static baseLayer = (evaluate) => effect_1.Layer.effect(this, exports.makeEC2Service).pipe(effect_1.Layer.provide(effect_1.Layer.effect(Instance.EC2ClientInstance, effect_1.Effect.map(EC2ServiceConfig.toEC2ClientConfig, evaluate))));
711
+ }
712
+ exports.EC2Service = EC2Service;
713
+ //# sourceMappingURL=EC2Service.js.map