Skip to content

Commit 7cf2a36

Browse files
author
awstools
committed
feat(client-ec2): With this release, customers can express their desire to launch instances only in an ODCR or ODCR group rather than OnDemand capacity. Customers can express their baseline instances' CPU-performance in attribute-based Instance Requirements configuration by referencing an instance family.
1 parent 3d12b74 commit 7cf2a36

39 files changed

+2258
-1486
lines changed

clients/client-ec2/src/commands/CreateFleetCommand.ts

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export interface CreateFleetCommandOutput extends CreateFleetResult, __MetadataB
104104
* Max: Number("int"),
105105
* },
106106
* CpuManufacturers: [ // CpuManufacturerSet
107-
* "intel" || "amd" || "amazon-web-services",
107+
* "intel" || "amd" || "amazon-web-services" || "apple",
108108
* ],
109109
* MemoryGiBPerVCpu: { // MemoryGiBPerVCpuRequest
110110
* Min: Number("double"),
@@ -162,6 +162,15 @@ export interface CreateFleetCommandOutput extends CreateFleetResult, __MetadataB
162162
* "STRING_VALUE",
163163
* ],
164164
* MaxSpotPriceAsPercentageOfOptimalOnDemandPrice: Number("int"),
165+
* BaselinePerformanceFactors: { // BaselinePerformanceFactorsRequest
166+
* Cpu: { // CpuPerformanceFactorRequest
167+
* References: [ // PerformanceFactorReferenceSetRequest
168+
* { // PerformanceFactorReferenceRequest
169+
* InstanceFamily: "STRING_VALUE",
170+
* },
171+
* ],
172+
* },
173+
* },
165174
* },
166175
* ImageId: "STRING_VALUE",
167176
* },
@@ -225,7 +234,7 @@ export interface CreateFleetCommandOutput extends CreateFleetResult, __MetadataB
225234
* // Max: Number("int"),
226235
* // },
227236
* // CpuManufacturers: [ // CpuManufacturerSet
228-
* // "intel" || "amd" || "amazon-web-services",
237+
* // "intel" || "amd" || "amazon-web-services" || "apple",
229238
* // ],
230239
* // MemoryGiBPerVCpu: { // MemoryGiBPerVCpu
231240
* // Min: Number("double"),
@@ -283,6 +292,15 @@ export interface CreateFleetCommandOutput extends CreateFleetResult, __MetadataB
283292
* // "STRING_VALUE",
284293
* // ],
285294
* // MaxSpotPriceAsPercentageOfOptimalOnDemandPrice: Number("int"),
295+
* // BaselinePerformanceFactors: { // BaselinePerformanceFactors
296+
* // Cpu: { // CpuPerformanceFactor
297+
* // References: [ // PerformanceFactorReferenceSet
298+
* // { // PerformanceFactorReference
299+
* // InstanceFamily: "STRING_VALUE",
300+
* // },
301+
* // ],
302+
* // },
303+
* // },
286304
* // },
287305
* // ImageId: "STRING_VALUE",
288306
* // },
@@ -320,7 +338,7 @@ export interface CreateFleetCommandOutput extends CreateFleetResult, __MetadataB
320338
* // Max: Number("int"),
321339
* // },
322340
* // CpuManufacturers: [
323-
* // "intel" || "amd" || "amazon-web-services",
341+
* // "intel" || "amd" || "amazon-web-services" || "apple",
324342
* // ],
325343
* // MemoryGiBPerVCpu: {
326344
* // Min: Number("double"),
@@ -378,6 +396,15 @@ export interface CreateFleetCommandOutput extends CreateFleetResult, __MetadataB
378396
* // "STRING_VALUE",
379397
* // ],
380398
* // MaxSpotPriceAsPercentageOfOptimalOnDemandPrice: Number("int"),
399+
* // BaselinePerformanceFactors: {
400+
* // Cpu: {
401+
* // References: [
402+
* // {
403+
* // InstanceFamily: "STRING_VALUE",
404+
* // },
405+
* // ],
406+
* // },
407+
* // },
381408
* // },
382409
* // ImageId: "STRING_VALUE",
383410
* // },

clients/client-ec2/src/commands/CreateLaunchTemplateCommand.ts

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ export interface CreateLaunchTemplateCommandOutput extends CreateLaunchTemplateR
199199
* AmdSevSnp: "enabled" || "disabled",
200200
* },
201201
* CapacityReservationSpecification: { // LaunchTemplateCapacityReservationSpecificationRequest
202-
* CapacityReservationPreference: "open" || "none",
202+
* CapacityReservationPreference: "capacity-reservations-only" || "open" || "none",
203203
* CapacityReservationTarget: { // CapacityReservationTarget
204204
* CapacityReservationId: "STRING_VALUE",
205205
* CapacityReservationResourceGroupArn: "STRING_VALUE",
@@ -233,7 +233,7 @@ export interface CreateLaunchTemplateCommandOutput extends CreateLaunchTemplateR
233233
* Max: Number("int"),
234234
* },
235235
* CpuManufacturers: [ // CpuManufacturerSet
236-
* "intel" || "amd" || "amazon-web-services",
236+
* "intel" || "amd" || "amazon-web-services" || "apple",
237237
* ],
238238
* MemoryGiBPerVCpu: { // MemoryGiBPerVCpuRequest
239239
* Min: Number("double"),
@@ -291,6 +291,15 @@ export interface CreateLaunchTemplateCommandOutput extends CreateLaunchTemplateR
291291
* "STRING_VALUE",
292292
* ],
293293
* MaxSpotPriceAsPercentageOfOptimalOnDemandPrice: Number("int"),
294+
* BaselinePerformanceFactors: { // BaselinePerformanceFactorsRequest
295+
* Cpu: { // CpuPerformanceFactorRequest
296+
* References: [ // PerformanceFactorReferenceSetRequest
297+
* { // PerformanceFactorReferenceRequest
298+
* InstanceFamily: "STRING_VALUE",
299+
* },
300+
* ],
301+
* },
302+
* },
294303
* },
295304
* PrivateDnsNameOptions: { // LaunchTemplatePrivateDnsNameOptionsRequest
296305
* HostnameType: "ip-name" || "resource-name",

clients/client-ec2/src/commands/CreateLaunchTemplateVersionCommand.ts

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ export interface CreateLaunchTemplateVersionCommandOutput extends CreateLaunchTe
202202
* AmdSevSnp: "enabled" || "disabled",
203203
* },
204204
* CapacityReservationSpecification: { // LaunchTemplateCapacityReservationSpecificationRequest
205-
* CapacityReservationPreference: "open" || "none",
205+
* CapacityReservationPreference: "capacity-reservations-only" || "open" || "none",
206206
* CapacityReservationTarget: { // CapacityReservationTarget
207207
* CapacityReservationId: "STRING_VALUE",
208208
* CapacityReservationResourceGroupArn: "STRING_VALUE",
@@ -236,7 +236,7 @@ export interface CreateLaunchTemplateVersionCommandOutput extends CreateLaunchTe
236236
* Max: Number("int"),
237237
* },
238238
* CpuManufacturers: [ // CpuManufacturerSet
239-
* "intel" || "amd" || "amazon-web-services",
239+
* "intel" || "amd" || "amazon-web-services" || "apple",
240240
* ],
241241
* MemoryGiBPerVCpu: { // MemoryGiBPerVCpuRequest
242242
* Min: Number("double"),
@@ -294,6 +294,15 @@ export interface CreateLaunchTemplateVersionCommandOutput extends CreateLaunchTe
294294
* "STRING_VALUE",
295295
* ],
296296
* MaxSpotPriceAsPercentageOfOptimalOnDemandPrice: Number("int"),
297+
* BaselinePerformanceFactors: { // BaselinePerformanceFactorsRequest
298+
* Cpu: { // CpuPerformanceFactorRequest
299+
* References: [ // PerformanceFactorReferenceSetRequest
300+
* { // PerformanceFactorReferenceRequest
301+
* InstanceFamily: "STRING_VALUE",
302+
* },
303+
* ],
304+
* },
305+
* },
297306
* },
298307
* PrivateDnsNameOptions: { // LaunchTemplatePrivateDnsNameOptionsRequest
299308
* HostnameType: "ip-name" || "resource-name",
@@ -468,7 +477,7 @@ export interface CreateLaunchTemplateVersionCommandOutput extends CreateLaunchTe
468477
* // AmdSevSnp: "enabled" || "disabled",
469478
* // },
470479
* // CapacityReservationSpecification: { // LaunchTemplateCapacityReservationSpecificationResponse
471-
* // CapacityReservationPreference: "open" || "none",
480+
* // CapacityReservationPreference: "capacity-reservations-only" || "open" || "none",
472481
* // CapacityReservationTarget: { // CapacityReservationTargetResponse
473482
* // CapacityReservationId: "STRING_VALUE",
474483
* // CapacityReservationResourceGroupArn: "STRING_VALUE",
@@ -503,7 +512,7 @@ export interface CreateLaunchTemplateVersionCommandOutput extends CreateLaunchTe
503512
* // Max: Number("int"),
504513
* // },
505514
* // CpuManufacturers: [ // CpuManufacturerSet
506-
* // "intel" || "amd" || "amazon-web-services",
515+
* // "intel" || "amd" || "amazon-web-services" || "apple",
507516
* // ],
508517
* // MemoryGiBPerVCpu: { // MemoryGiBPerVCpu
509518
* // Min: Number("double"),
@@ -561,6 +570,15 @@ export interface CreateLaunchTemplateVersionCommandOutput extends CreateLaunchTe
561570
* // "STRING_VALUE",
562571
* // ],
563572
* // MaxSpotPriceAsPercentageOfOptimalOnDemandPrice: Number("int"),
573+
* // BaselinePerformanceFactors: { // BaselinePerformanceFactors
574+
* // Cpu: { // CpuPerformanceFactor
575+
* // References: [ // PerformanceFactorReferenceSet
576+
* // { // PerformanceFactorReference
577+
* // InstanceFamily: "STRING_VALUE",
578+
* // },
579+
* // ],
580+
* // },
581+
* // },
564582
* // },
565583
* // PrivateDnsNameOptions: { // LaunchTemplatePrivateDnsNameOptions
566584
* // HostnameType: "ip-name" || "resource-name",

clients/client-ec2/src/commands/CreateNetworkAclCommand.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
66

77
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
88
import { commonParams } from "../endpoint/EndpointParameters";
9-
import { CreateNetworkAclRequest, CreateNetworkAclResult } from "../models/models_1";
9+
import { CreateNetworkAclRequest } from "../models/models_1";
10+
import { CreateNetworkAclResult } from "../models/models_2";
1011
import { de_CreateNetworkAclCommand, se_CreateNetworkAclCommand } from "../protocols/Aws_ec2";
1112

1213
/**

clients/client-ec2/src/commands/CreateNetworkAclEntryCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
66

77
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
88
import { commonParams } from "../endpoint/EndpointParameters";
9-
import { CreateNetworkAclEntryRequest } from "../models/models_1";
9+
import { CreateNetworkAclEntryRequest } from "../models/models_2";
1010
import { de_CreateNetworkAclEntryCommand, se_CreateNetworkAclEntryCommand } from "../protocols/Aws_ec2";
1111

1212
/**

clients/client-ec2/src/commands/DeleteInstanceEventWindowCommand.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
66

77
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
88
import { commonParams } from "../endpoint/EndpointParameters";
9-
import { DeleteInstanceEventWindowRequest, DeleteInstanceEventWindowResult } from "../models/models_2";
9+
import { DeleteInstanceEventWindowRequest } from "../models/models_2";
10+
import { DeleteInstanceEventWindowResult } from "../models/models_3";
1011
import { de_DeleteInstanceEventWindowCommand, se_DeleteInstanceEventWindowCommand } from "../protocols/Aws_ec2";
1112

1213
/**

clients/client-ec2/src/commands/DeleteInternetGatewayCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
66

77
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
88
import { commonParams } from "../endpoint/EndpointParameters";
9-
import { DeleteInternetGatewayRequest } from "../models/models_2";
9+
import { DeleteInternetGatewayRequest } from "../models/models_3";
1010
import { de_DeleteInternetGatewayCommand, se_DeleteInternetGatewayCommand } from "../protocols/Aws_ec2";
1111

1212
/**

clients/client-ec2/src/commands/DeleteIpamCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
66

77
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
88
import { commonParams } from "../endpoint/EndpointParameters";
9-
import { DeleteIpamRequest, DeleteIpamResult } from "../models/models_2";
9+
import { DeleteIpamRequest, DeleteIpamResult } from "../models/models_3";
1010
import { de_DeleteIpamCommand, se_DeleteIpamCommand } from "../protocols/Aws_ec2";
1111

1212
/**

clients/client-ec2/src/commands/DeleteIpamExternalResourceVerificationTokenCommand.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
66

77
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
88
import { commonParams } from "../endpoint/EndpointParameters";
9-
import { DeleteIpamExternalResourceVerificationTokenRequest } from "../models/models_2";
10-
import { DeleteIpamExternalResourceVerificationTokenResult } from "../models/models_3";
9+
import {
10+
DeleteIpamExternalResourceVerificationTokenRequest,
11+
DeleteIpamExternalResourceVerificationTokenResult,
12+
} from "../models/models_3";
1113
import {
1214
de_DeleteIpamExternalResourceVerificationTokenCommand,
1315
se_DeleteIpamExternalResourceVerificationTokenCommand,

clients/client-ec2/src/commands/DescribeFleetsCommand.ts

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export interface DescribeFleetsCommandOutput extends DescribeFleetsResult, __Met
9999
* // Max: Number("int"),
100100
* // },
101101
* // CpuManufacturers: [ // CpuManufacturerSet
102-
* // "intel" || "amd" || "amazon-web-services",
102+
* // "intel" || "amd" || "amazon-web-services" || "apple",
103103
* // ],
104104
* // MemoryGiBPerVCpu: { // MemoryGiBPerVCpu
105105
* // Min: Number("double"),
@@ -157,6 +157,15 @@ export interface DescribeFleetsCommandOutput extends DescribeFleetsResult, __Met
157157
* // "STRING_VALUE",
158158
* // ],
159159
* // MaxSpotPriceAsPercentageOfOptimalOnDemandPrice: Number("int"),
160+
* // BaselinePerformanceFactors: { // BaselinePerformanceFactors
161+
* // Cpu: { // CpuPerformanceFactor
162+
* // References: [ // PerformanceFactorReferenceSet
163+
* // { // PerformanceFactorReference
164+
* // InstanceFamily: "STRING_VALUE",
165+
* // },
166+
* // ],
167+
* // },
168+
* // },
160169
* // },
161170
* // ImageId: "STRING_VALUE",
162171
* // },
@@ -234,7 +243,7 @@ export interface DescribeFleetsCommandOutput extends DescribeFleetsResult, __Met
234243
* // Max: Number("int"),
235244
* // },
236245
* // CpuManufacturers: [
237-
* // "intel" || "amd" || "amazon-web-services",
246+
* // "intel" || "amd" || "amazon-web-services" || "apple",
238247
* // ],
239248
* // MemoryGiBPerVCpu: {
240249
* // Min: Number("double"),
@@ -292,6 +301,15 @@ export interface DescribeFleetsCommandOutput extends DescribeFleetsResult, __Met
292301
* // "STRING_VALUE",
293302
* // ],
294303
* // MaxSpotPriceAsPercentageOfOptimalOnDemandPrice: Number("int"),
304+
* // BaselinePerformanceFactors: {
305+
* // Cpu: {
306+
* // References: [
307+
* // {
308+
* // InstanceFamily: "STRING_VALUE",
309+
* // },
310+
* // ],
311+
* // },
312+
* // },
295313
* // },
296314
* // ImageId: "STRING_VALUE",
297315
* // },
@@ -329,7 +347,7 @@ export interface DescribeFleetsCommandOutput extends DescribeFleetsResult, __Met
329347
* // Max: Number("int"),
330348
* // },
331349
* // CpuManufacturers: [
332-
* // "intel" || "amd" || "amazon-web-services",
350+
* // "intel" || "amd" || "amazon-web-services" || "apple",
333351
* // ],
334352
* // MemoryGiBPerVCpu: {
335353
* // Min: Number("double"),
@@ -387,6 +405,15 @@ export interface DescribeFleetsCommandOutput extends DescribeFleetsResult, __Met
387405
* // "STRING_VALUE",
388406
* // ],
389407
* // MaxSpotPriceAsPercentageOfOptimalOnDemandPrice: Number("int"),
408+
* // BaselinePerformanceFactors: {
409+
* // Cpu: {
410+
* // References: [
411+
* // {
412+
* // InstanceFamily: "STRING_VALUE",
413+
* // },
414+
* // ],
415+
* // },
416+
* // },
390417
* // },
391418
* // ImageId: "STRING_VALUE",
392419
* // },

clients/client-ec2/src/commands/DescribeHostReservationOfferingsCommand.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
66

77
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
88
import { commonParams } from "../endpoint/EndpointParameters";
9-
import { DescribeHostReservationOfferingsRequest, DescribeHostReservationOfferingsResult } from "../models/models_3";
9+
import { DescribeHostReservationOfferingsRequest } from "../models/models_3";
10+
import { DescribeHostReservationOfferingsResult } from "../models/models_4";
1011
import {
1112
de_DescribeHostReservationOfferingsCommand,
1213
se_DescribeHostReservationOfferingsCommand,

clients/client-ec2/src/commands/DescribeHostReservationsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
66

77
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
88
import { commonParams } from "../endpoint/EndpointParameters";
9-
import { DescribeHostReservationsRequest, DescribeHostReservationsResult } from "../models/models_3";
9+
import { DescribeHostReservationsRequest, DescribeHostReservationsResult } from "../models/models_4";
1010
import { de_DescribeHostReservationsCommand, se_DescribeHostReservationsCommand } from "../protocols/Aws_ec2";
1111

1212
/**

clients/client-ec2/src/commands/DescribeInstancesCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ export interface DescribeInstancesCommandOutput extends DescribeInstancesResult,
241241
* // },
242242
* // CapacityReservationId: "STRING_VALUE",
243243
* // CapacityReservationSpecification: { // CapacityReservationSpecificationResponse
244-
* // CapacityReservationPreference: "open" || "none",
244+
* // CapacityReservationPreference: "capacity-reservations-only" || "open" || "none",
245245
* // CapacityReservationTarget: { // CapacityReservationTargetResponse
246246
* // CapacityReservationId: "STRING_VALUE",
247247
* // CapacityReservationResourceGroupArn: "STRING_VALUE",

clients/client-ec2/src/commands/DescribeLaunchTemplateVersionsCommand.ts

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ export interface DescribeLaunchTemplateVersionsCommandOutput
227227
* // AmdSevSnp: "enabled" || "disabled",
228228
* // },
229229
* // CapacityReservationSpecification: { // LaunchTemplateCapacityReservationSpecificationResponse
230-
* // CapacityReservationPreference: "open" || "none",
230+
* // CapacityReservationPreference: "capacity-reservations-only" || "open" || "none",
231231
* // CapacityReservationTarget: { // CapacityReservationTargetResponse
232232
* // CapacityReservationId: "STRING_VALUE",
233233
* // CapacityReservationResourceGroupArn: "STRING_VALUE",
@@ -262,7 +262,7 @@ export interface DescribeLaunchTemplateVersionsCommandOutput
262262
* // Max: Number("int"),
263263
* // },
264264
* // CpuManufacturers: [ // CpuManufacturerSet
265-
* // "intel" || "amd" || "amazon-web-services",
265+
* // "intel" || "amd" || "amazon-web-services" || "apple",
266266
* // ],
267267
* // MemoryGiBPerVCpu: { // MemoryGiBPerVCpu
268268
* // Min: Number("double"),
@@ -320,6 +320,15 @@ export interface DescribeLaunchTemplateVersionsCommandOutput
320320
* // "STRING_VALUE",
321321
* // ],
322322
* // MaxSpotPriceAsPercentageOfOptimalOnDemandPrice: Number("int"),
323+
* // BaselinePerformanceFactors: { // BaselinePerformanceFactors
324+
* // Cpu: { // CpuPerformanceFactor
325+
* // References: [ // PerformanceFactorReferenceSet
326+
* // { // PerformanceFactorReference
327+
* // InstanceFamily: "STRING_VALUE",
328+
* // },
329+
* // ],
330+
* // },
331+
* // },
323332
* // },
324333
* // PrivateDnsNameOptions: { // LaunchTemplatePrivateDnsNameOptions
325334
* // HostnameType: "ip-name" || "resource-name",

clients/client-ec2/src/commands/DescribeSecurityGroupVpcAssociationsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { commonParams } from "../endpoint/EndpointParameters";
99
import {
1010
DescribeSecurityGroupVpcAssociationsRequest,
1111
DescribeSecurityGroupVpcAssociationsResult,
12-
} from "../models/models_4";
12+
} from "../models/models_5";
1313
import {
1414
de_DescribeSecurityGroupVpcAssociationsCommand,
1515
se_DescribeSecurityGroupVpcAssociationsCommand,

clients/client-ec2/src/commands/DescribeSecurityGroupsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
66

77
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
88
import { commonParams } from "../endpoint/EndpointParameters";
9-
import { DescribeSecurityGroupsRequest, DescribeSecurityGroupsResult } from "../models/models_4";
9+
import { DescribeSecurityGroupsRequest, DescribeSecurityGroupsResult } from "../models/models_5";
1010
import { de_DescribeSecurityGroupsCommand, se_DescribeSecurityGroupsCommand } from "../protocols/Aws_ec2";
1111

1212
/**

0 commit comments

Comments
 (0)