@aws-sdk/client-ec2 3.1011.0 → 3.1013.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.
- package/dist-cjs/index.js +6 -0
- package/dist-cjs/schemas/schemas_0.js +105 -62
- package/dist-es/models/enums.js +5 -0
- package/dist-es/schemas/schemas_0.js +51 -8
- package/dist-types/commands/CreateFleetCommand.d.ts +8 -3
- package/dist-types/commands/CreateSecondarySubnetCommand.d.ts +1 -2
- package/dist-types/commands/DeleteTrafficMirrorSessionCommand.d.ts +2 -1
- package/dist-types/commands/DescribeFleetsCommand.d.ts +8 -3
- package/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +1 -2
- package/dist-types/commands/DescribeInstanceTypesCommand.d.ts +5 -0
- package/dist-types/commands/DescribeTrafficMirrorSessionsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeTrafficMirrorTargetsCommand.d.ts +1 -1
- package/dist-types/commands/GetDeclarativePoliciesReportSummaryCommand.d.ts +2 -1
- package/dist-types/commands/GetDefaultCreditSpecificationCommand.d.ts +1 -2
- package/dist-types/commands/ModifyFleetCommand.d.ts +1 -1
- package/dist-types/commands/ModifyTrafficMirrorSessionCommand.d.ts +1 -1
- package/dist-types/models/enums.d.ts +13 -0
- package/dist-types/models/models_1.d.ts +31 -43
- package/dist-types/models/models_2.d.ts +40 -10
- package/dist-types/models/models_3.d.ts +31 -166
- package/dist-types/models/models_4.d.ts +196 -88
- package/dist-types/models/models_5.d.ts +87 -118
- package/dist-types/models/models_6.d.ts +119 -160
- package/dist-types/models/models_7.d.ts +160 -3
- package/dist-types/schemas/schemas_0.d.ts +3 -0
- package/dist-types/ts3.4/commands/CreateSecondarySubnetCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DeleteTrafficMirrorSessionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeInstanceImageMetadataCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeTrafficMirrorSessionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeTrafficMirrorTargetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDeclarativePoliciesReportSummaryCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetDefaultCreditSpecificationCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ModifyTrafficMirrorSessionCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +7 -0
- package/dist-types/ts3.4/models/models_1.d.ts +5 -9
- package/dist-types/ts3.4/models/models_2.d.ts +9 -3
- package/dist-types/ts3.4/models/models_3.d.ts +8 -18
- package/dist-types/ts3.4/models/models_4.d.ts +27 -18
- package/dist-types/ts3.4/models/models_5.d.ts +17 -23
- package/dist-types/ts3.4/models/models_6.d.ts +23 -40
- package/dist-types/ts3.4/models/models_7.d.ts +38 -5
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +3 -0
- package/package.json +15 -15
package/dist-es/models/enums.js
CHANGED
|
@@ -1987,6 +1987,9 @@ export const FleetOnDemandAllocationStrategy = {
|
|
|
1987
1987
|
export const FleetCapacityReservationUsageStrategy = {
|
|
1988
1988
|
USE_CAPACITY_RESERVATIONS_FIRST: "use-capacity-reservations-first",
|
|
1989
1989
|
};
|
|
1990
|
+
export const FleetReservationType = {
|
|
1991
|
+
INTERRUPTIBLE_CAPACITY_RESERVATION: "interruptible-capacity-reservation",
|
|
1992
|
+
};
|
|
1990
1993
|
export const SpotAllocationStrategy = {
|
|
1991
1994
|
CAPACITY_OPTIMIZED: "capacity-optimized",
|
|
1992
1995
|
CAPACITY_OPTIMIZED_PRIORITIZED: "capacity-optimized-prioritized",
|
|
@@ -2006,6 +2009,7 @@ export const FleetReplacementStrategy = {
|
|
|
2006
2009
|
export const DefaultTargetCapacityType = {
|
|
2007
2010
|
CAPACITY_BLOCK: "capacity-block",
|
|
2008
2011
|
ON_DEMAND: "on-demand",
|
|
2012
|
+
RESERVED_CAPACITY: "reserved-capacity",
|
|
2009
2013
|
SPOT: "spot",
|
|
2010
2014
|
};
|
|
2011
2015
|
export const TargetCapacityUnitType = {
|
|
@@ -2019,6 +2023,7 @@ export const FleetType = {
|
|
|
2019
2023
|
REQUEST: "request",
|
|
2020
2024
|
};
|
|
2021
2025
|
export const InstanceLifecycle = {
|
|
2026
|
+
INTERRUPTIBLE_CAPACITY_RESERVATION: "interruptible-capacity-reservation",
|
|
2022
2027
|
ON_DEMAND: "on-demand",
|
|
2023
2028
|
SPOT: "spot",
|
|
2024
2029
|
};
|
|
@@ -1277,6 +1277,7 @@ const _DCRTR = "DescribeCapacityReservationTopologyRequest";
|
|
|
1277
1277
|
const _DCRTRe = "DescribeCapacityReservationTopologyResult";
|
|
1278
1278
|
const _DCRe = "DescribeCapacityReservations";
|
|
1279
1279
|
const _DCT = "DescribeConversionTasks";
|
|
1280
|
+
const _DCTC = "DefaultConnectionTrackingConfiguration";
|
|
1280
1281
|
const _DCTL = "DescribeConversionTaskList";
|
|
1281
1282
|
const _DCTR = "DescribeConversionTasksRequest";
|
|
1282
1283
|
const _DCTRe = "DescribeConversionTasksResult";
|
|
@@ -2003,6 +2004,7 @@ const _DTA = "DpdTimeoutAction";
|
|
|
2003
2004
|
const _DTC = "DeprecationTimeCondition";
|
|
2004
2005
|
const _DTCR = "DeprecationTimeConditionRequest";
|
|
2005
2006
|
const _DTCT = "DefaultTargetCapacityType";
|
|
2007
|
+
const _DTET = "DefaultTcpEstablishedTimeout";
|
|
2006
2008
|
const _DTG = "DeleteTransitGateway";
|
|
2007
2009
|
const _DTGA = "DescribeTransitGatewayAttachments";
|
|
2008
2010
|
const _DTGAI = "DestinationTransitGatewayAttachmentId";
|
|
@@ -2141,6 +2143,8 @@ const _DTelet = "DeleteTags";
|
|
|
2141
2143
|
const _DTes = "DescribeTags";
|
|
2142
2144
|
const _DTi = "DisablingTime";
|
|
2143
2145
|
const _DTis = "DisabledTime";
|
|
2146
|
+
const _DUST = "DefaultUdpStreamTimeout";
|
|
2147
|
+
const _DUT = "DefaultUdpTimeout";
|
|
2144
2148
|
const _DV = "DesiredVersion";
|
|
2145
2149
|
const _DVA = "DescribeVolumeAttribute";
|
|
2146
2150
|
const _DVAE = "DeleteVerifiedAccessEndpoint";
|
|
@@ -4633,6 +4637,8 @@ const _RCA = "ResourceConfigurationArn";
|
|
|
4633
4637
|
const _RCGA = "ResourceConfigurationGroupArn";
|
|
4634
4638
|
const _RCL = "ReasonCodesList";
|
|
4635
4639
|
const _RCLe = "RecurringChargesList";
|
|
4640
|
+
const _RCO = "ReservedCapacityOptions";
|
|
4641
|
+
const _RCOR = "ReservedCapacityOptionsRequest";
|
|
4636
4642
|
const _RCRBO = "RejectCapacityReservationBillingOwnership";
|
|
4637
4643
|
const _RCRBOR = "RejectCapacityReservationBillingOwnershipRequest";
|
|
4638
4644
|
const _RCRBORe = "RejectCapacityReservationBillingOwnershipResult";
|
|
@@ -4959,7 +4965,9 @@ const _RTI = "RouteTableId";
|
|
|
4959
4965
|
const _RTISL = "RouteTableIdStringList";
|
|
4960
4966
|
const _RTIe = "RequesterTgwInfo";
|
|
4961
4967
|
const _RTIo = "RouteTableIds";
|
|
4962
|
-
const _RTL = "
|
|
4968
|
+
const _RTL = "ReservationTypeList";
|
|
4969
|
+
const _RTLR = "ReservationTypeListRequest";
|
|
4970
|
+
const _RTLo = "RouteTableList";
|
|
4963
4971
|
const _RTO = "ResourceTypeOptions";
|
|
4964
4972
|
const _RTOL = "ResourceTypeOptionList";
|
|
4965
4973
|
const _RTOe = "ResourceTypeOption";
|
|
@@ -4971,6 +4979,7 @@ const _RTe = "ResourceType";
|
|
|
4971
4979
|
const _RTel = "ReleaseTime";
|
|
4972
4980
|
const _RTeq = "RequestTime";
|
|
4973
4981
|
const _RTes = "ResourceTypes";
|
|
4982
|
+
const _RTese = "ReservationTypes";
|
|
4974
4983
|
const _RTeso = "ResourceTag";
|
|
4975
4984
|
const _RTesou = "ResourceTags";
|
|
4976
4985
|
const _RTo = "RouteTable";
|
|
@@ -6474,6 +6483,7 @@ const _dT = "deletionTime";
|
|
|
6474
6483
|
const _dTA = "dpdTimeoutAction";
|
|
6475
6484
|
const _dTC = "deprecationTimeCondition";
|
|
6476
6485
|
const _dTCT = "defaultTargetCapacityType";
|
|
6486
|
+
const _dTET = "defaultTcpEstablishedTimeout";
|
|
6477
6487
|
const _dTGAI = "destinationTransitGatewayAttachmentId";
|
|
6478
6488
|
const _dTGAT = "destinationTransitGatewayAttachmentType";
|
|
6479
6489
|
const _dTPC = "defaultThreadsPerCore";
|
|
@@ -6486,6 +6496,8 @@ const _dTel = "deleteTime";
|
|
|
6486
6496
|
const _dTele = "deletionTimestamp";
|
|
6487
6497
|
const _dTi = "disablingTime";
|
|
6488
6498
|
const _dTis = "disabledTime";
|
|
6499
|
+
const _dUST = "defaultUdpStreamTimeout";
|
|
6500
|
+
const _dUT = "defaultUdpTimeout";
|
|
6489
6501
|
const _dV = "destinationVpc";
|
|
6490
6502
|
const _dVC = "defaultVCpus";
|
|
6491
6503
|
const _dVD = "deviceValidationDomain";
|
|
@@ -7455,6 +7467,7 @@ const _rBETe = "recycleBinExitTime";
|
|
|
7455
7467
|
const _rC = "returnCode";
|
|
7456
7468
|
const _rCA = "resourceConfigurationArn";
|
|
7457
7469
|
const _rCGA = "resourceConfigurationGroupArn";
|
|
7470
|
+
const _rCO = "reservedCapacityOptions";
|
|
7458
7471
|
const _rCS = "resourceComplianceStatus";
|
|
7459
7472
|
const _rCT = "reservationCreateTimestamp";
|
|
7460
7473
|
const _rCTe = "reportCreationTime";
|
|
@@ -7570,6 +7583,7 @@ const _rTR = "routeTableRoute";
|
|
|
7570
7583
|
const _rTS = "routeTableSet";
|
|
7571
7584
|
const _rTSe = "resourceTypeSet";
|
|
7572
7585
|
const _rTSes = "resourceTagSet";
|
|
7586
|
+
const _rTSese = "reservationTypeSet";
|
|
7573
7587
|
const _rTV = "remainingTotalValue";
|
|
7574
7588
|
const _rTe = "resourceType";
|
|
7575
7589
|
const _rTel = "releaseTime";
|
|
@@ -10227,8 +10241,8 @@ export var CreateFleetInstance$ = [3, n0, _CFI,
|
|
|
10227
10241
|
];
|
|
10228
10242
|
export var CreateFleetRequest$ = [3, n0, _CFR,
|
|
10229
10243
|
0,
|
|
10230
|
-
[_LTC, _TCS, _DR, _CT, _SO, _ODO, _ECTP, _TIWE, _Ty, _VF, _VU, _RUI, _TS, _Con],
|
|
10231
|
-
[[() => FleetLaunchTemplateConfigListRequest, 0], () => TargetCapacitySpecificationRequest$, 2, [0, 4], () => SpotOptionsRequest$, () => OnDemandOptionsRequest$, 0, 2, 0, 4, 4, 2, [() => TagSpecificationList, { [_xN]: _TSa }], 0], 2
|
|
10244
|
+
[_LTC, _TCS, _DR, _CT, _SO, _ODO, _RCO, _ECTP, _TIWE, _Ty, _VF, _VU, _RUI, _TS, _Con],
|
|
10245
|
+
[[() => FleetLaunchTemplateConfigListRequest, 0], () => TargetCapacitySpecificationRequest$, 2, [0, 4], () => SpotOptionsRequest$, () => OnDemandOptionsRequest$, [() => ReservedCapacityOptionsRequest$, 0], 0, 2, 0, 4, 4, 2, [() => TagSpecificationList, { [_xN]: _TSa }], 0], 2
|
|
10232
10246
|
];
|
|
10233
10247
|
export var CreateFleetResult$ = [3, n0, _CFRr,
|
|
10234
10248
|
0,
|
|
@@ -11402,6 +11416,14 @@ export var DeclarativePoliciesReport$ = [3, n0, _DPRec,
|
|
|
11402
11416
|
[_xN]: _sta }], [() => TagList, { [_eQN]: `TagSet`,
|
|
11403
11417
|
[_xN]: _tS }]]
|
|
11404
11418
|
];
|
|
11419
|
+
export var DefaultConnectionTrackingConfiguration$ = [3, n0, _DCTC,
|
|
11420
|
+
0,
|
|
11421
|
+
[_DTET, _DUT, _DUST],
|
|
11422
|
+
[[1, { [_eQN]: `DefaultTcpEstablishedTimeout`,
|
|
11423
|
+
[_xN]: _dTET }], [1, { [_eQN]: `DefaultUdpTimeout`,
|
|
11424
|
+
[_xN]: _dUT }], [1, { [_eQN]: `DefaultUdpStreamTimeout`,
|
|
11425
|
+
[_xN]: _dUST }]]
|
|
11426
|
+
];
|
|
11405
11427
|
export var DeleteCapacityManagerDataExportRequest$ = [3, n0, _DCMDER,
|
|
11406
11428
|
0,
|
|
11407
11429
|
[_CMDEI, _DR],
|
|
@@ -16328,7 +16350,7 @@ export var FleetCapacityReservation$ = [3, n0, _FCRl,
|
|
|
16328
16350
|
];
|
|
16329
16351
|
export var FleetData$ = [3, n0, _FDl,
|
|
16330
16352
|
0,
|
|
16331
|
-
[_ASc, _CTr, _FIl, _FS, _CT, _ECTP, _FCu, _FODC, _LTC, _TCS, _TIWE, _Ty, _VF, _VU, _RUI, _SO, _ODO, _T, _Err, _Ins, _Con],
|
|
16353
|
+
[_ASc, _CTr, _FIl, _FS, _CT, _ECTP, _FCu, _FODC, _LTC, _TCS, _TIWE, _Ty, _VF, _VU, _RUI, _SO, _ODO, _RCO, _T, _Err, _Ins, _Con],
|
|
16332
16354
|
[[0, { [_eQN]: `ActivityStatus`,
|
|
16333
16355
|
[_xN]: _aSc }], [4, { [_eQN]: `CreateTime`,
|
|
16334
16356
|
[_xN]: _cTr }], [0, { [_eQN]: `FleetId`,
|
|
@@ -16346,7 +16368,8 @@ export var FleetData$ = [3, n0, _FDl,
|
|
|
16346
16368
|
[_xN]: _vU }], [2, { [_eQN]: `ReplaceUnhealthyInstances`,
|
|
16347
16369
|
[_xN]: _rUI }], [() => SpotOptions$, { [_eQN]: `SpotOptions`,
|
|
16348
16370
|
[_xN]: _sO }], [() => OnDemandOptions$, { [_eQN]: `OnDemandOptions`,
|
|
16349
|
-
[_xN]: _oDO }], [() =>
|
|
16371
|
+
[_xN]: _oDO }], [() => ReservedCapacityOptions$, { [_eQN]: `ReservedCapacityOptions`,
|
|
16372
|
+
[_xN]: _rCO }], [() => TagList, { [_eQN]: `TagSet`,
|
|
16350
16373
|
[_xN]: _tS }], [() => DescribeFleetsErrorSet, { [_eQN]: `ErrorSet`,
|
|
16351
16374
|
[_xN]: _eSr }], [() => DescribeFleetsInstancesSet, { [_eQN]: `FleetInstanceSet`,
|
|
16352
16375
|
[_xN]: _fIS }], [0, { [_eQN]: `Context`,
|
|
@@ -20952,7 +20975,7 @@ export var NetworkCardInfo$ = [3, n0, _NCIe,
|
|
|
20952
20975
|
];
|
|
20953
20976
|
export var NetworkInfo$ = [3, n0, _NIetw,
|
|
20954
20977
|
0,
|
|
20955
|
-
[_NPe, _MNI, _MNC, _DNCI, _NC, _IAPI, _IAPIp, _ISpvu, _ESna, _ESf, _EIf, _EITS, _ESSn, _BWa, _FEQS, _SNSe, _MSNI, _IAPSI],
|
|
20978
|
+
[_NPe, _MNI, _MNC, _DNCI, _NC, _IAPI, _IAPIp, _ISpvu, _ESna, _ESf, _EIf, _EITS, _ESSn, _BWa, _FEQS, _CTC, _SNSe, _MSNI, _IAPSI],
|
|
20956
20979
|
[[0, { [_eQN]: `NetworkPerformance`,
|
|
20957
20980
|
[_xN]: _nPe }], [1, { [_eQN]: `MaximumNetworkInterfaces`,
|
|
20958
20981
|
[_xN]: _mNI }], [1, { [_eQN]: `MaximumNetworkCards`,
|
|
@@ -20968,7 +20991,8 @@ export var NetworkInfo$ = [3, n0, _NIetw,
|
|
|
20968
20991
|
[_xN]: _eITSn }], [2, { [_eQN]: `EnaSrdSupported`,
|
|
20969
20992
|
[_xN]: _eSSn }], [() => BandwidthWeightingTypeList, { [_eQN]: `BandwidthWeightings`,
|
|
20970
20993
|
[_xN]: _bWa }], [0, { [_eQN]: `FlexibleEnaQueuesSupport`,
|
|
20971
|
-
[_xN]: _fEQS }], [
|
|
20994
|
+
[_xN]: _fEQS }], [() => DefaultConnectionTrackingConfiguration$, { [_eQN]: `ConnectionTrackingConfiguration`,
|
|
20995
|
+
[_xN]: _cTC }], [2, { [_eQN]: `SecondaryNetworkSupported`,
|
|
20972
20996
|
[_xN]: _sNSec }], [1, { [_eQN]: `MaximumSecondaryNetworkInterfaces`,
|
|
20973
20997
|
[_xN]: _mSNI }], [1, { [_eQN]: `Ipv4AddressesPerSecondaryInterface`,
|
|
20974
20998
|
[_xN]: _iAPSI }]]
|
|
@@ -22239,6 +22263,17 @@ export var ReservationValue$ = [3, n0, _RVe,
|
|
|
22239
22263
|
[_xN]: _rTV }], [0, { [_eQN]: `RemainingUpfrontValue`,
|
|
22240
22264
|
[_xN]: _rUV }]]
|
|
22241
22265
|
];
|
|
22266
|
+
export var ReservedCapacityOptions$ = [3, n0, _RCO,
|
|
22267
|
+
0,
|
|
22268
|
+
[_RTese],
|
|
22269
|
+
[[() => ReservationTypeList, { [_eQN]: `ReservationTypeSet`,
|
|
22270
|
+
[_xN]: _rTSese }]]
|
|
22271
|
+
];
|
|
22272
|
+
export var ReservedCapacityOptionsRequest$ = [3, n0, _RCOR,
|
|
22273
|
+
0,
|
|
22274
|
+
[_RTese],
|
|
22275
|
+
[[() => ReservationTypeListRequest, { [_xN]: _RT }]]
|
|
22276
|
+
];
|
|
22242
22277
|
export var ReservedInstanceLimitPrice$ = [3, n0, _RILP,
|
|
22243
22278
|
0,
|
|
22244
22279
|
[_Am, _CC],
|
|
@@ -27345,6 +27380,14 @@ var ReservationList = [1, n0, _RLe,
|
|
|
27345
27380
|
0, [() => Reservation$,
|
|
27346
27381
|
{ [_xN]: _it }]
|
|
27347
27382
|
];
|
|
27383
|
+
var ReservationTypeList = [1, n0, _RTL,
|
|
27384
|
+
0, [0,
|
|
27385
|
+
{ [_xN]: _it }]
|
|
27386
|
+
];
|
|
27387
|
+
var ReservationTypeListRequest = [1, n0, _RTLR,
|
|
27388
|
+
0, [0,
|
|
27389
|
+
{ [_xN]: _RT }]
|
|
27390
|
+
];
|
|
27348
27391
|
var ReservedInstanceIdSet = [1, n0, _RIIS,
|
|
27349
27392
|
0, [0,
|
|
27350
27393
|
{ [_xN]: _RIIe }]
|
|
@@ -27464,7 +27507,7 @@ var RouteTableIdStringList = [1, n0, _RTISL,
|
|
|
27464
27507
|
0, [0,
|
|
27465
27508
|
{ [_xN]: _it }]
|
|
27466
27509
|
];
|
|
27467
|
-
var RouteTableList = [1, n0,
|
|
27510
|
+
var RouteTableList = [1, n0, _RTLo,
|
|
27468
27511
|
0, [() => RouteTable$,
|
|
27469
27512
|
{ [_xN]: _it }]
|
|
27470
27513
|
];
|
|
@@ -68,6 +68,11 @@ declare const CreateFleetCommand_base: {
|
|
|
68
68
|
* MinTargetCapacity: Number("int"),
|
|
69
69
|
* MaxTotalPrice: "STRING_VALUE",
|
|
70
70
|
* },
|
|
71
|
+
* ReservedCapacityOptions: { // ReservedCapacityOptionsRequest
|
|
72
|
+
* ReservationTypes: [ // ReservationTypeListRequest
|
|
73
|
+
* "interruptible-capacity-reservation",
|
|
74
|
+
* ],
|
|
75
|
+
* },
|
|
71
76
|
* ExcessCapacityTerminationPolicy: "no-termination" || "termination",
|
|
72
77
|
* LaunchTemplateConfigs: [ // FleetLaunchTemplateConfigListRequest // required
|
|
73
78
|
* { // FleetLaunchTemplateConfigRequest
|
|
@@ -202,7 +207,7 @@ declare const CreateFleetCommand_base: {
|
|
|
202
207
|
* TotalTargetCapacity: Number("int"), // required
|
|
203
208
|
* OnDemandTargetCapacity: Number("int"),
|
|
204
209
|
* SpotTargetCapacity: Number("int"),
|
|
205
|
-
* DefaultTargetCapacityType: "spot" || "on-demand" || "capacity-block",
|
|
210
|
+
* DefaultTargetCapacityType: "spot" || "on-demand" || "capacity-block" || "reserved-capacity",
|
|
206
211
|
* TargetCapacityUnitType: "vcpu" || "memory-mib" || "units",
|
|
207
212
|
* },
|
|
208
213
|
* TerminateInstancesWithExpiration: true || false,
|
|
@@ -345,7 +350,7 @@ declare const CreateFleetCommand_base: {
|
|
|
345
350
|
* // AvailabilityZoneId: "STRING_VALUE",
|
|
346
351
|
* // },
|
|
347
352
|
* // },
|
|
348
|
-
* // Lifecycle: "spot" || "on-demand",
|
|
353
|
+
* // Lifecycle: "spot" || "on-demand" || "interruptible-capacity-reservation",
|
|
349
354
|
* // ErrorCode: "STRING_VALUE",
|
|
350
355
|
* // ErrorMessage: "STRING_VALUE",
|
|
351
356
|
* // },
|
|
@@ -468,7 +473,7 @@ declare const CreateFleetCommand_base: {
|
|
|
468
473
|
* // AvailabilityZoneId: "STRING_VALUE",
|
|
469
474
|
* // },
|
|
470
475
|
* // },
|
|
471
|
-
* // Lifecycle: "spot" || "on-demand",
|
|
476
|
+
* // Lifecycle: "spot" || "on-demand" || "interruptible-capacity-reservation",
|
|
472
477
|
* // InstanceIds: [ // InstanceIdsSet
|
|
473
478
|
* // "STRING_VALUE",
|
|
474
479
|
* // ],
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { CreateSecondarySubnetRequest } from "../models/
|
|
5
|
-
import type { CreateSecondarySubnetResult } from "../models/models_2";
|
|
4
|
+
import type { CreateSecondarySubnetRequest, CreateSecondarySubnetResult } from "../models/models_2";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { DeleteTrafficMirrorSessionRequest
|
|
4
|
+
import type { DeleteTrafficMirrorSessionRequest } from "../models/models_2";
|
|
5
|
+
import type { DeleteTrafficMirrorSessionResult } from "../models/models_3";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -196,7 +196,7 @@ declare const DescribeFleetsCommand_base: {
|
|
|
196
196
|
* // TotalTargetCapacity: Number("int"),
|
|
197
197
|
* // OnDemandTargetCapacity: Number("int"),
|
|
198
198
|
* // SpotTargetCapacity: Number("int"),
|
|
199
|
-
* // DefaultTargetCapacityType: "spot" || "on-demand" || "capacity-block",
|
|
199
|
+
* // DefaultTargetCapacityType: "spot" || "on-demand" || "capacity-block" || "reserved-capacity",
|
|
200
200
|
* // TargetCapacityUnitType: "vcpu" || "memory-mib" || "units",
|
|
201
201
|
* // },
|
|
202
202
|
* // TerminateInstancesWithExpiration: true || false,
|
|
@@ -229,6 +229,11 @@ declare const DescribeFleetsCommand_base: {
|
|
|
229
229
|
* // MinTargetCapacity: Number("int"),
|
|
230
230
|
* // MaxTotalPrice: "STRING_VALUE",
|
|
231
231
|
* // },
|
|
232
|
+
* // ReservedCapacityOptions: { // ReservedCapacityOptions
|
|
233
|
+
* // ReservationTypes: [ // ReservationTypeList
|
|
234
|
+
* // "interruptible-capacity-reservation",
|
|
235
|
+
* // ],
|
|
236
|
+
* // },
|
|
232
237
|
* // Tags: [ // TagList
|
|
233
238
|
* // { // Tag
|
|
234
239
|
* // Key: "STRING_VALUE",
|
|
@@ -353,7 +358,7 @@ declare const DescribeFleetsCommand_base: {
|
|
|
353
358
|
* // AvailabilityZoneId: "STRING_VALUE",
|
|
354
359
|
* // },
|
|
355
360
|
* // },
|
|
356
|
-
* // Lifecycle: "spot" || "on-demand",
|
|
361
|
+
* // Lifecycle: "spot" || "on-demand" || "interruptible-capacity-reservation",
|
|
357
362
|
* // ErrorCode: "STRING_VALUE",
|
|
358
363
|
* // ErrorMessage: "STRING_VALUE",
|
|
359
364
|
* // },
|
|
@@ -476,7 +481,7 @@ declare const DescribeFleetsCommand_base: {
|
|
|
476
481
|
* // AvailabilityZoneId: "STRING_VALUE",
|
|
477
482
|
* // },
|
|
478
483
|
* // },
|
|
479
|
-
* // Lifecycle: "spot" || "on-demand",
|
|
484
|
+
* // Lifecycle: "spot" || "on-demand" || "interruptible-capacity-reservation",
|
|
480
485
|
* // InstanceIds: [ // InstanceIdsSet
|
|
481
486
|
* // "STRING_VALUE",
|
|
482
487
|
* // ],
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { DescribeInstanceImageMetadataRequest } from "../models/
|
|
5
|
-
import type { DescribeInstanceImageMetadataResult } from "../models/models_4";
|
|
4
|
+
import type { DescribeInstanceImageMetadataRequest, DescribeInstanceImageMetadataResult } from "../models/models_4";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -168,6 +168,11 @@ declare const DescribeInstanceTypesCommand_base: {
|
|
|
168
168
|
* // "default" || "vpc-1" || "ebs-1",
|
|
169
169
|
* // ],
|
|
170
170
|
* // FlexibleEnaQueuesSupport: "unsupported" || "supported",
|
|
171
|
+
* // ConnectionTrackingConfiguration: { // DefaultConnectionTrackingConfiguration
|
|
172
|
+
* // DefaultTcpEstablishedTimeout: Number("int"),
|
|
173
|
+
* // DefaultUdpTimeout: Number("int"),
|
|
174
|
+
* // DefaultUdpStreamTimeout: Number("int"),
|
|
175
|
+
* // },
|
|
171
176
|
* // SecondaryNetworkSupported: true || false,
|
|
172
177
|
* // MaximumSecondaryNetworkInterfaces: Number("int"),
|
|
173
178
|
* // Ipv4AddressesPerSecondaryInterface: Number("int"),
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { DescribeTrafficMirrorSessionsRequest
|
|
4
|
+
import type { DescribeTrafficMirrorSessionsRequest } from "../models/models_4";
|
|
5
|
+
import type { DescribeTrafficMirrorSessionsResult } from "../models/models_5";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { DescribeTrafficMirrorTargetsRequest, DescribeTrafficMirrorTargetsResult } from "../models/
|
|
4
|
+
import type { DescribeTrafficMirrorTargetsRequest, DescribeTrafficMirrorTargetsResult } from "../models/models_5";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { GetDeclarativePoliciesReportSummaryRequest
|
|
4
|
+
import type { GetDeclarativePoliciesReportSummaryRequest } from "../models/models_5";
|
|
5
|
+
import type { GetDeclarativePoliciesReportSummaryResult } from "../models/models_6";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { GetDefaultCreditSpecificationRequest } from "../models/
|
|
5
|
-
import type { GetDefaultCreditSpecificationResult } from "../models/models_6";
|
|
4
|
+
import type { GetDefaultCreditSpecificationRequest, GetDefaultCreditSpecificationResult } from "../models/models_6";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -194,7 +194,7 @@ declare const ModifyFleetCommand_base: {
|
|
|
194
194
|
* TotalTargetCapacity: Number("int"), // required
|
|
195
195
|
* OnDemandTargetCapacity: Number("int"),
|
|
196
196
|
* SpotTargetCapacity: Number("int"),
|
|
197
|
-
* DefaultTargetCapacityType: "spot" || "on-demand" || "capacity-block",
|
|
197
|
+
* DefaultTargetCapacityType: "spot" || "on-demand" || "capacity-block" || "reserved-capacity",
|
|
198
198
|
* TargetCapacityUnitType: "vcpu" || "memory-mib" || "units",
|
|
199
199
|
* },
|
|
200
200
|
* Context: "STRING_VALUE",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { ModifyTrafficMirrorSessionRequest, ModifyTrafficMirrorSessionResult } from "../models/
|
|
4
|
+
import type { ModifyTrafficMirrorSessionRequest, ModifyTrafficMirrorSessionResult } from "../models/models_7";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -2891,6 +2891,17 @@ export declare const FleetCapacityReservationUsageStrategy: {
|
|
|
2891
2891
|
* @public
|
|
2892
2892
|
*/
|
|
2893
2893
|
export type FleetCapacityReservationUsageStrategy = (typeof FleetCapacityReservationUsageStrategy)[keyof typeof FleetCapacityReservationUsageStrategy];
|
|
2894
|
+
/**
|
|
2895
|
+
* @public
|
|
2896
|
+
* @enum
|
|
2897
|
+
*/
|
|
2898
|
+
export declare const FleetReservationType: {
|
|
2899
|
+
readonly INTERRUPTIBLE_CAPACITY_RESERVATION: "interruptible-capacity-reservation";
|
|
2900
|
+
};
|
|
2901
|
+
/**
|
|
2902
|
+
* @public
|
|
2903
|
+
*/
|
|
2904
|
+
export type FleetReservationType = (typeof FleetReservationType)[keyof typeof FleetReservationType];
|
|
2894
2905
|
/**
|
|
2895
2906
|
* @public
|
|
2896
2907
|
* @enum
|
|
@@ -2938,6 +2949,7 @@ export type FleetReplacementStrategy = (typeof FleetReplacementStrategy)[keyof t
|
|
|
2938
2949
|
export declare const DefaultTargetCapacityType: {
|
|
2939
2950
|
readonly CAPACITY_BLOCK: "capacity-block";
|
|
2940
2951
|
readonly ON_DEMAND: "on-demand";
|
|
2952
|
+
readonly RESERVED_CAPACITY: "reserved-capacity";
|
|
2941
2953
|
readonly SPOT: "spot";
|
|
2942
2954
|
};
|
|
2943
2955
|
/**
|
|
@@ -2975,6 +2987,7 @@ export type FleetType = (typeof FleetType)[keyof typeof FleetType];
|
|
|
2975
2987
|
* @enum
|
|
2976
2988
|
*/
|
|
2977
2989
|
export declare const InstanceLifecycle: {
|
|
2990
|
+
readonly INTERRUPTIBLE_CAPACITY_RESERVATION: "interruptible-capacity-reservation";
|
|
2978
2991
|
readonly ON_DEMAND: "on-demand";
|
|
2979
2992
|
readonly SPOT: "spot";
|
|
2980
2993
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _InstanceType, AcceleratorManufacturer, AcceleratorName, AcceleratorType, AddressFamily, AmdSevSnpSpecification, AttachmentStatus, AutoProvisionZonesState, AutoScalingIpsState, AvailabilityMode, BareMetal, BurstablePerformance, CapacityReservationPreference, ConnectivityType, ContainerFormat, CpuManufacturer, CurrencyCodeValues, DefaultTargetCapacityType, DestinationFileFormat, DiskImageFormat, Ec2InstanceConnectEndpointState, ExportEnvironment, ExportTaskState, FleetCapacityReservationUsageStrategy, FleetExcessCapacityTerminationPolicy, FleetOnDemandAllocationStrategy, FleetReplacementStrategy, FleetType, FlowLogsResourceType, HostnameType, InstanceBandwidthWeighting, InstanceGeneration, InstanceInterruptionBehavior, InstanceLifecycle, InterfacePermissionType, InterruptibleCapacityReservationAllocationStatus, InterruptionType, IpAddressType, IpamExternalResourceVerificationTokenState, IpamMeteredAccount, IpamPolicyState, IpamPoolAwsService, IpamPoolPublicIpSource, IpamPoolSourceResourceType, IpamPoolState, IpamPrefixListResolverRuleConditionOperation, IpamPrefixListResolverRuleType, IpamPrefixListResolverState, IpamPrefixListResolverTargetState, IpamPrefixListResolverVersionCreationStatus, IpamResourceDiscoveryState, IpamResourceType, IpamScopeExternalAuthorityType, IpamScopeState, IpamScopeType, IpamState, IpamTier, KeyFormat, KeyType, LaunchTemplateAutoRecoveryState, LaunchTemplateHttpTokensState, LaunchTemplateInstanceMetadataEndpointState, LaunchTemplateInstanceMetadataOptionsState, LaunchTemplateInstanceMetadataProtocolIpv6, LaunchTemplateInstanceMetadataTagsState, LocalGatewayRouteState, LocalGatewayRouteTableMode, LocalGatewayRouteType, LocalGatewayVirtualInterfaceConfigurationState, LocalGatewayVirtualInterfaceGroupConfigurationState, LocalStorage, LocalStorageType, LogDestinationType, MacSystemIntegrityProtectionSettingStatus, MarketType, NatGatewayApplianceModifyState, NatGatewayApplianceState, NatGatewayApplianceType, NatGatewayState, NestedVirtualizationSpecification, NetworkInterfaceCreationType, NetworkInterfacePermissionStateCode, NetworkInterfaceStatus, NetworkInterfaceType, PlacementGroupState, PlacementStrategy, PlatformValues, PrefixListState, Protocol, ReplaceRootVolumeTaskState, ResourceType, RouteOrigin, RouteServerBfdState, RouteServerBgpState, RouteServerEndpointState, RouteServerPeerLivenessMode, RouteServerPeerState, RouteServerPersistRoutesAction, RouteServerPersistRoutesState, RouteServerState, RouteState, RuleAction, SecondaryInterfaceType, SecondaryNetworkCidrBlockAssociationState, SecondaryNetworkState, SecondaryNetworkType, ShutdownBehavior, SnapshotLocationEnum, SpotAllocationStrategy, SpotInstanceInterruptionBehavior, SpotInstanceType, SpreadLevel, TargetCapacityUnitType, Tenancy, TokenState, TrafficType, VolumeType, WeekDay } from "./enums";
|
|
1
|
+
import { _InstanceType, AcceleratorManufacturer, AcceleratorName, AcceleratorType, AddressFamily, AmdSevSnpSpecification, AttachmentStatus, AutoProvisionZonesState, AutoScalingIpsState, AvailabilityMode, BareMetal, BurstablePerformance, CapacityReservationPreference, ConnectivityType, ContainerFormat, CpuManufacturer, CurrencyCodeValues, DefaultTargetCapacityType, DestinationFileFormat, DiskImageFormat, Ec2InstanceConnectEndpointState, ExportEnvironment, ExportTaskState, FleetCapacityReservationUsageStrategy, FleetExcessCapacityTerminationPolicy, FleetOnDemandAllocationStrategy, FleetReplacementStrategy, FleetReservationType, FleetType, FlowLogsResourceType, HostnameType, InstanceBandwidthWeighting, InstanceGeneration, InstanceInterruptionBehavior, InstanceLifecycle, InterfacePermissionType, InterruptibleCapacityReservationAllocationStatus, InterruptionType, IpAddressType, IpamExternalResourceVerificationTokenState, IpamMeteredAccount, IpamPolicyState, IpamPoolAwsService, IpamPoolPublicIpSource, IpamPoolSourceResourceType, IpamPoolState, IpamPrefixListResolverRuleConditionOperation, IpamPrefixListResolverRuleType, IpamPrefixListResolverState, IpamPrefixListResolverTargetState, IpamPrefixListResolverVersionCreationStatus, IpamResourceDiscoveryState, IpamResourceType, IpamScopeExternalAuthorityType, IpamScopeState, IpamScopeType, IpamState, IpamTier, KeyFormat, KeyType, LaunchTemplateAutoRecoveryState, LaunchTemplateHttpTokensState, LaunchTemplateInstanceMetadataEndpointState, LaunchTemplateInstanceMetadataOptionsState, LaunchTemplateInstanceMetadataProtocolIpv6, LaunchTemplateInstanceMetadataTagsState, LocalGatewayRouteState, LocalGatewayRouteTableMode, LocalGatewayRouteType, LocalGatewayVirtualInterfaceConfigurationState, LocalGatewayVirtualInterfaceGroupConfigurationState, LocalStorage, LocalStorageType, LogDestinationType, MacSystemIntegrityProtectionSettingStatus, MarketType, NatGatewayApplianceModifyState, NatGatewayApplianceState, NatGatewayApplianceType, NatGatewayState, NestedVirtualizationSpecification, NetworkInterfaceCreationType, NetworkInterfacePermissionStateCode, NetworkInterfaceStatus, NetworkInterfaceType, PlacementGroupState, PlacementStrategy, PlatformValues, PrefixListState, Protocol, ReplaceRootVolumeTaskState, ResourceType, RouteOrigin, RouteServerBfdState, RouteServerBgpState, RouteServerEndpointState, RouteServerPeerLivenessMode, RouteServerPeerState, RouteServerPersistRoutesAction, RouteServerPersistRoutesState, RouteServerState, RouteState, RuleAction, SecondaryInterfaceType, SecondaryNetworkCidrBlockAssociationState, SecondaryNetworkState, SecondaryNetworkType, ShutdownBehavior, SnapshotLocationEnum, SpotAllocationStrategy, SpotInstanceInterruptionBehavior, SpotInstanceType, SpreadLevel, TargetCapacityUnitType, Tenancy, TokenState, TrafficType, VolumeType, WeekDay } from "./enums";
|
|
2
2
|
import { type AcceleratorCount, type AcceleratorCountRequest, type AcceleratorTotalMemoryMiB, type AcceleratorTotalMemoryMiBRequest, type InstanceEventWindow, type MacModificationTask, type OperatorResponse, type PortRange, type RouteTableAssociationState, AccessScopePath, AccessScopePathRequest, AddIpamOperatingRegion, AddPrefixListEntry, Ipv4PrefixSpecification, NatGatewayAddress, ReservedInstancesListing, Tag, TagSpecification, UnsuccessfulItem } from "./models_0";
|
|
3
3
|
/**
|
|
4
4
|
* <p>Describes a DHCP configuration option.</p>
|
|
@@ -1482,6 +1482,26 @@ export interface OnDemandOptionsRequest {
|
|
|
1482
1482
|
*/
|
|
1483
1483
|
MaxTotalPrice?: string | undefined;
|
|
1484
1484
|
}
|
|
1485
|
+
/**
|
|
1486
|
+
* <p>Defines EC2 Fleet preferences for utilizing reserved capacity when DefaultTargetCapacityType is set to <code>reserved-capacity</code>.</p>
|
|
1487
|
+
* <note>
|
|
1488
|
+
* <p>This configuration can only be used if the EC2 Fleet is of type
|
|
1489
|
+
* <code>instant</code>.</p>
|
|
1490
|
+
* </note>
|
|
1491
|
+
* <p>When you specify <code>ReservedCapacityOptions</code>, you must also set
|
|
1492
|
+
* <code>DefaultTargetCapacityType</code> to <code>reserved-capacity</code> in the
|
|
1493
|
+
* <code>TargetCapacitySpecification</code>.</p>
|
|
1494
|
+
* <p>For more information about Interruptible Capacity Reservations, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-launch-instances-interruptible-cr-walkthrough.html">Launch
|
|
1495
|
+
* instances into an Interruptible Capacity Reservation</a> in the <i>Amazon EC2 User Guide</i>.</p>
|
|
1496
|
+
* @public
|
|
1497
|
+
*/
|
|
1498
|
+
export interface ReservedCapacityOptionsRequest {
|
|
1499
|
+
/**
|
|
1500
|
+
* <p>The types of Capacity Reservations to use for fulfilling the EC2 Fleet request.</p>
|
|
1501
|
+
* @public
|
|
1502
|
+
*/
|
|
1503
|
+
ReservationTypes?: FleetReservationType[] | undefined;
|
|
1504
|
+
}
|
|
1485
1505
|
/**
|
|
1486
1506
|
* <p>The Spot Instance replacement strategy to use when Amazon EC2 emits a rebalance
|
|
1487
1507
|
* notification signal that your Spot Instance is at an elevated risk of being interrupted.
|
|
@@ -1731,6 +1751,12 @@ export interface CreateFleetRequest {
|
|
|
1731
1751
|
* @public
|
|
1732
1752
|
*/
|
|
1733
1753
|
OnDemandOptions?: OnDemandOptionsRequest | undefined;
|
|
1754
|
+
/**
|
|
1755
|
+
* <p>Defines EC2 Fleet preferences for utilizing reserved capacity when DefaultTargetCapacityType is set to <code>reserved-capacity</code>.</p>
|
|
1756
|
+
* <p>Supported only for fleets of type <code>instant</code>.</p>
|
|
1757
|
+
* @public
|
|
1758
|
+
*/
|
|
1759
|
+
ReservedCapacityOptions?: ReservedCapacityOptionsRequest | undefined;
|
|
1734
1760
|
/**
|
|
1735
1761
|
* <p>Indicates whether running instances should be terminated if the total target capacity of
|
|
1736
1762
|
* the EC2 Fleet is decreased below the current size of the EC2 Fleet.</p>
|
|
@@ -2843,7 +2869,8 @@ export interface CreateFleetError {
|
|
|
2843
2869
|
*/
|
|
2844
2870
|
LaunchTemplateAndOverrides?: LaunchTemplateAndOverridesResponse | undefined;
|
|
2845
2871
|
/**
|
|
2846
|
-
* <p>Indicates if the instance that could not be launched was a Spot
|
|
2872
|
+
* <p>Indicates if the instance that could not be launched was a Spot, On-Demand, Capacity Block,
|
|
2873
|
+
* or Interruptible Capacity Reservation instance.</p>
|
|
2847
2874
|
* @public
|
|
2848
2875
|
*/
|
|
2849
2876
|
Lifecycle?: InstanceLifecycle | undefined;
|
|
@@ -2872,7 +2899,8 @@ export interface CreateFleetInstance {
|
|
|
2872
2899
|
*/
|
|
2873
2900
|
LaunchTemplateAndOverrides?: LaunchTemplateAndOverridesResponse | undefined;
|
|
2874
2901
|
/**
|
|
2875
|
-
* <p>Indicates if the instance that was launched is a Spot
|
|
2902
|
+
* <p>Indicates if the instance that was launched is a Spot, On-Demand, Capacity Block,
|
|
2903
|
+
* or Interruptible Capacity Reservation instance.</p>
|
|
2876
2904
|
* @public
|
|
2877
2905
|
*/
|
|
2878
2906
|
Lifecycle?: InstanceLifecycle | undefined;
|
|
@@ -12521,43 +12549,3 @@ export interface CreateSecondaryNetworkResult {
|
|
|
12521
12549
|
*/
|
|
12522
12550
|
ClientToken?: string | undefined;
|
|
12523
12551
|
}
|
|
12524
|
-
/**
|
|
12525
|
-
* @public
|
|
12526
|
-
*/
|
|
12527
|
-
export interface CreateSecondarySubnetRequest {
|
|
12528
|
-
/**
|
|
12529
|
-
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensure Idempotency</a>.</p>
|
|
12530
|
-
* @public
|
|
12531
|
-
*/
|
|
12532
|
-
ClientToken?: string | undefined;
|
|
12533
|
-
/**
|
|
12534
|
-
* <p>The Availability Zone for the secondary subnet. You cannot specify both <code>AvailabilityZone</code> and <code>AvailabilityZoneId</code> in the same request.</p>
|
|
12535
|
-
* @public
|
|
12536
|
-
*/
|
|
12537
|
-
AvailabilityZone?: string | undefined;
|
|
12538
|
-
/**
|
|
12539
|
-
* <p>The ID of the Availability Zone for the secondary subnet. This option is preferred over <code>AvailabilityZone</code> as it provides a consistent identifier across Amazon Web Services accounts. You cannot specify both <code>AvailabilityZone</code> and <code>AvailabilityZoneId</code> in the same request.</p>
|
|
12540
|
-
* @public
|
|
12541
|
-
*/
|
|
12542
|
-
AvailabilityZoneId?: string | undefined;
|
|
12543
|
-
/**
|
|
12544
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
12545
|
-
* @public
|
|
12546
|
-
*/
|
|
12547
|
-
DryRun?: boolean | undefined;
|
|
12548
|
-
/**
|
|
12549
|
-
* <p>The IPv4 CIDR block for the secondary subnet. The CIDR block size must be between /12 and /28.</p>
|
|
12550
|
-
* @public
|
|
12551
|
-
*/
|
|
12552
|
-
Ipv4CidrBlock: string | undefined;
|
|
12553
|
-
/**
|
|
12554
|
-
* <p>The ID of the secondary network in which to create the secondary subnet.</p>
|
|
12555
|
-
* @public
|
|
12556
|
-
*/
|
|
12557
|
-
SecondaryNetworkId: string | undefined;
|
|
12558
|
-
/**
|
|
12559
|
-
* <p>The tags to assign to the secondary subnet.</p>
|
|
12560
|
-
* @public
|
|
12561
|
-
*/
|
|
12562
|
-
TagSpecifications?: TagSpecification[] | undefined;
|
|
12563
|
-
}
|
|
@@ -1,6 +1,46 @@
|
|
|
1
1
|
import { ApplianceModeSupportValue, AutoAcceptSharedAssociationsValue, AutoAcceptSharedAttachmentsValue, BgpStatus, ConnectionNotificationState, ConnectionNotificationType, CopyTagsFromSource, DatafeedSubscriptionState, DefaultRouteTableAssociationValue, DefaultRouteTablePropagationValue, DeleteFleetErrorCode, DeleteQueuedReservedInstancesErrorCode, DeviceTrustProviderType, DnsNameState, DnsRecordIpType, DnsSupportValue, DynamicRoutingValue, EncryptionStateValue, FleetStateCode, GatewayAssociationState, GatewayType, Igmpv2SupportValue, InstanceEventWindowState, InternetGatewayExclusionMode, IpAddressType, Ipv6SupportValue, LaunchTemplateErrorCode, MulticastSupportValue, PayerResponsibility, ProtocolValue, SecondaryNetworkType, SecondarySubnetCidrBlockAssociationState, SecondarySubnetState, SecurityGroupReferencingSupportValue, ServiceConnectivityType, ServiceState, ServiceType, SnapshotLocationEnum, SnapshotState, SSEType, State, StaticSourcesSupportValue, StorageTier, SubnetCidrReservationType, TelemetryStatus, Tenancy, TrafficDirection, TrafficMirrorNetworkService, TrafficMirrorRuleAction, TrafficMirrorTargetType, TransferType, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayConnectPeerState, TransitGatewayMeteringPayerType, TransitGatewayMeteringPolicyEntryState, TransitGatewayMeteringPolicyState, TransitGatewayMulticastDomainState, TransitGatewayPolicyTableState, TransitGatewayPrefixListReferenceState, TransitGatewayRouteState, TransitGatewayRouteTableAnnouncementDirection, TransitGatewayRouteTableAnnouncementState, TransitGatewayRouteTableState, TransitGatewayRouteType, TransitGatewayState, TrustProviderType, TunnelInsideIpVersion, UserTrustProviderType, VerifiedAccessEndpointAttachmentType, VerifiedAccessEndpointProtocol, VerifiedAccessEndpointStatusCode, VerifiedAccessEndpointType, VolumeType, VpcBlockPublicAccessExclusionState, VpcEncryptionControlExclusionStateInput, VpcEncryptionControlMode, VpcEndpointType, VpnConcentratorType, VpnEcmpSupportValue, VpnState, VpnStaticRouteSource, VpnTunnelBandwidth } from "./enums";
|
|
2
2
|
import { type CarrierGateway, type ClientVpnEndpointStatus, type ClientVpnRouteStatus, type CoipCidr, type CoipPool, type Subnet, type TransitGatewayPeeringAttachment, type TransitGatewayVpcAttachment, type VerifiedAccessInstance, type VerifiedAccessSseSpecificationResponse, type VerifiedAccessTrustProvider, type Vpc, type VpcEncryptionControl, type VpcPeeringConnection, Tag, TagSpecification, UnsuccessfulItem, VpcAttachment } from "./models_0";
|
|
3
3
|
import type { Ec2InstanceConnectEndpoint, Ipam, IpamExternalResourceVerificationToken, IpamPolicy, IpamPool, IpamPrefixListResolver, IpamPrefixListResolverTarget, IpamResourceDiscovery, IpamScope, LaunchTemplate, LocalGatewayRoute, LocalGatewayRouteTable, LocalGatewayRouteTableVirtualInterfaceGroupAssociation, LocalGatewayRouteTableVpcAssociation, LocalGatewayVirtualInterface, LocalGatewayVirtualInterfaceGroup, ManagedPrefixList, OperatorRequest, RouteServer, RouteServerEndpoint, RouteServerPeer, SecondaryNetwork } from "./models_1";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface CreateSecondarySubnetRequest {
|
|
8
|
+
/**
|
|
9
|
+
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensure Idempotency</a>.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
ClientToken?: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>The Availability Zone for the secondary subnet. You cannot specify both <code>AvailabilityZone</code> and <code>AvailabilityZoneId</code> in the same request.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
AvailabilityZone?: string | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* <p>The ID of the Availability Zone for the secondary subnet. This option is preferred over <code>AvailabilityZone</code> as it provides a consistent identifier across Amazon Web Services accounts. You cannot specify both <code>AvailabilityZone</code> and <code>AvailabilityZoneId</code> in the same request.</p>
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
AvailabilityZoneId?: string | undefined;
|
|
23
|
+
/**
|
|
24
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
DryRun?: boolean | undefined;
|
|
28
|
+
/**
|
|
29
|
+
* <p>The IPv4 CIDR block for the secondary subnet. The CIDR block size must be between /12 and /28.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
Ipv4CidrBlock: string | undefined;
|
|
33
|
+
/**
|
|
34
|
+
* <p>The ID of the secondary network in which to create the secondary subnet.</p>
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
SecondaryNetworkId: string | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* <p>The tags to assign to the secondary subnet.</p>
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
TagSpecifications?: TagSpecification[] | undefined;
|
|
43
|
+
}
|
|
4
44
|
/**
|
|
5
45
|
* <p>Describes an IPv4 CIDR block associated with a secondary subnet.</p>
|
|
6
46
|
* @public
|
|
@@ -8225,13 +8265,3 @@ export interface DeleteTrafficMirrorSessionRequest {
|
|
|
8225
8265
|
*/
|
|
8226
8266
|
DryRun?: boolean | undefined;
|
|
8227
8267
|
}
|
|
8228
|
-
/**
|
|
8229
|
-
* @public
|
|
8230
|
-
*/
|
|
8231
|
-
export interface DeleteTrafficMirrorSessionResult {
|
|
8232
|
-
/**
|
|
8233
|
-
* <p>The ID of the deleted Traffic Mirror session.</p>
|
|
8234
|
-
* @public
|
|
8235
|
-
*/
|
|
8236
|
-
TrafficMirrorSessionId?: string | undefined;
|
|
8237
|
-
}
|