@aws-sdk/client-ec2 3.699.0 → 3.701.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 +117 -16
- package/dist-es/models/models_2.js +4 -0
- package/dist-es/models/models_3.js +0 -4
- package/dist-es/models/models_4.js +4 -0
- package/dist-es/protocols/Aws_ec2.js +109 -11
- package/dist-types/commands/CopySnapshotCommand.d.ts +1 -0
- package/dist-types/commands/CreateSnapshotCommand.d.ts +3 -0
- package/dist-types/commands/CreateVpcEndpointCommand.d.ts +2 -0
- package/dist-types/commands/CreateVpcEndpointConnectionNotificationCommand.d.ts +1 -0
- package/dist-types/commands/CreateVpcEndpointServiceConfigurationCommand.d.ts +10 -0
- package/dist-types/commands/DeleteFlowLogsCommand.d.ts +2 -1
- package/dist-types/commands/DeleteFpgaImageCommand.d.ts +1 -2
- package/dist-types/commands/DescribeScheduledInstanceAvailabilityCommand.d.ts +1 -2
- package/dist-types/commands/DescribeSnapshotsCommand.d.ts +3 -0
- package/dist-types/commands/DescribeVpcEndpointConnectionNotificationsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeVpcEndpointConnectionsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeVpcEndpointServiceConfigurationsCommand.d.ts +7 -0
- package/dist-types/commands/DescribeVpcEndpointServicesCommand.d.ts +4 -0
- package/dist-types/commands/DescribeVpcEndpointsCommand.d.ts +1 -0
- package/dist-types/commands/EnableTransitGatewayRouteTablePropagationCommand.d.ts +1 -1
- package/dist-types/commands/ModifySpotFleetRequestCommand.d.ts +2 -1
- package/dist-types/commands/ModifySubnetAttributeCommand.d.ts +1 -1
- package/dist-types/commands/ModifyVpcEndpointServiceConfigurationCommand.d.ts +3 -4
- package/dist-types/models/models_0.d.ts +10 -0
- package/dist-types/models/models_1.d.ts +15 -3
- package/dist-types/models/models_2.d.ts +98 -29
- package/dist-types/models/models_3.d.ts +27 -28
- package/dist-types/models/models_4.d.ts +73 -99
- package/dist-types/models/models_5.d.ts +141 -42
- package/dist-types/models/models_6.d.ts +38 -100
- package/dist-types/models/models_7.d.ts +116 -9
- package/dist-types/ts3.4/commands/DeleteFlowLogsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DeleteFpgaImageCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeScheduledInstanceAvailabilityCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/EnableTransitGatewayRouteTablePropagationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ModifySpotFleetRequestCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ModifySubnetAttributeCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/models/models_2.d.ts +18 -8
- package/dist-types/ts3.4/models/models_3.d.ts +7 -10
- package/dist-types/ts3.4/models/models_4.d.ts +10 -19
- package/dist-types/ts3.4/models/models_5.d.ts +22 -10
- package/dist-types/ts3.4/models/models_6.d.ts +10 -16
- package/dist-types/ts3.4/models/models_7.d.ts +18 -0
- package/package.json +1 -1
|
@@ -16612,6 +16612,9 @@ const se_CopySnapshotRequest = (input, context) => {
|
|
|
16612
16612
|
entries[loc] = value;
|
|
16613
16613
|
});
|
|
16614
16614
|
}
|
|
16615
|
+
if (input[_CDM] != null) {
|
|
16616
|
+
entries[_CDM] = input[_CDM];
|
|
16617
|
+
}
|
|
16615
16618
|
if (input[_DRr] != null) {
|
|
16616
16619
|
entries[_DRr] = input[_DRr];
|
|
16617
16620
|
}
|
|
@@ -19413,6 +19416,9 @@ const se_CreateVpcEndpointRequest = (input, context) => {
|
|
|
19413
19416
|
entries[loc] = value;
|
|
19414
19417
|
});
|
|
19415
19418
|
}
|
|
19419
|
+
if (input[_SRe] != null) {
|
|
19420
|
+
entries[_SRe] = input[_SRe];
|
|
19421
|
+
}
|
|
19416
19422
|
return entries;
|
|
19417
19423
|
};
|
|
19418
19424
|
const se_CreateVpcEndpointServiceConfigurationRequest = (input, context) => {
|
|
@@ -19447,6 +19453,13 @@ const se_CreateVpcEndpointServiceConfigurationRequest = (input, context) => {
|
|
|
19447
19453
|
entries[loc] = value;
|
|
19448
19454
|
});
|
|
19449
19455
|
}
|
|
19456
|
+
if (input[_SRu] != null) {
|
|
19457
|
+
const memberEntries = se_ValueStringList(input[_SRu], context);
|
|
19458
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
19459
|
+
const loc = `SupportedRegion.${key.substring(key.indexOf(".") + 1)}`;
|
|
19460
|
+
entries[loc] = value;
|
|
19461
|
+
});
|
|
19462
|
+
}
|
|
19450
19463
|
if (input[_CTl] != null) {
|
|
19451
19464
|
entries[_CTl] = input[_CTl];
|
|
19452
19465
|
}
|
|
@@ -24572,6 +24585,13 @@ const se_DescribeVpcEndpointServicesRequest = (input, context) => {
|
|
|
24572
24585
|
if (input[_NT] != null) {
|
|
24573
24586
|
entries[_NT] = input[_NT];
|
|
24574
24587
|
}
|
|
24588
|
+
if (input[_SRer] != null) {
|
|
24589
|
+
const memberEntries = se_ValueStringList(input[_SRer], context);
|
|
24590
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
24591
|
+
const loc = `ServiceRegion.${key.substring(key.indexOf(".") + 1)}`;
|
|
24592
|
+
entries[loc] = value;
|
|
24593
|
+
});
|
|
24594
|
+
}
|
|
24575
24595
|
return entries;
|
|
24576
24596
|
};
|
|
24577
24597
|
const se_DescribeVpcEndpointsRequest = (input, context) => {
|
|
@@ -31309,6 +31329,20 @@ const se_ModifyVpcEndpointServiceConfigurationRequest = (input, context) => {
|
|
|
31309
31329
|
entries[loc] = value;
|
|
31310
31330
|
});
|
|
31311
31331
|
}
|
|
31332
|
+
if (input[_ASR] != null) {
|
|
31333
|
+
const memberEntries = se_ValueStringList(input[_ASR], context);
|
|
31334
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
31335
|
+
const loc = `AddSupportedRegion.${key.substring(key.indexOf(".") + 1)}`;
|
|
31336
|
+
entries[loc] = value;
|
|
31337
|
+
});
|
|
31338
|
+
}
|
|
31339
|
+
if (input[_RSR] != null) {
|
|
31340
|
+
const memberEntries = se_ValueStringList(input[_RSR], context);
|
|
31341
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
31342
|
+
const loc = `RemoveSupportedRegion.${key.substring(key.indexOf(".") + 1)}`;
|
|
31343
|
+
entries[loc] = value;
|
|
31344
|
+
});
|
|
31345
|
+
}
|
|
31312
31346
|
return entries;
|
|
31313
31347
|
};
|
|
31314
31348
|
const se_ModifyVpcEndpointServicePayerResponsibilityRequest = (input, context) => {
|
|
@@ -39191,6 +39225,9 @@ const de_ConnectionNotification = (output, context) => {
|
|
|
39191
39225
|
if (output[_cNS] != null) {
|
|
39192
39226
|
contents[_CNS] = __expectString(output[_cNS]);
|
|
39193
39227
|
}
|
|
39228
|
+
if (output[_sR] != null) {
|
|
39229
|
+
contents[_SRe] = __expectString(output[_sR]);
|
|
39230
|
+
}
|
|
39194
39231
|
return contents;
|
|
39195
39232
|
};
|
|
39196
39233
|
const de_ConnectionNotificationSet = (output, context) => {
|
|
@@ -46127,8 +46164,8 @@ const de_Image = (output, context) => {
|
|
|
46127
46164
|
if (output[_sNSr] != null) {
|
|
46128
46165
|
contents[_SNS] = __expectString(output[_sNSr]);
|
|
46129
46166
|
}
|
|
46130
|
-
if (output[
|
|
46131
|
-
contents[_SRt] = de_StateReason(output[
|
|
46167
|
+
if (output[_sRt] != null) {
|
|
46168
|
+
contents[_SRt] = de_StateReason(output[_sRt], context);
|
|
46132
46169
|
}
|
|
46133
46170
|
if (output.tagSet === "") {
|
|
46134
46171
|
contents[_Ta] = [];
|
|
@@ -46745,8 +46782,8 @@ const de_Instance = (output, context) => {
|
|
|
46745
46782
|
if (output[_sNSr] != null) {
|
|
46746
46783
|
contents[_SNS] = __expectString(output[_sNSr]);
|
|
46747
46784
|
}
|
|
46748
|
-
if (output[
|
|
46749
|
-
contents[_SRt] = de_StateReason(output[
|
|
46785
|
+
if (output[_sRt] != null) {
|
|
46786
|
+
contents[_SRt] = de_StateReason(output[_sRt], context);
|
|
46750
46787
|
}
|
|
46751
46788
|
if (output.tagSet === "") {
|
|
46752
46789
|
contents[_Ta] = [];
|
|
@@ -48264,7 +48301,7 @@ const de_IpamDiscoveredPublicAddress = (output, context) => {
|
|
|
48264
48301
|
contents[_Se] = __expectString(output[_se]);
|
|
48265
48302
|
}
|
|
48266
48303
|
if (output[_sRe] != null) {
|
|
48267
|
-
contents[
|
|
48304
|
+
contents[_SRerv] = __expectString(output[_sRe]);
|
|
48268
48305
|
}
|
|
48269
48306
|
if (output[_vI] != null) {
|
|
48270
48307
|
contents[_VI] = __expectString(output[_vI]);
|
|
@@ -49961,8 +49998,8 @@ const de_LocalGatewayRouteTable = (output, context) => {
|
|
|
49961
49998
|
if (output[_mod] != null) {
|
|
49962
49999
|
contents[_Mo] = __expectString(output[_mod]);
|
|
49963
50000
|
}
|
|
49964
|
-
if (output[
|
|
49965
|
-
contents[_SRt] = de_StateReason(output[
|
|
50001
|
+
if (output[_sRt] != null) {
|
|
50002
|
+
contents[_SRt] = de_StateReason(output[_sRt], context);
|
|
49966
50003
|
}
|
|
49967
50004
|
return contents;
|
|
49968
50005
|
};
|
|
@@ -54305,8 +54342,8 @@ const de_SecurityGroupVpcAssociation = (output, context) => {
|
|
|
54305
54342
|
if (output[_st] != null) {
|
|
54306
54343
|
contents[_Stat] = __expectString(output[_st]);
|
|
54307
54344
|
}
|
|
54308
|
-
if (output[
|
|
54309
|
-
contents[_SRt] = __expectString(output[
|
|
54345
|
+
if (output[_sRt] != null) {
|
|
54346
|
+
contents[_SRt] = __expectString(output[_sRt]);
|
|
54310
54347
|
}
|
|
54311
54348
|
return contents;
|
|
54312
54349
|
};
|
|
@@ -54385,6 +54422,15 @@ const de_ServiceConfiguration = (output, context) => {
|
|
|
54385
54422
|
else if (output[_tS] != null && output[_tS][_i] != null) {
|
|
54386
54423
|
contents[_Ta] = de_TagList(__getArrayIfSingleItem(output[_tS][_i]), context);
|
|
54387
54424
|
}
|
|
54425
|
+
if (output.supportedRegionSet === "") {
|
|
54426
|
+
contents[_SRu] = [];
|
|
54427
|
+
}
|
|
54428
|
+
else if (output[_sRS] != null && output[_sRS][_i] != null) {
|
|
54429
|
+
contents[_SRu] = de_SupportedRegionSet(__getArrayIfSingleItem(output[_sRS][_i]), context);
|
|
54430
|
+
}
|
|
54431
|
+
if (output[_rAE] != null) {
|
|
54432
|
+
contents[_RAE] = __parseBoolean(output[_rAE]);
|
|
54433
|
+
}
|
|
54388
54434
|
return contents;
|
|
54389
54435
|
};
|
|
54390
54436
|
const de_ServiceConfigurationSet = (output, context) => {
|
|
@@ -54408,6 +54454,9 @@ const de_ServiceDetail = (output, context) => {
|
|
|
54408
54454
|
else if (output[_sTe] != null && output[_sTe][_i] != null) {
|
|
54409
54455
|
contents[_STe] = de_ServiceTypeDetailSet(__getArrayIfSingleItem(output[_sTe][_i]), context);
|
|
54410
54456
|
}
|
|
54457
|
+
if (output[_sR] != null) {
|
|
54458
|
+
contents[_SRe] = __expectString(output[_sR]);
|
|
54459
|
+
}
|
|
54411
54460
|
if (output.availabilityZoneSet === "") {
|
|
54412
54461
|
contents[_AZv] = [];
|
|
54413
54462
|
}
|
|
@@ -54505,6 +54554,15 @@ const de_Snapshot = (output, context) => {
|
|
|
54505
54554
|
if (output[_sTs] != null) {
|
|
54506
54555
|
contents[_STs] = __expectString(output[_sTs]);
|
|
54507
54556
|
}
|
|
54557
|
+
if (output[_tTr] != null) {
|
|
54558
|
+
contents[_TTr] = __expectString(output[_tTr]);
|
|
54559
|
+
}
|
|
54560
|
+
if (output[_cDM] != null) {
|
|
54561
|
+
contents[_CDM] = __strictParseInt32(output[_cDM]);
|
|
54562
|
+
}
|
|
54563
|
+
if (output[_cTomp] != null) {
|
|
54564
|
+
contents[_CTomp] = __expectNonNull(__parseRfc3339DateTimeWithOffset(output[_cTomp]));
|
|
54565
|
+
}
|
|
54508
54566
|
if (output[_sIn] != null) {
|
|
54509
54567
|
contents[_SIn] = __expectString(output[_sIn]);
|
|
54510
54568
|
}
|
|
@@ -55603,6 +55661,23 @@ const de_SupportedIpAddressTypes = (output, context) => {
|
|
|
55603
55661
|
return __expectString(entry);
|
|
55604
55662
|
});
|
|
55605
55663
|
};
|
|
55664
|
+
const de_SupportedRegionDetail = (output, context) => {
|
|
55665
|
+
const contents = {};
|
|
55666
|
+
if (output[_reg] != null) {
|
|
55667
|
+
contents[_Regi] = __expectString(output[_reg]);
|
|
55668
|
+
}
|
|
55669
|
+
if (output[_sSer] != null) {
|
|
55670
|
+
contents[_SSe] = __expectString(output[_sSer]);
|
|
55671
|
+
}
|
|
55672
|
+
return contents;
|
|
55673
|
+
};
|
|
55674
|
+
const de_SupportedRegionSet = (output, context) => {
|
|
55675
|
+
return (output || [])
|
|
55676
|
+
.filter((e) => e != null)
|
|
55677
|
+
.map((entry) => {
|
|
55678
|
+
return de_SupportedRegionDetail(entry, context);
|
|
55679
|
+
});
|
|
55680
|
+
};
|
|
55606
55681
|
const de_Tag = (output, context) => {
|
|
55607
55682
|
const contents = {};
|
|
55608
55683
|
if (output[_k] != null) {
|
|
@@ -58380,6 +58455,9 @@ const de_VpcEndpoint = (output, context) => {
|
|
|
58380
58455
|
if (output[_lEa] != null) {
|
|
58381
58456
|
contents[_LEa] = de_LastError(output[_lEa], context);
|
|
58382
58457
|
}
|
|
58458
|
+
if (output[_sR] != null) {
|
|
58459
|
+
contents[_SRe] = __expectString(output[_sR]);
|
|
58460
|
+
}
|
|
58383
58461
|
return contents;
|
|
58384
58462
|
};
|
|
58385
58463
|
const de_VpcEndpointConnection = (output, context) => {
|
|
@@ -58429,6 +58507,9 @@ const de_VpcEndpointConnection = (output, context) => {
|
|
|
58429
58507
|
else if (output[_tS] != null && output[_tS][_i] != null) {
|
|
58430
58508
|
contents[_Ta] = de_TagList(__getArrayIfSingleItem(output[_tS][_i]), context);
|
|
58431
58509
|
}
|
|
58510
|
+
if (output[_vER] != null) {
|
|
58511
|
+
contents[_VER] = __expectString(output[_vER]);
|
|
58512
|
+
}
|
|
58432
58513
|
return contents;
|
|
58433
58514
|
};
|
|
58434
58515
|
const de_VpcEndpointConnectionSet = (output, context) => {
|
|
@@ -58939,6 +59020,7 @@ const _ASGTCVTN = "ApplySecurityGroupsToClientVpnTargetNetwork";
|
|
|
58939
59020
|
const _ASGV = "AssociateSecurityGroupVpc";
|
|
58940
59021
|
const _ASI = "AddSubnetIds";
|
|
58941
59022
|
const _ASIAT = "AddSupportedIpAddressTypes";
|
|
59023
|
+
const _ASR = "AddSupportedRegions";
|
|
58942
59024
|
const _ASS = "AmdSevSnp";
|
|
58943
59025
|
const _AST = "AnalysisStartTime";
|
|
58944
59026
|
const _ASTB = "AnalysisStartTimeBegin";
|
|
@@ -59095,6 +59177,7 @@ const _CCp = "CpuCredits";
|
|
|
59095
59177
|
const _CCu = "CurrencyCode";
|
|
59096
59178
|
const _CD = "CommitmentDuration";
|
|
59097
59179
|
const _CDH = "CapacityDurationHours";
|
|
59180
|
+
const _CDM = "CompletionDurationMinutes";
|
|
59098
59181
|
const _CDO = "CreateDhcpOptions";
|
|
59099
59182
|
const _CDS = "CreateDefaultSubnet";
|
|
59100
59183
|
const _CDSDA = "ConfigDeliveryS3DestinationArn";
|
|
@@ -59277,6 +59360,7 @@ const _CTS = "ConnectionTrackingSpecification";
|
|
|
59277
59360
|
const _CTl = "ClientToken";
|
|
59278
59361
|
const _CTo = "ConnectivityType";
|
|
59279
59362
|
const _CTom = "CompleteTime";
|
|
59363
|
+
const _CTomp = "CompletionTime";
|
|
59280
59364
|
const _CTon = "ConversionTasks";
|
|
59281
59365
|
const _CTonv = "ConversionTask";
|
|
59282
59366
|
const _CTr = "CreateTime";
|
|
@@ -60761,6 +60845,7 @@ const _Q = "Quantity";
|
|
|
60761
60845
|
const _R = "References";
|
|
60762
60846
|
const _RA = "ReleaseAddress";
|
|
60763
60847
|
const _RAA = "ResetAddressAttribute";
|
|
60848
|
+
const _RAE = "RemoteAccessEnabled";
|
|
60764
60849
|
const _RAG = "RevokeAllGroups";
|
|
60765
60850
|
const _RAP = "RemoveAllowedPrincipals";
|
|
60766
60851
|
const _RART = "RemoveAllocationResourceTags";
|
|
@@ -60883,6 +60968,7 @@ const _RSI = "RequestSpotInstances";
|
|
|
60883
60968
|
const _RSIAT = "RemoveSupportedIpAddressTypes";
|
|
60884
60969
|
const _RSIe = "RemoveSubnetIds";
|
|
60885
60970
|
const _RSIu = "RunScheduledInstances";
|
|
60971
|
+
const _RSR = "RemoveSupportedRegions";
|
|
60886
60972
|
const _RST = "RestoreSnapshotTier";
|
|
60887
60973
|
const _RSTe = "RestoreStartTime";
|
|
60888
60974
|
const _RSe = "ResourceStatement";
|
|
@@ -61068,9 +61154,12 @@ const _SR = "SourceRegion";
|
|
|
61068
61154
|
const _SRDT = "SupportedRootDeviceTypes";
|
|
61069
61155
|
const _SRO = "StaticRoutesOnly";
|
|
61070
61156
|
const _SRT = "SubnetRouteTable";
|
|
61071
|
-
const _SRe = "
|
|
61157
|
+
const _SRe = "ServiceRegion";
|
|
61158
|
+
const _SRer = "ServiceRegions";
|
|
61159
|
+
const _SRerv = "ServiceResource";
|
|
61072
61160
|
const _SRo = "SourceResource";
|
|
61073
61161
|
const _SRt = "StateReason";
|
|
61162
|
+
const _SRu = "SupportedRegions";
|
|
61074
61163
|
const _SS = "SseSpecification";
|
|
61075
61164
|
const _SSGN = "SourceSecurityGroupName";
|
|
61076
61165
|
const _SSGOI = "SourceSecurityGroupOwnerId";
|
|
@@ -61270,6 +61359,7 @@ const _TT = "TrafficType";
|
|
|
61270
61359
|
const _TTC = "TotalTargetCapacity";
|
|
61271
61360
|
const _TTGAI = "TransportTransitGatewayAttachmentId";
|
|
61272
61361
|
const _TTa = "TargetThroughput";
|
|
61362
|
+
const _TTr = "TransferType";
|
|
61273
61363
|
const _TUP = "TotalUpfrontPrice";
|
|
61274
61364
|
const _TV = "TargetVersion";
|
|
61275
61365
|
const _TVC = "TotalVCpus";
|
|
@@ -61371,6 +61461,7 @@ const _VEI = "VpcEndpointIds";
|
|
|
61371
61461
|
const _VEIp = "VpcEndpointId";
|
|
61372
61462
|
const _VEO = "VpcEndpointOwner";
|
|
61373
61463
|
const _VEPS = "VpcEndpointPolicySupported";
|
|
61464
|
+
const _VER = "VpcEndpointRegion";
|
|
61374
61465
|
const _VES = "VpnEcmpSupport";
|
|
61375
61466
|
const _VESp = "VpcEndpointService";
|
|
61376
61467
|
const _VESpc = "VpcEndpointState";
|
|
@@ -61632,6 +61723,7 @@ const _cCo = "coreCount";
|
|
|
61632
61723
|
const _cCoi = "coipCidr";
|
|
61633
61724
|
const _cCp = "cpuCredits";
|
|
61634
61725
|
const _cD = "createDate";
|
|
61726
|
+
const _cDM = "completionDurationMinutes";
|
|
61635
61727
|
const _cDr = "creationDate";
|
|
61636
61728
|
const _cDre = "createdDate";
|
|
61637
61729
|
const _cE = "connectionEvents";
|
|
@@ -61725,6 +61817,7 @@ const _cTI = "conversionTaskId";
|
|
|
61725
61817
|
const _cTS = "connectionTrackingSpecification";
|
|
61726
61818
|
const _cTo = "conversionTasks";
|
|
61727
61819
|
const _cTom = "completeTime";
|
|
61820
|
+
const _cTomp = "completionTime";
|
|
61728
61821
|
const _cTon = "conversionTask";
|
|
61729
61822
|
const _cTonn = "connectivityType";
|
|
61730
61823
|
const _cTr = "createTime";
|
|
@@ -62608,6 +62701,7 @@ const _pu = "public";
|
|
|
62608
62701
|
const _pur = "purchase";
|
|
62609
62702
|
const _r = "return";
|
|
62610
62703
|
const _rA = "ruleAction";
|
|
62704
|
+
const _rAE = "remoteAccessEnabled";
|
|
62611
62705
|
const _rAe = "resourceArn";
|
|
62612
62706
|
const _rB = "requestedBy";
|
|
62613
62707
|
const _rBET = "recycleBinEnterTime";
|
|
@@ -62819,12 +62913,14 @@ const _sPS = "sourcePortSet";
|
|
|
62819
62913
|
const _sPSS = "spotPlacementScoreSet";
|
|
62820
62914
|
const _sPp = "spotPrice";
|
|
62821
62915
|
const _sQPDS = "successfulQueuedPurchaseDeletionSet";
|
|
62822
|
-
const _sR = "
|
|
62916
|
+
const _sR = "serviceRegion";
|
|
62823
62917
|
const _sRDT = "supportedRootDeviceTypes";
|
|
62824
62918
|
const _sRO = "staticRoutesOnly";
|
|
62919
|
+
const _sRS = "supportedRegionSet";
|
|
62825
62920
|
const _sRT = "subnetRouteTable";
|
|
62826
62921
|
const _sRe = "serviceResource";
|
|
62827
62922
|
const _sRo = "sourceResource";
|
|
62923
|
+
const _sRt = "stateReason";
|
|
62828
62924
|
const _sS = "snapshotSet";
|
|
62829
62925
|
const _sSGS = "staleSecurityGroupSet";
|
|
62830
62926
|
const _sSPU = "selfServicePortalUrl";
|
|
@@ -62993,6 +63089,7 @@ const _tT = "trafficType";
|
|
|
62993
63089
|
const _tTC = "totalTargetCapacity";
|
|
62994
63090
|
const _tTGAI = "transportTransitGatewayAttachmentId";
|
|
62995
63091
|
const _tTa = "targetThroughput";
|
|
63092
|
+
const _tTr = "transferType";
|
|
62996
63093
|
const _tUP = "totalUpfrontPrice";
|
|
62997
63094
|
const _tV = "tokenValue";
|
|
62998
63095
|
const _tVC = "totalVCpus";
|
|
@@ -63071,6 +63168,7 @@ const _vECS = "vpcEndpointConnectionSet";
|
|
|
63071
63168
|
const _vEI = "vpcEndpointId";
|
|
63072
63169
|
const _vEO = "vpcEndpointOwner";
|
|
63073
63170
|
const _vEPS = "vpcEndpointPolicySupported";
|
|
63171
|
+
const _vER = "vpcEndpointRegion";
|
|
63074
63172
|
const _vES = "vpcEndpointService";
|
|
63075
63173
|
const _vESp = "vpcEndpointSet";
|
|
63076
63174
|
const _vESpc = "vpcEndpointState";
|
|
@@ -89,6 +89,9 @@ declare const CreateSnapshotCommand_base: {
|
|
|
89
89
|
* // StorageTier: "archive" || "standard",
|
|
90
90
|
* // RestoreExpiryTime: new Date("TIMESTAMP"),
|
|
91
91
|
* // SseType: "sse-ebs" || "sse-kms" || "none",
|
|
92
|
+
* // TransferType: "time-based" || "standard",
|
|
93
|
+
* // CompletionDurationMinutes: Number("int"),
|
|
94
|
+
* // CompletionTime: new Date("TIMESTAMP"),
|
|
92
95
|
* // SnapshotId: "STRING_VALUE",
|
|
93
96
|
* // VolumeId: "STRING_VALUE",
|
|
94
97
|
* // State: "pending" || "completed" || "error" || "recoverable" || "recovering",
|
|
@@ -77,6 +77,7 @@ declare const CreateVpcEndpointCommand_base: {
|
|
|
77
77
|
* Ipv6: "STRING_VALUE",
|
|
78
78
|
* },
|
|
79
79
|
* ],
|
|
80
|
+
* ServiceRegion: "STRING_VALUE",
|
|
80
81
|
* };
|
|
81
82
|
* const command = new CreateVpcEndpointCommand(input);
|
|
82
83
|
* const response = await client.send(command);
|
|
@@ -128,6 +129,7 @@ declare const CreateVpcEndpointCommand_base: {
|
|
|
128
129
|
* // Message: "STRING_VALUE",
|
|
129
130
|
* // Code: "STRING_VALUE",
|
|
130
131
|
* // },
|
|
132
|
+
* // ServiceRegion: "STRING_VALUE",
|
|
131
133
|
* // },
|
|
132
134
|
* // ClientToken: "STRING_VALUE",
|
|
133
135
|
* // };
|
|
@@ -61,6 +61,7 @@ declare const CreateVpcEndpointConnectionNotificationCommand_base: {
|
|
|
61
61
|
* // "STRING_VALUE",
|
|
62
62
|
* // ],
|
|
63
63
|
* // ConnectionNotificationState: "Enabled" || "Disabled",
|
|
64
|
+
* // ServiceRegion: "STRING_VALUE",
|
|
64
65
|
* // },
|
|
65
66
|
* // ClientToken: "STRING_VALUE",
|
|
66
67
|
* // };
|
|
@@ -63,6 +63,9 @@ declare const CreateVpcEndpointServiceConfigurationCommand_base: {
|
|
|
63
63
|
* SupportedIpAddressTypes: [
|
|
64
64
|
* "STRING_VALUE",
|
|
65
65
|
* ],
|
|
66
|
+
* SupportedRegions: [
|
|
67
|
+
* "STRING_VALUE",
|
|
68
|
+
* ],
|
|
66
69
|
* ClientToken: "STRING_VALUE",
|
|
67
70
|
* TagSpecifications: [ // TagSpecificationList
|
|
68
71
|
* { // TagSpecification
|
|
@@ -119,6 +122,13 @@ declare const CreateVpcEndpointServiceConfigurationCommand_base: {
|
|
|
119
122
|
* // Value: "STRING_VALUE",
|
|
120
123
|
* // },
|
|
121
124
|
* // ],
|
|
125
|
+
* // SupportedRegions: [ // SupportedRegionSet
|
|
126
|
+
* // { // SupportedRegionDetail
|
|
127
|
+
* // Region: "STRING_VALUE",
|
|
128
|
+
* // ServiceState: "STRING_VALUE",
|
|
129
|
+
* // },
|
|
130
|
+
* // ],
|
|
131
|
+
* // RemoteAccessEnabled: true || false,
|
|
122
132
|
* // },
|
|
123
133
|
* // ClientToken: "STRING_VALUE",
|
|
124
134
|
* // };
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import { DeleteFlowLogsRequest
|
|
4
|
+
import { DeleteFlowLogsRequest } from "../models/models_2";
|
|
5
|
+
import { DeleteFlowLogsResult } from "../models/models_3";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import { DeleteFpgaImageRequest } from "../models/
|
|
5
|
-
import { DeleteFpgaImageResult } from "../models/models_3";
|
|
4
|
+
import { DeleteFpgaImageRequest, DeleteFpgaImageResult } from "../models/models_3";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import { DescribeScheduledInstanceAvailabilityRequest } from "../models/
|
|
5
|
-
import { DescribeScheduledInstanceAvailabilityResult } from "../models/models_5";
|
|
4
|
+
import { DescribeScheduledInstanceAvailabilityRequest, DescribeScheduledInstanceAvailabilityResult } from "../models/models_5";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -119,6 +119,9 @@ declare const DescribeSnapshotsCommand_base: {
|
|
|
119
119
|
* // StorageTier: "archive" || "standard",
|
|
120
120
|
* // RestoreExpiryTime: new Date("TIMESTAMP"),
|
|
121
121
|
* // SseType: "sse-ebs" || "sse-kms" || "none",
|
|
122
|
+
* // TransferType: "time-based" || "standard",
|
|
123
|
+
* // CompletionDurationMinutes: Number("int"),
|
|
124
|
+
* // CompletionTime: new Date("TIMESTAMP"),
|
|
122
125
|
* // SnapshotId: "STRING_VALUE",
|
|
123
126
|
* // VolumeId: "STRING_VALUE",
|
|
124
127
|
* // State: "pending" || "completed" || "error" || "recoverable" || "recovering",
|
|
@@ -63,6 +63,7 @@ declare const DescribeVpcEndpointConnectionNotificationsCommand_base: {
|
|
|
63
63
|
* // "STRING_VALUE",
|
|
64
64
|
* // ],
|
|
65
65
|
* // ConnectionNotificationState: "Enabled" || "Disabled",
|
|
66
|
+
* // ServiceRegion: "STRING_VALUE",
|
|
66
67
|
* // },
|
|
67
68
|
* // ],
|
|
68
69
|
* // NextToken: "STRING_VALUE",
|
|
@@ -94,6 +94,13 @@ declare const DescribeVpcEndpointServiceConfigurationsCommand_base: {
|
|
|
94
94
|
* // Value: "STRING_VALUE",
|
|
95
95
|
* // },
|
|
96
96
|
* // ],
|
|
97
|
+
* // SupportedRegions: [ // SupportedRegionSet
|
|
98
|
+
* // { // SupportedRegionDetail
|
|
99
|
+
* // Region: "STRING_VALUE",
|
|
100
|
+
* // ServiceState: "STRING_VALUE",
|
|
101
|
+
* // },
|
|
102
|
+
* // ],
|
|
103
|
+
* // RemoteAccessEnabled: true || false,
|
|
97
104
|
* // },
|
|
98
105
|
* // ],
|
|
99
106
|
* // NextToken: "STRING_VALUE",
|
|
@@ -56,6 +56,9 @@ declare const DescribeVpcEndpointServicesCommand_base: {
|
|
|
56
56
|
* ],
|
|
57
57
|
* MaxResults: Number("int"),
|
|
58
58
|
* NextToken: "STRING_VALUE",
|
|
59
|
+
* ServiceRegions: [
|
|
60
|
+
* "STRING_VALUE",
|
|
61
|
+
* ],
|
|
59
62
|
* };
|
|
60
63
|
* const command = new DescribeVpcEndpointServicesCommand(input);
|
|
61
64
|
* const response = await client.send(command);
|
|
@@ -72,6 +75,7 @@ declare const DescribeVpcEndpointServicesCommand_base: {
|
|
|
72
75
|
* // ServiceType: "Interface" || "Gateway" || "GatewayLoadBalancer",
|
|
73
76
|
* // },
|
|
74
77
|
* // ],
|
|
78
|
+
* // ServiceRegion: "STRING_VALUE",
|
|
75
79
|
* // AvailabilityZones: [
|
|
76
80
|
* // "STRING_VALUE",
|
|
77
81
|
* // ],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import { EnableTransitGatewayRouteTablePropagationRequest, EnableTransitGatewayRouteTablePropagationResult } from "../models/
|
|
4
|
+
import { EnableTransitGatewayRouteTablePropagationRequest, EnableTransitGatewayRouteTablePropagationResult } from "../models/models_6";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import { ModifySpotFleetRequestRequest
|
|
4
|
+
import { ModifySpotFleetRequestRequest } from "../models/models_6";
|
|
5
|
+
import { ModifySpotFleetRequestResponse } from "../models/models_7";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import { ModifySubnetAttributeRequest } from "../models/
|
|
4
|
+
import { ModifySubnetAttributeRequest } from "../models/models_7";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -27,10 +27,7 @@ declare const ModifyVpcEndpointServiceConfigurationCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Modifies the attributes of
|
|
31
|
-
* Network Load Balancers or Gateway Load Balancers for your service, and you can specify whether acceptance is
|
|
32
|
-
* required for requests to connect to your endpoint service through an interface VPC
|
|
33
|
-
* endpoint.</p>
|
|
30
|
+
* <p>Modifies the attributes of the specified VPC endpoint service configuration.</p>
|
|
34
31
|
* <p>If you set or modify the private DNS name, you must prove that you own the private DNS
|
|
35
32
|
* domain name.</p>
|
|
36
33
|
* @example
|
|
@@ -61,6 +58,8 @@ declare const ModifyVpcEndpointServiceConfigurationCommand_base: {
|
|
|
61
58
|
* "STRING_VALUE",
|
|
62
59
|
* ],
|
|
63
60
|
* RemoveSupportedIpAddressTypes: "<ValueStringList>",
|
|
61
|
+
* AddSupportedRegions: "<ValueStringList>",
|
|
62
|
+
* RemoveSupportedRegions: "<ValueStringList>",
|
|
64
63
|
* };
|
|
65
64
|
* const command = new ModifyVpcEndpointServiceConfigurationCommand(input);
|
|
66
65
|
* const response = await client.send(command);
|
|
@@ -7309,6 +7309,16 @@ export interface CopySnapshotRequest {
|
|
|
7309
7309
|
* @public
|
|
7310
7310
|
*/
|
|
7311
7311
|
TagSpecifications?: TagSpecification[] | undefined;
|
|
7312
|
+
/**
|
|
7313
|
+
* <p>Specify a completion duration, in 15 minute increments, to initiate a time-based snapshot
|
|
7314
|
+
* copy. Time-based snapshot copy operations complete within the specified duration. For more
|
|
7315
|
+
* information, see <a href="https://docs.aws.amazon.com/ebs/latest/userguide/time-based-copies.html">
|
|
7316
|
+
* Time-based copies</a>.</p>
|
|
7317
|
+
* <p>If you do not specify a value, the snapshot copy operation is completed on a
|
|
7318
|
+
* best-effort basis.</p>
|
|
7319
|
+
* @public
|
|
7320
|
+
*/
|
|
7321
|
+
CompletionDurationMinutes?: number | undefined;
|
|
7312
7322
|
/**
|
|
7313
7323
|
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
7314
7324
|
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
@@ -3331,6 +3331,9 @@ export interface InstanceRequirementsRequest {
|
|
|
3331
3331
|
* <li>
|
|
3332
3332
|
* <p>For instance types with Amazon Web Services CPUs, specify <code>amazon-web-services</code>.</p>
|
|
3333
3333
|
* </li>
|
|
3334
|
+
* <li>
|
|
3335
|
+
* <p>For instance types with Apple CPUs, specify <code>apple</code>.</p>
|
|
3336
|
+
* </li>
|
|
3334
3337
|
* </ul>
|
|
3335
3338
|
* <note>
|
|
3336
3339
|
* <p>Don't confuse the CPU manufacturer with the CPU architecture. Instances will
|
|
@@ -4518,9 +4521,9 @@ export interface PerformanceFactorReference {
|
|
|
4518
4521
|
* <p>Ensure that you specify the correct value for the instance family. The instance
|
|
4519
4522
|
* family is everything before the period (<code>.</code>) in the instance type name. For
|
|
4520
4523
|
* example, in the instance type <code>c6i.large</code>, the instance family is
|
|
4521
|
-
*
|
|
4524
|
+
* <code>c6i</code>, not <code>c6</code>. For more information, see <a href="https://docs.aws.amazon.com/ec2/latest/instancetypes/instance-type-names.html">Amazon EC2
|
|
4522
4525
|
* instance type naming conventions</a> in <i>Amazon EC2 Instance
|
|
4523
|
-
*
|
|
4526
|
+
* Types</i>.</p>
|
|
4524
4527
|
* </note>
|
|
4525
4528
|
* <p>The following instance families are <i>not supported</i> for performance
|
|
4526
4529
|
* protection:</p>
|
|
@@ -4787,6 +4790,9 @@ export interface InstanceRequirements {
|
|
|
4787
4790
|
* <li>
|
|
4788
4791
|
* <p>For instance types with Amazon Web Services CPUs, specify <code>amazon-web-services</code>.</p>
|
|
4789
4792
|
* </li>
|
|
4793
|
+
* <li>
|
|
4794
|
+
* <p>For instance types with Apple CPUs, specify <code>apple</code>.</p>
|
|
4795
|
+
* </li>
|
|
4790
4796
|
* </ul>
|
|
4791
4797
|
* <note>
|
|
4792
4798
|
* <p>Don't confuse the CPU manufacturer with the CPU architecture. Instances will
|
|
@@ -7882,9 +7888,15 @@ export interface LaunchTemplateCapacityReservationSpecificationRequest {
|
|
|
7882
7888
|
* <ul>
|
|
7883
7889
|
* <li>
|
|
7884
7890
|
* <p>
|
|
7891
|
+
* <code>capacity-reservations-only</code> - The instance will only run in a
|
|
7892
|
+
* Capacity Reservation or Capacity Reservation group. If capacity isn't available,
|
|
7893
|
+
* the instance will fail to launch.</p>
|
|
7894
|
+
* </li>
|
|
7895
|
+
* <li>
|
|
7896
|
+
* <p>
|
|
7885
7897
|
* <code>open</code> - The instance can run in any <code>open</code> Capacity
|
|
7886
7898
|
* Reservation that has matching attributes (instance type, platform, Availability
|
|
7887
|
-
* Zone).</p>
|
|
7899
|
+
* Zone, tenancy).</p>
|
|
7888
7900
|
* </li>
|
|
7889
7901
|
* <li>
|
|
7890
7902
|
* <p>
|