@aws-sdk/client-ec2 3.171.0 → 3.174.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/CHANGELOG.md +22 -0
- package/dist-cjs/commands/CreateTrafficMirrorFilterRuleCommand.js +3 -3
- package/dist-cjs/commands/DescribeAddressesAttributeCommand.js +3 -3
- package/dist-cjs/commands/DescribeAggregateIdFormatCommand.js +1 -2
- package/dist-cjs/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.js +2 -1
- package/dist-cjs/commands/DescribeLocalGatewayVirtualInterfacesCommand.js +1 -2
- package/dist-cjs/commands/MonitorInstancesCommand.js +3 -3
- package/dist-cjs/models/models_0.js +978 -27
- package/dist-cjs/models/models_1.js +250 -18
- package/dist-cjs/models/models_2.js +152 -18
- package/dist-cjs/models/models_3.js +279 -18
- package/dist-cjs/models/models_4.js +106 -18
- package/dist-cjs/models/models_5.js +62 -18
- package/dist-cjs/models/models_6.js +46 -3
- package/dist-cjs/protocols/Aws_ec2.js +88 -0
- package/dist-es/commands/CreateTrafficMirrorFilterRuleCommand.js +1 -1
- package/dist-es/commands/DescribeAddressesAttributeCommand.js +1 -1
- package/dist-es/commands/DescribeAggregateIdFormatCommand.js +1 -2
- package/dist-es/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.js +2 -1
- package/dist-es/commands/DescribeLocalGatewayVirtualInterfacesCommand.js +1 -2
- package/dist-es/commands/MonitorInstancesCommand.js +1 -1
- package/dist-es/models/models_0.js +966 -12
- package/dist-es/models/models_1.js +235 -3
- package/dist-es/models/models_2.js +137 -3
- package/dist-es/models/models_3.js +264 -3
- package/dist-es/models/models_4.js +91 -3
- package/dist-es/models/models_5.js +47 -3
- package/dist-es/models/models_6.js +33 -0
- package/dist-es/protocols/Aws_ec2.js +88 -0
- package/dist-types/EC2.d.ts +13 -30
- package/dist-types/commands/CreateTrafficMirrorFilterRuleCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAddressesAttributeCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAggregateIdFormatCommand.d.ts +1 -2
- package/dist-types/commands/DescribeInstancesCommand.d.ts +0 -3
- package/dist-types/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeLocalGatewayVirtualInterfacesCommand.d.ts +1 -2
- package/dist-types/commands/DescribeReservedInstancesCommand.d.ts +0 -3
- package/dist-types/commands/DescribeReservedInstancesModificationsCommand.d.ts +0 -3
- package/dist-types/commands/DescribeReservedInstancesOfferingsCommand.d.ts +0 -3
- package/dist-types/commands/DescribeScheduledInstanceAvailabilityCommand.d.ts +0 -4
- package/dist-types/commands/DescribeScheduledInstancesCommand.d.ts +0 -4
- package/dist-types/commands/ModifyReservedInstancesCommand.d.ts +4 -6
- package/dist-types/commands/MonitorInstancesCommand.d.ts +1 -1
- package/dist-types/commands/PurchaseReservedInstancesOfferingCommand.d.ts +3 -0
- package/dist-types/commands/PurchaseScheduledInstancesCommand.d.ts +4 -1
- package/dist-types/commands/RequestSpotInstancesCommand.d.ts +1 -1
- package/dist-types/commands/RunInstancesCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +975 -108
- package/dist-types/models/models_1.d.ts +288 -143
- package/dist-types/models/models_2.d.ts +202 -79
- package/dist-types/models/models_3.d.ts +291 -161
- package/dist-types/models/models_4.d.ts +221 -103
- package/dist-types/models/models_5.d.ts +102 -61
- package/dist-types/models/models_6.d.ts +78 -14
- package/dist-types/ts3.4/commands/CreateTrafficMirrorFilterRuleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeAddressesAttributeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeAggregateIdFormatCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeLocalGatewayVirtualInterfacesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/MonitorInstancesCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +935 -846
- package/dist-types/ts3.4/models/models_1.d.ts +216 -154
- package/dist-types/ts3.4/models/models_2.d.ts +145 -83
- package/dist-types/ts3.4/models/models_3.d.ts +248 -171
- package/dist-types/ts3.4/models/models_4.d.ts +104 -72
- package/dist-types/ts3.4/models/models_5.d.ts +61 -47
- package/dist-types/ts3.4/models/models_6.d.ts +47 -19
- package/package.json +1 -1
|
@@ -14,7 +14,6 @@ import {
|
|
|
14
14
|
AddressFamily,
|
|
15
15
|
AttachmentStatus,
|
|
16
16
|
CurrencyCodeValues,
|
|
17
|
-
DhcpOptions,
|
|
18
17
|
HostnameType,
|
|
19
18
|
InstanceEventWindow,
|
|
20
19
|
Ipv4PrefixSpecification,
|
|
@@ -30,6 +29,19 @@ import {
|
|
|
30
29
|
UnsuccessfulItem,
|
|
31
30
|
WeekDay,
|
|
32
31
|
} from "./models_0";
|
|
32
|
+
export interface AttributeValue {
|
|
33
|
+
Value?: string;
|
|
34
|
+
}
|
|
35
|
+
export interface DhcpConfiguration {
|
|
36
|
+
Key?: string;
|
|
37
|
+
Values?: AttributeValue[];
|
|
38
|
+
}
|
|
39
|
+
export interface DhcpOptions {
|
|
40
|
+
DhcpConfigurations?: DhcpConfiguration[];
|
|
41
|
+
DhcpOptionsId?: string;
|
|
42
|
+
OwnerId?: string;
|
|
43
|
+
Tags?: Tag[];
|
|
44
|
+
}
|
|
33
45
|
export interface CreateDhcpOptionsResult {
|
|
34
46
|
DhcpOptions?: DhcpOptions;
|
|
35
47
|
}
|
|
@@ -184,10 +196,11 @@ export declare enum SpotAllocationStrategy {
|
|
|
184
196
|
DIVERSIFIED = "diversified",
|
|
185
197
|
LOWEST_PRICE = "lowest-price",
|
|
186
198
|
}
|
|
187
|
-
export declare
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
199
|
+
export declare enum SpotInstanceInterruptionBehavior {
|
|
200
|
+
hibernate = "hibernate",
|
|
201
|
+
stop = "stop",
|
|
202
|
+
terminate = "terminate",
|
|
203
|
+
}
|
|
191
204
|
export declare enum FleetReplacementStrategy {
|
|
192
205
|
LAUNCH = "launch",
|
|
193
206
|
LAUNCH_BEFORE_TERMINATE = "launch-before-terminate",
|
|
@@ -327,7 +340,9 @@ export interface CreateFleetError {
|
|
|
327
340
|
ErrorCode?: string;
|
|
328
341
|
ErrorMessage?: string;
|
|
329
342
|
}
|
|
330
|
-
export declare
|
|
343
|
+
export declare enum PlatformValues {
|
|
344
|
+
Windows = "Windows",
|
|
345
|
+
}
|
|
331
346
|
export interface CreateFleetInstance {
|
|
332
347
|
LaunchTemplateAndOverrides?: LaunchTemplateAndOverridesResponse;
|
|
333
348
|
Lifecycle?: InstanceLifecycle | string;
|
|
@@ -349,17 +364,23 @@ export interface DestinationOptionsRequest {
|
|
|
349
364
|
HiveCompatiblePartitions?: boolean;
|
|
350
365
|
PerHourPartition?: boolean;
|
|
351
366
|
}
|
|
352
|
-
export declare
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
367
|
+
export declare enum LogDestinationType {
|
|
368
|
+
cloud_watch_logs = "cloud-watch-logs",
|
|
369
|
+
kinesis_data_firehose = "kinesis-data-firehose",
|
|
370
|
+
s3 = "s3",
|
|
371
|
+
}
|
|
372
|
+
export declare enum FlowLogsResourceType {
|
|
373
|
+
NetworkInterface = "NetworkInterface",
|
|
374
|
+
Subnet = "Subnet",
|
|
375
|
+
TransitGateway = "TransitGateway",
|
|
376
|
+
TransitGatewayAttachment = "TransitGatewayAttachment",
|
|
377
|
+
VPC = "VPC",
|
|
378
|
+
}
|
|
379
|
+
export declare enum TrafficType {
|
|
380
|
+
ACCEPT = "ACCEPT",
|
|
381
|
+
ALL = "ALL",
|
|
382
|
+
REJECT = "REJECT",
|
|
383
|
+
}
|
|
363
384
|
export interface CreateFlowLogsRequest {
|
|
364
385
|
DryRun?: boolean;
|
|
365
386
|
ClientToken?: string;
|
|
@@ -398,14 +419,15 @@ export interface CreateFpgaImageResult {
|
|
|
398
419
|
FpgaImageId?: string;
|
|
399
420
|
FpgaImageGlobalId?: string;
|
|
400
421
|
}
|
|
401
|
-
export declare
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
422
|
+
export declare enum VolumeType {
|
|
423
|
+
gp2 = "gp2",
|
|
424
|
+
gp3 = "gp3",
|
|
425
|
+
io1 = "io1",
|
|
426
|
+
io2 = "io2",
|
|
427
|
+
sc1 = "sc1",
|
|
428
|
+
st1 = "st1",
|
|
429
|
+
standard = "standard",
|
|
430
|
+
}
|
|
409
431
|
export interface EbsBlockDevice {
|
|
410
432
|
DeleteOnTermination?: boolean;
|
|
411
433
|
Iops?: number;
|
|
@@ -451,15 +473,25 @@ export interface CreateInstanceEventWindowRequest {
|
|
|
451
473
|
export interface CreateInstanceEventWindowResult {
|
|
452
474
|
InstanceEventWindow?: InstanceEventWindow;
|
|
453
475
|
}
|
|
454
|
-
export declare
|
|
455
|
-
|
|
476
|
+
export declare enum ContainerFormat {
|
|
477
|
+
ova = "ova",
|
|
478
|
+
}
|
|
479
|
+
export declare enum DiskImageFormat {
|
|
480
|
+
RAW = "RAW",
|
|
481
|
+
VHD = "VHD",
|
|
482
|
+
VMDK = "VMDK",
|
|
483
|
+
}
|
|
456
484
|
export interface ExportToS3TaskSpecification {
|
|
457
485
|
ContainerFormat?: ContainerFormat | string;
|
|
458
486
|
DiskImageFormat?: DiskImageFormat | string;
|
|
459
487
|
S3Bucket?: string;
|
|
460
488
|
S3Prefix?: string;
|
|
461
489
|
}
|
|
462
|
-
export declare
|
|
490
|
+
export declare enum ExportEnvironment {
|
|
491
|
+
citrix = "citrix",
|
|
492
|
+
microsoft = "microsoft",
|
|
493
|
+
vmware = "vmware",
|
|
494
|
+
}
|
|
463
495
|
export interface CreateInstanceExportTaskRequest {
|
|
464
496
|
Description?: string;
|
|
465
497
|
ExportToS3Task: ExportToS3TaskSpecification | undefined;
|
|
@@ -477,11 +509,12 @@ export interface InstanceExportDetails {
|
|
|
477
509
|
InstanceId?: string;
|
|
478
510
|
TargetEnvironment?: ExportEnvironment | string;
|
|
479
511
|
}
|
|
480
|
-
export declare
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
512
|
+
export declare enum ExportTaskState {
|
|
513
|
+
active = "active",
|
|
514
|
+
cancelled = "cancelled",
|
|
515
|
+
cancelling = "cancelling",
|
|
516
|
+
completed = "completed",
|
|
517
|
+
}
|
|
485
518
|
export interface ExportTask {
|
|
486
519
|
Description?: string;
|
|
487
520
|
ExportTaskId?: string;
|
|
@@ -695,7 +728,10 @@ export interface LaunchTemplateBlockDeviceMappingRequest {
|
|
|
695
728
|
Ebs?: LaunchTemplateEbsBlockDeviceRequest;
|
|
696
729
|
NoDevice?: string;
|
|
697
730
|
}
|
|
698
|
-
export declare
|
|
731
|
+
export declare enum CapacityReservationPreference {
|
|
732
|
+
none = "none",
|
|
733
|
+
open = "open",
|
|
734
|
+
}
|
|
699
735
|
export interface CapacityReservationTarget {
|
|
700
736
|
CapacityReservationId?: string;
|
|
701
737
|
CapacityReservationResourceGroupArn?: string;
|
|
@@ -728,13 +764,22 @@ export interface LaunchTemplateIamInstanceProfileSpecificationRequest {
|
|
|
728
764
|
Arn?: string;
|
|
729
765
|
Name?: string;
|
|
730
766
|
}
|
|
731
|
-
export declare
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
767
|
+
export declare enum ShutdownBehavior {
|
|
768
|
+
stop = "stop",
|
|
769
|
+
terminate = "terminate",
|
|
770
|
+
}
|
|
771
|
+
export declare enum MarketType {
|
|
772
|
+
spot = "spot",
|
|
773
|
+
}
|
|
774
|
+
export declare enum InstanceInterruptionBehavior {
|
|
775
|
+
hibernate = "hibernate",
|
|
776
|
+
stop = "stop",
|
|
777
|
+
terminate = "terminate",
|
|
778
|
+
}
|
|
779
|
+
export declare enum SpotInstanceType {
|
|
780
|
+
one_time = "one-time",
|
|
781
|
+
persistent = "persistent",
|
|
782
|
+
}
|
|
738
783
|
export interface LaunchTemplateSpotMarketOptionsRequest {
|
|
739
784
|
MaxPrice?: string;
|
|
740
785
|
SpotInstanceType?: SpotInstanceType | string;
|
|
@@ -756,9 +801,10 @@ export declare enum LaunchTemplateAutoRecoveryState {
|
|
|
756
801
|
export interface LaunchTemplateInstanceMaintenanceOptionsRequest {
|
|
757
802
|
AutoRecovery?: LaunchTemplateAutoRecoveryState | string;
|
|
758
803
|
}
|
|
759
|
-
export declare
|
|
760
|
-
|
|
761
|
-
|
|
804
|
+
export declare enum LaunchTemplateInstanceMetadataEndpointState {
|
|
805
|
+
disabled = "disabled",
|
|
806
|
+
enabled = "enabled",
|
|
807
|
+
}
|
|
762
808
|
export declare enum LaunchTemplateInstanceMetadataProtocolIpv6 {
|
|
763
809
|
disabled = "disabled",
|
|
764
810
|
enabled = "enabled",
|
|
@@ -969,9 +1015,10 @@ export interface LaunchTemplateLicenseConfiguration {
|
|
|
969
1015
|
export interface LaunchTemplateInstanceMaintenanceOptions {
|
|
970
1016
|
AutoRecovery?: LaunchTemplateAutoRecoveryState | string;
|
|
971
1017
|
}
|
|
972
|
-
export declare
|
|
973
|
-
|
|
974
|
-
|
|
1018
|
+
export declare enum LaunchTemplateInstanceMetadataOptionsState {
|
|
1019
|
+
applied = "applied",
|
|
1020
|
+
pending = "pending",
|
|
1021
|
+
}
|
|
975
1022
|
export interface LaunchTemplateInstanceMetadataOptions {
|
|
976
1023
|
State?: LaunchTemplateInstanceMetadataOptionsState | string;
|
|
977
1024
|
HttpTokens?: LaunchTemplateHttpTokensState | string;
|
|
@@ -1086,13 +1133,17 @@ export interface CreateLocalGatewayRouteRequest {
|
|
|
1086
1133
|
DryRun?: boolean;
|
|
1087
1134
|
NetworkInterfaceId?: string;
|
|
1088
1135
|
}
|
|
1089
|
-
export declare
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1136
|
+
export declare enum LocalGatewayRouteState {
|
|
1137
|
+
active = "active",
|
|
1138
|
+
blackhole = "blackhole",
|
|
1139
|
+
deleted = "deleted",
|
|
1140
|
+
deleting = "deleting",
|
|
1141
|
+
pending = "pending",
|
|
1142
|
+
}
|
|
1143
|
+
export declare enum LocalGatewayRouteType {
|
|
1144
|
+
propagated = "propagated",
|
|
1145
|
+
static = "static",
|
|
1146
|
+
}
|
|
1096
1147
|
export interface LocalGatewayRoute {
|
|
1097
1148
|
DestinationCidrBlock?: string;
|
|
1098
1149
|
LocalGatewayVirtualInterfaceGroupId?: string;
|
|
@@ -1183,19 +1234,20 @@ export interface CreateManagedPrefixListRequest {
|
|
|
1183
1234
|
AddressFamily: string | undefined;
|
|
1184
1235
|
ClientToken?: string;
|
|
1185
1236
|
}
|
|
1186
|
-
export declare
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1237
|
+
export declare enum PrefixListState {
|
|
1238
|
+
create_complete = "create-complete",
|
|
1239
|
+
create_failed = "create-failed",
|
|
1240
|
+
create_in_progress = "create-in-progress",
|
|
1241
|
+
delete_complete = "delete-complete",
|
|
1242
|
+
delete_failed = "delete-failed",
|
|
1243
|
+
delete_in_progress = "delete-in-progress",
|
|
1244
|
+
modify_complete = "modify-complete",
|
|
1245
|
+
modify_failed = "modify-failed",
|
|
1246
|
+
modify_in_progress = "modify-in-progress",
|
|
1247
|
+
restore_complete = "restore-complete",
|
|
1248
|
+
restore_failed = "restore-failed",
|
|
1249
|
+
restore_in_progress = "restore-in-progress",
|
|
1250
|
+
}
|
|
1199
1251
|
export interface ManagedPrefixList {
|
|
1200
1252
|
PrefixListId?: string;
|
|
1201
1253
|
AddressFamily?: string;
|
|
@@ -1275,7 +1327,10 @@ export interface IcmpTypeCode {
|
|
|
1275
1327
|
Code?: number;
|
|
1276
1328
|
Type?: number;
|
|
1277
1329
|
}
|
|
1278
|
-
export declare
|
|
1330
|
+
export declare enum RuleAction {
|
|
1331
|
+
allow = "allow",
|
|
1332
|
+
deny = "deny",
|
|
1333
|
+
}
|
|
1279
1334
|
export interface NetworkAclEntry {
|
|
1280
1335
|
CidrBlock?: string;
|
|
1281
1336
|
Egress?: boolean;
|
|
@@ -1359,7 +1414,11 @@ export interface NetworkInsightsPath {
|
|
|
1359
1414
|
export interface CreateNetworkInsightsPathResult {
|
|
1360
1415
|
NetworkInsightsPath?: NetworkInsightsPath;
|
|
1361
1416
|
}
|
|
1362
|
-
export declare
|
|
1417
|
+
export declare enum NetworkInterfaceCreationType {
|
|
1418
|
+
branch = "branch",
|
|
1419
|
+
efa = "efa",
|
|
1420
|
+
trunk = "trunk",
|
|
1421
|
+
}
|
|
1363
1422
|
export interface CreateNetworkInterfaceRequest {
|
|
1364
1423
|
Description?: string;
|
|
1365
1424
|
DryRun?: boolean;
|
|
@@ -1401,24 +1460,25 @@ export interface GroupIdentifier {
|
|
|
1401
1460
|
GroupName?: string;
|
|
1402
1461
|
GroupId?: string;
|
|
1403
1462
|
}
|
|
1404
|
-
export declare
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1463
|
+
export declare enum NetworkInterfaceType {
|
|
1464
|
+
api_gateway_managed = "api_gateway_managed",
|
|
1465
|
+
aws_codestar_connections_managed = "aws_codestar_connections_managed",
|
|
1466
|
+
branch = "branch",
|
|
1467
|
+
efa = "efa",
|
|
1468
|
+
gateway_load_balancer = "gateway_load_balancer",
|
|
1469
|
+
gateway_load_balancer_endpoint = "gateway_load_balancer_endpoint",
|
|
1470
|
+
global_accelerator_managed = "global_accelerator_managed",
|
|
1471
|
+
interface = "interface",
|
|
1472
|
+
iot_rules_managed = "iot_rules_managed",
|
|
1473
|
+
lambda = "lambda",
|
|
1474
|
+
load_balancer = "load_balancer",
|
|
1475
|
+
natGateway = "natGateway",
|
|
1476
|
+
network_load_balancer = "network_load_balancer",
|
|
1477
|
+
quicksight = "quicksight",
|
|
1478
|
+
transit_gateway = "transit_gateway",
|
|
1479
|
+
trunk = "trunk",
|
|
1480
|
+
vpc_endpoint = "vpc_endpoint",
|
|
1481
|
+
}
|
|
1422
1482
|
export interface NetworkInterfaceIpv6Address {
|
|
1423
1483
|
Ipv6Address?: string;
|
|
1424
1484
|
}
|
|
@@ -1431,12 +1491,13 @@ export interface NetworkInterfacePrivateIpAddress {
|
|
|
1431
1491
|
PrivateDnsName?: string;
|
|
1432
1492
|
PrivateIpAddress?: string;
|
|
1433
1493
|
}
|
|
1434
|
-
export declare
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1494
|
+
export declare enum NetworkInterfaceStatus {
|
|
1495
|
+
associated = "associated",
|
|
1496
|
+
attaching = "attaching",
|
|
1497
|
+
available = "available",
|
|
1498
|
+
detaching = "detaching",
|
|
1499
|
+
in_use = "in-use",
|
|
1500
|
+
}
|
|
1440
1501
|
export interface NetworkInterface {
|
|
1441
1502
|
Association?: NetworkInterfaceAssociation;
|
|
1442
1503
|
Attachment?: NetworkInterfaceAttachment;
|
|
@@ -1469,9 +1530,10 @@ export interface CreateNetworkInterfaceResult {
|
|
|
1469
1530
|
NetworkInterface?: NetworkInterface;
|
|
1470
1531
|
ClientToken?: string;
|
|
1471
1532
|
}
|
|
1472
|
-
export declare
|
|
1473
|
-
|
|
1474
|
-
|
|
1533
|
+
export declare enum InterfacePermissionType {
|
|
1534
|
+
EIP_ASSOCIATE = "EIP-ASSOCIATE",
|
|
1535
|
+
INSTANCE_ATTACH = "INSTANCE-ATTACH",
|
|
1536
|
+
}
|
|
1475
1537
|
export interface CreateNetworkInterfacePermissionRequest {
|
|
1476
1538
|
NetworkInterfaceId: string | undefined;
|
|
1477
1539
|
AwsAccountId?: string;
|
|
@@ -1479,11 +1541,12 @@ export interface CreateNetworkInterfacePermissionRequest {
|
|
|
1479
1541
|
Permission: InterfacePermissionType | string | undefined;
|
|
1480
1542
|
DryRun?: boolean;
|
|
1481
1543
|
}
|
|
1482
|
-
export declare
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1544
|
+
export declare enum NetworkInterfacePermissionStateCode {
|
|
1545
|
+
granted = "granted",
|
|
1546
|
+
pending = "pending",
|
|
1547
|
+
revoked = "revoked",
|
|
1548
|
+
revoking = "revoking",
|
|
1549
|
+
}
|
|
1487
1550
|
export interface NetworkInterfacePermissionState {
|
|
1488
1551
|
State?: NetworkInterfacePermissionStateCode | string;
|
|
1489
1552
|
StatusMessage?: string;
|
|
@@ -1503,7 +1566,11 @@ export declare enum SpreadLevel {
|
|
|
1503
1566
|
host = "host",
|
|
1504
1567
|
rack = "rack",
|
|
1505
1568
|
}
|
|
1506
|
-
export declare
|
|
1569
|
+
export declare enum PlacementStrategy {
|
|
1570
|
+
cluster = "cluster",
|
|
1571
|
+
partition = "partition",
|
|
1572
|
+
spread = "spread",
|
|
1573
|
+
}
|
|
1507
1574
|
export interface CreatePlacementGroupRequest {
|
|
1508
1575
|
DryRun?: boolean;
|
|
1509
1576
|
GroupName?: string;
|
|
@@ -1512,11 +1579,12 @@ export interface CreatePlacementGroupRequest {
|
|
|
1512
1579
|
TagSpecifications?: TagSpecification[];
|
|
1513
1580
|
SpreadLevel?: SpreadLevel | string;
|
|
1514
1581
|
}
|
|
1515
|
-
export declare
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1582
|
+
export declare enum PlacementGroupState {
|
|
1583
|
+
available = "available",
|
|
1584
|
+
deleted = "deleted",
|
|
1585
|
+
deleting = "deleting",
|
|
1586
|
+
pending = "pending",
|
|
1587
|
+
}
|
|
1520
1588
|
export interface PlacementGroup {
|
|
1521
1589
|
GroupName?: string;
|
|
1522
1590
|
State?: PlacementGroupState | string;
|
|
@@ -1624,11 +1692,15 @@ export interface RouteTableAssociation {
|
|
|
1624
1692
|
export interface PropagatingVgw {
|
|
1625
1693
|
GatewayId?: string;
|
|
1626
1694
|
}
|
|
1627
|
-
export declare
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1695
|
+
export declare enum RouteOrigin {
|
|
1696
|
+
CreateRoute = "CreateRoute",
|
|
1697
|
+
CreateRouteTable = "CreateRouteTable",
|
|
1698
|
+
EnableVgwRoutePropagation = "EnableVgwRoutePropagation",
|
|
1699
|
+
}
|
|
1700
|
+
export declare enum RouteState {
|
|
1701
|
+
active = "active",
|
|
1702
|
+
blackhole = "blackhole",
|
|
1703
|
+
}
|
|
1632
1704
|
export interface Route {
|
|
1633
1705
|
DestinationCidrBlock?: string;
|
|
1634
1706
|
DestinationIpv6CidrBlock?: string;
|
|
@@ -1677,12 +1749,13 @@ export interface CreateSnapshotRequest {
|
|
|
1677
1749
|
TagSpecifications?: TagSpecification[];
|
|
1678
1750
|
DryRun?: boolean;
|
|
1679
1751
|
}
|
|
1680
|
-
export declare
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1752
|
+
export declare enum SnapshotState {
|
|
1753
|
+
completed = "completed",
|
|
1754
|
+
error = "error",
|
|
1755
|
+
pending = "pending",
|
|
1756
|
+
recoverable = "recoverable",
|
|
1757
|
+
recovering = "recovering",
|
|
1758
|
+
}
|
|
1686
1759
|
export declare enum StorageTier {
|
|
1687
1760
|
archive = "archive",
|
|
1688
1761
|
standard = "standard",
|
|
@@ -1706,7 +1779,9 @@ export interface Snapshot {
|
|
|
1706
1779
|
StorageTier?: StorageTier | string;
|
|
1707
1780
|
RestoreExpiryTime?: Date;
|
|
1708
1781
|
}
|
|
1709
|
-
export declare
|
|
1782
|
+
export declare enum CopyTagsFromSource {
|
|
1783
|
+
volume = "volume",
|
|
1784
|
+
}
|
|
1710
1785
|
export interface InstanceSpecification {
|
|
1711
1786
|
InstanceId?: string;
|
|
1712
1787
|
ExcludeBootVolume?: boolean;
|
|
@@ -1745,7 +1820,10 @@ export interface SpotInstanceStateFault {
|
|
|
1745
1820
|
Code?: string;
|
|
1746
1821
|
Message?: string;
|
|
1747
1822
|
}
|
|
1748
|
-
export declare
|
|
1823
|
+
export declare enum DatafeedSubscriptionState {
|
|
1824
|
+
Active = "Active",
|
|
1825
|
+
Inactive = "Inactive",
|
|
1826
|
+
}
|
|
1749
1827
|
export interface SpotDatafeedSubscription {
|
|
1750
1828
|
Bucket?: string;
|
|
1751
1829
|
Fault?: SpotInstanceStateFault;
|
|
@@ -1822,8 +1900,14 @@ export interface TrafficMirrorPortRange {
|
|
|
1822
1900
|
FromPort?: number;
|
|
1823
1901
|
ToPort?: number;
|
|
1824
1902
|
}
|
|
1825
|
-
export declare
|
|
1826
|
-
|
|
1903
|
+
export declare enum TrafficMirrorRuleAction {
|
|
1904
|
+
accept = "accept",
|
|
1905
|
+
reject = "reject",
|
|
1906
|
+
}
|
|
1907
|
+
export declare enum TrafficDirection {
|
|
1908
|
+
egress = "egress",
|
|
1909
|
+
ingress = "ingress",
|
|
1910
|
+
}
|
|
1827
1911
|
export interface TrafficMirrorFilterRule {
|
|
1828
1912
|
TrafficMirrorFilterRuleId?: string;
|
|
1829
1913
|
TrafficMirrorFilterId?: string;
|
|
@@ -1837,7 +1921,9 @@ export interface TrafficMirrorFilterRule {
|
|
|
1837
1921
|
SourceCidrBlock?: string;
|
|
1838
1922
|
Description?: string;
|
|
1839
1923
|
}
|
|
1840
|
-
export declare
|
|
1924
|
+
export declare enum TrafficMirrorNetworkService {
|
|
1925
|
+
amazon_dns = "amazon-dns",
|
|
1926
|
+
}
|
|
1841
1927
|
export interface TrafficMirrorFilter {
|
|
1842
1928
|
TrafficMirrorFilterId?: string;
|
|
1843
1929
|
IngressFilterRules?: TrafficMirrorFilterRule[];
|
|
@@ -1850,28 +1936,13 @@ export interface CreateTrafficMirrorFilterResult {
|
|
|
1850
1936
|
TrafficMirrorFilter?: TrafficMirrorFilter;
|
|
1851
1937
|
ClientToken?: string;
|
|
1852
1938
|
}
|
|
1853
|
-
export
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
RuleNumber: number | undefined;
|
|
1861
|
-
RuleAction: TrafficMirrorRuleAction | string | undefined;
|
|
1862
|
-
DestinationPortRange?: TrafficMirrorPortRangeRequest;
|
|
1863
|
-
SourcePortRange?: TrafficMirrorPortRangeRequest;
|
|
1864
|
-
Protocol?: number;
|
|
1865
|
-
DestinationCidrBlock: string | undefined;
|
|
1866
|
-
SourceCidrBlock: string | undefined;
|
|
1867
|
-
Description?: string;
|
|
1868
|
-
DryRun?: boolean;
|
|
1869
|
-
ClientToken?: string;
|
|
1870
|
-
}
|
|
1871
|
-
export interface CreateTrafficMirrorFilterRuleResult {
|
|
1872
|
-
TrafficMirrorFilterRule?: TrafficMirrorFilterRule;
|
|
1873
|
-
ClientToken?: string;
|
|
1874
|
-
}
|
|
1939
|
+
export declare const AttributeValueFilterSensitiveLog: (
|
|
1940
|
+
obj: AttributeValue
|
|
1941
|
+
) => any;
|
|
1942
|
+
export declare const DhcpConfigurationFilterSensitiveLog: (
|
|
1943
|
+
obj: DhcpConfiguration
|
|
1944
|
+
) => any;
|
|
1945
|
+
export declare const DhcpOptionsFilterSensitiveLog: (obj: DhcpOptions) => any;
|
|
1875
1946
|
export declare const CreateDhcpOptionsResultFilterSensitiveLog: (
|
|
1876
1947
|
obj: CreateDhcpOptionsResult
|
|
1877
1948
|
) => any;
|
|
@@ -2521,12 +2592,3 @@ export declare const TrafficMirrorFilterFilterSensitiveLog: (
|
|
|
2521
2592
|
export declare const CreateTrafficMirrorFilterResultFilterSensitiveLog: (
|
|
2522
2593
|
obj: CreateTrafficMirrorFilterResult
|
|
2523
2594
|
) => any;
|
|
2524
|
-
export declare const TrafficMirrorPortRangeRequestFilterSensitiveLog: (
|
|
2525
|
-
obj: TrafficMirrorPortRangeRequest
|
|
2526
|
-
) => any;
|
|
2527
|
-
export declare const CreateTrafficMirrorFilterRuleRequestFilterSensitiveLog: (
|
|
2528
|
-
obj: CreateTrafficMirrorFilterRuleRequest
|
|
2529
|
-
) => any;
|
|
2530
|
-
export declare const CreateTrafficMirrorFilterRuleResultFilterSensitiveLog: (
|
|
2531
|
-
obj: CreateTrafficMirrorFilterRuleResult
|
|
2532
|
-
) => any;
|