@aws-sdk/client-ec2 3.301.0 → 3.303.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/README.md +16 -0
- package/dist-cjs/EC2.js +30 -0
- package/dist-cjs/commands/GetVpnTunnelReplacementStatusCommand.js +45 -0
- package/dist-cjs/commands/ReplaceVpnTunnelCommand.js +45 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +1126 -1192
- package/dist-cjs/models/models_1.js +397 -469
- package/dist-cjs/models/models_2.js +280 -336
- package/dist-cjs/models/models_3.js +241 -286
- package/dist-cjs/models/models_4.js +197 -235
- package/dist-cjs/models/models_5.js +77 -91
- package/dist-cjs/models/models_6.js +65 -79
- package/dist-cjs/protocols/Aws_ec2.js +180 -15
- package/dist-es/EC2.js +30 -0
- package/dist-es/commands/GetVpnTunnelReplacementStatusCommand.js +41 -0
- package/dist-es/commands/ReplaceVpnTunnelCommand.js +41 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +1126 -1192
- package/dist-es/models/models_1.js +397 -469
- package/dist-es/models/models_2.js +280 -336
- package/dist-es/models/models_3.js +241 -286
- package/dist-es/models/models_4.js +197 -235
- package/dist-es/models/models_5.js +77 -91
- package/dist-es/models/models_6.js +65 -79
- package/dist-es/protocols/Aws_ec2.js +161 -0
- package/dist-types/EC2.d.ts +16 -0
- package/dist-types/EC2Client.d.ts +4 -2
- package/dist-types/commands/CreateVpnConnectionCommand.d.ts +1 -0
- package/dist-types/commands/GetVpnTunnelReplacementStatusCommand.d.ts +65 -0
- package/dist-types/commands/ImportSnapshotCommand.d.ts +1 -1
- package/dist-types/commands/ModifyVpnTunnelOptionsCommand.d.ts +2 -0
- package/dist-types/commands/ReplaceVpnTunnelCommand.d.ts +66 -0
- package/dist-types/commands/StartInstancesCommand.d.ts +2 -1
- package/dist-types/commands/StartNetworkInsightsAccessScopeAnalysisCommand.d.ts +1 -1
- package/dist-types/commands/StartNetworkInsightsAnalysisCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +1464 -1134
- package/dist-types/models/models_1.d.ts +757 -397
- package/dist-types/models/models_2.d.ts +568 -280
- package/dist-types/models/models_3.d.ts +466 -241
- package/dist-types/models/models_4.d.ts +387 -197
- package/dist-types/models/models_5.d.ts +212 -191
- package/dist-types/models/models_6.d.ts +290 -159
- package/dist-types/models/models_7.d.ts +95 -3
- package/dist-types/protocols/Aws_ec2.d.ts +6 -0
- package/dist-types/ts3.4/EC2.d.ts +34 -0
- package/dist-types/ts3.4/EC2Client.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetVpnTunnelReplacementStatusCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ImportSnapshotCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ReplaceVpnTunnelCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/StartInstancesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/StartNetworkInsightsAccessScopeAnalysisCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartNetworkInsightsAnalysisCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1244 -1126
- package/dist-types/ts3.4/models/models_1.d.ts +523 -397
- package/dist-types/ts3.4/models/models_2.d.ts +381 -280
- package/dist-types/ts3.4/models/models_3.d.ts +324 -241
- package/dist-types/ts3.4/models/models_4.d.ts +261 -197
- package/dist-types/ts3.4/models/models_5.d.ts +123 -101
- package/dist-types/ts3.4/models/models_6.d.ts +126 -91
- package/dist-types/ts3.4/models/models_7.d.ts +37 -3
- package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +24 -0
- package/package.json +36 -36
|
@@ -298,24 +298,28 @@ export interface DeprovisionIpamPoolCidrRequest {
|
|
|
298
298
|
IpamPoolId: string | undefined;
|
|
299
299
|
Cidr?: string;
|
|
300
300
|
}
|
|
301
|
-
export declare
|
|
302
|
-
cidr_not_available
|
|
303
|
-
limit_exceeded
|
|
304
|
-
}
|
|
301
|
+
export declare const IpamPoolCidrFailureCode: {
|
|
302
|
+
readonly cidr_not_available: "cidr-not-available";
|
|
303
|
+
readonly limit_exceeded: "limit-exceeded";
|
|
304
|
+
};
|
|
305
|
+
export type IpamPoolCidrFailureCode =
|
|
306
|
+
(typeof IpamPoolCidrFailureCode)[keyof typeof IpamPoolCidrFailureCode];
|
|
305
307
|
export interface IpamPoolCidrFailureReason {
|
|
306
308
|
Code?: IpamPoolCidrFailureCode | string;
|
|
307
309
|
Message?: string;
|
|
308
310
|
}
|
|
309
|
-
export declare
|
|
310
|
-
deprovisioned
|
|
311
|
-
failed_deprovision
|
|
312
|
-
failed_import
|
|
313
|
-
failed_provision
|
|
314
|
-
pending_deprovision
|
|
315
|
-
pending_import
|
|
316
|
-
pending_provision
|
|
317
|
-
provisioned
|
|
318
|
-
}
|
|
311
|
+
export declare const IpamPoolCidrState: {
|
|
312
|
+
readonly deprovisioned: "deprovisioned";
|
|
313
|
+
readonly failed_deprovision: "failed-deprovision";
|
|
314
|
+
readonly failed_import: "failed-import";
|
|
315
|
+
readonly failed_provision: "failed-provision";
|
|
316
|
+
readonly pending_deprovision: "pending-deprovision";
|
|
317
|
+
readonly pending_import: "pending-import";
|
|
318
|
+
readonly pending_provision: "pending-provision";
|
|
319
|
+
readonly provisioned: "provisioned";
|
|
320
|
+
};
|
|
321
|
+
export type IpamPoolCidrState =
|
|
322
|
+
(typeof IpamPoolCidrState)[keyof typeof IpamPoolCidrState];
|
|
319
323
|
export interface IpamPoolCidr {
|
|
320
324
|
Cidr?: string;
|
|
321
325
|
State?: IpamPoolCidrState | string;
|
|
@@ -445,17 +449,21 @@ export interface DescribeAvailabilityZonesRequest {
|
|
|
445
449
|
export interface AvailabilityZoneMessage {
|
|
446
450
|
Message?: string;
|
|
447
451
|
}
|
|
448
|
-
export declare
|
|
449
|
-
not_opted_in
|
|
450
|
-
opt_in_not_required
|
|
451
|
-
opted_in
|
|
452
|
-
}
|
|
453
|
-
export
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
452
|
+
export declare const AvailabilityZoneOptInStatus: {
|
|
453
|
+
readonly not_opted_in: "not-opted-in";
|
|
454
|
+
readonly opt_in_not_required: "opt-in-not-required";
|
|
455
|
+
readonly opted_in: "opted-in";
|
|
456
|
+
};
|
|
457
|
+
export type AvailabilityZoneOptInStatus =
|
|
458
|
+
(typeof AvailabilityZoneOptInStatus)[keyof typeof AvailabilityZoneOptInStatus];
|
|
459
|
+
export declare const AvailabilityZoneState: {
|
|
460
|
+
readonly available: "available";
|
|
461
|
+
readonly impaired: "impaired";
|
|
462
|
+
readonly information: "information";
|
|
463
|
+
readonly unavailable: "unavailable";
|
|
464
|
+
};
|
|
465
|
+
export type AvailabilityZoneState =
|
|
466
|
+
(typeof AvailabilityZoneState)[keyof typeof AvailabilityZoneState];
|
|
459
467
|
export interface AvailabilityZone {
|
|
460
468
|
State?: AvailabilityZoneState | string;
|
|
461
469
|
OptInStatus?: AvailabilityZoneOptInStatus | string;
|
|
@@ -478,20 +486,23 @@ export interface DescribeAwsNetworkPerformanceMetricSubscriptionsRequest {
|
|
|
478
486
|
Filters?: Filter[];
|
|
479
487
|
DryRun?: boolean;
|
|
480
488
|
}
|
|
481
|
-
export declare
|
|
482
|
-
aggregate_latency
|
|
483
|
-
}
|
|
484
|
-
export
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
489
|
+
export declare const MetricType: {
|
|
490
|
+
readonly aggregate_latency: "aggregate-latency";
|
|
491
|
+
};
|
|
492
|
+
export type MetricType = (typeof MetricType)[keyof typeof MetricType];
|
|
493
|
+
export declare const PeriodType: {
|
|
494
|
+
readonly fifteen_minutes: "fifteen-minutes";
|
|
495
|
+
readonly five_minutes: "five-minutes";
|
|
496
|
+
readonly one_day: "one-day";
|
|
497
|
+
readonly one_hour: "one-hour";
|
|
498
|
+
readonly one_week: "one-week";
|
|
499
|
+
readonly three_hours: "three-hours";
|
|
500
|
+
};
|
|
501
|
+
export type PeriodType = (typeof PeriodType)[keyof typeof PeriodType];
|
|
502
|
+
export declare const StatisticType: {
|
|
503
|
+
readonly p50: "p50";
|
|
504
|
+
};
|
|
505
|
+
export type StatisticType = (typeof StatisticType)[keyof typeof StatisticType];
|
|
495
506
|
export interface Subscription {
|
|
496
507
|
Source?: string;
|
|
497
508
|
Destination?: string;
|
|
@@ -610,12 +621,14 @@ export interface DescribeClientVpnConnectionsRequest {
|
|
|
610
621
|
MaxResults?: number;
|
|
611
622
|
DryRun?: boolean;
|
|
612
623
|
}
|
|
613
|
-
export declare
|
|
614
|
-
active
|
|
615
|
-
failed_to_terminate
|
|
616
|
-
terminated
|
|
617
|
-
terminating
|
|
618
|
-
}
|
|
624
|
+
export declare const ClientVpnConnectionStatusCode: {
|
|
625
|
+
readonly active: "active";
|
|
626
|
+
readonly failed_to_terminate: "failed-to-terminate";
|
|
627
|
+
readonly terminated: "terminated";
|
|
628
|
+
readonly terminating: "terminating";
|
|
629
|
+
};
|
|
630
|
+
export type ClientVpnConnectionStatusCode =
|
|
631
|
+
(typeof ClientVpnConnectionStatusCode)[keyof typeof ClientVpnConnectionStatusCode];
|
|
619
632
|
export interface ClientVpnConnectionStatus {
|
|
620
633
|
Code?: ClientVpnConnectionStatusCode | string;
|
|
621
634
|
Message?: string;
|
|
@@ -647,9 +660,11 @@ export interface DescribeClientVpnEndpointsRequest {
|
|
|
647
660
|
Filters?: Filter[];
|
|
648
661
|
DryRun?: boolean;
|
|
649
662
|
}
|
|
650
|
-
export declare
|
|
651
|
-
vpc
|
|
652
|
-
}
|
|
663
|
+
export declare const AssociatedNetworkType: {
|
|
664
|
+
readonly vpc: "vpc";
|
|
665
|
+
};
|
|
666
|
+
export type AssociatedNetworkType =
|
|
667
|
+
(typeof AssociatedNetworkType)[keyof typeof AssociatedNetworkType];
|
|
653
668
|
export interface AssociatedTargetNetwork {
|
|
654
669
|
NetworkId?: string;
|
|
655
670
|
NetworkType?: AssociatedNetworkType | string;
|
|
@@ -670,10 +685,12 @@ export interface ClientVpnAuthentication {
|
|
|
670
685
|
MutualAuthentication?: CertificateAuthentication;
|
|
671
686
|
FederatedAuthentication?: FederatedAuthentication;
|
|
672
687
|
}
|
|
673
|
-
export declare
|
|
674
|
-
applied
|
|
675
|
-
applying
|
|
676
|
-
}
|
|
688
|
+
export declare const ClientVpnEndpointAttributeStatusCode: {
|
|
689
|
+
readonly applied: "applied";
|
|
690
|
+
readonly applying: "applying";
|
|
691
|
+
};
|
|
692
|
+
export type ClientVpnEndpointAttributeStatusCode =
|
|
693
|
+
(typeof ClientVpnEndpointAttributeStatusCode)[keyof typeof ClientVpnEndpointAttributeStatusCode];
|
|
677
694
|
export interface ClientVpnEndpointAttributeStatus {
|
|
678
695
|
Code?: ClientVpnEndpointAttributeStatusCode | string;
|
|
679
696
|
Message?: string;
|
|
@@ -692,9 +709,10 @@ export interface ConnectionLogResponseOptions {
|
|
|
692
709
|
CloudwatchLogGroup?: string;
|
|
693
710
|
CloudwatchLogStream?: string;
|
|
694
711
|
}
|
|
695
|
-
export declare
|
|
696
|
-
openvpn
|
|
697
|
-
}
|
|
712
|
+
export declare const VpnProtocol: {
|
|
713
|
+
readonly openvpn: "openvpn";
|
|
714
|
+
};
|
|
715
|
+
export type VpnProtocol = (typeof VpnProtocol)[keyof typeof VpnProtocol];
|
|
698
716
|
export interface ClientVpnEndpoint {
|
|
699
717
|
ClientVpnEndpointId?: string;
|
|
700
718
|
Description?: string;
|
|
@@ -811,12 +829,14 @@ export interface ImportVolumeTaskDetails {
|
|
|
811
829
|
Image?: DiskImageDescription;
|
|
812
830
|
Volume?: DiskImageVolumeDescription;
|
|
813
831
|
}
|
|
814
|
-
export declare
|
|
815
|
-
active
|
|
816
|
-
cancelled
|
|
817
|
-
cancelling
|
|
818
|
-
completed
|
|
819
|
-
}
|
|
832
|
+
export declare const ConversionTaskState: {
|
|
833
|
+
readonly active: "active";
|
|
834
|
+
readonly cancelled: "cancelled";
|
|
835
|
+
readonly cancelling: "cancelling";
|
|
836
|
+
readonly completed: "completed";
|
|
837
|
+
};
|
|
838
|
+
export type ConversionTaskState =
|
|
839
|
+
(typeof ConversionTaskState)[keyof typeof ConversionTaskState];
|
|
820
840
|
export interface ConversionTask {
|
|
821
841
|
ConversionTaskId?: string;
|
|
822
842
|
ExpirationTime?: string;
|
|
@@ -866,16 +886,20 @@ export interface DescribeElasticGpusRequest {
|
|
|
866
886
|
MaxResults?: number;
|
|
867
887
|
NextToken?: string;
|
|
868
888
|
}
|
|
869
|
-
export declare
|
|
870
|
-
Impaired
|
|
871
|
-
Ok
|
|
872
|
-
}
|
|
889
|
+
export declare const ElasticGpuStatus: {
|
|
890
|
+
readonly Impaired: "IMPAIRED";
|
|
891
|
+
readonly Ok: "OK";
|
|
892
|
+
};
|
|
893
|
+
export type ElasticGpuStatus =
|
|
894
|
+
(typeof ElasticGpuStatus)[keyof typeof ElasticGpuStatus];
|
|
873
895
|
export interface ElasticGpuHealth {
|
|
874
896
|
Status?: ElasticGpuStatus | string;
|
|
875
897
|
}
|
|
876
|
-
export declare
|
|
877
|
-
Attached
|
|
878
|
-
}
|
|
898
|
+
export declare const ElasticGpuState: {
|
|
899
|
+
readonly Attached: "ATTACHED";
|
|
900
|
+
};
|
|
901
|
+
export type ElasticGpuState =
|
|
902
|
+
(typeof ElasticGpuState)[keyof typeof ElasticGpuState];
|
|
879
903
|
export interface ElasticGpus {
|
|
880
904
|
ElasticGpuId?: string;
|
|
881
905
|
AvailabilityZone?: string;
|
|
@@ -934,20 +958,24 @@ export interface FastLaunchLaunchTemplateSpecificationResponse {
|
|
|
934
958
|
LaunchTemplateName?: string;
|
|
935
959
|
Version?: string;
|
|
936
960
|
}
|
|
937
|
-
export declare
|
|
938
|
-
SNAPSHOT
|
|
939
|
-
}
|
|
961
|
+
export declare const FastLaunchResourceType: {
|
|
962
|
+
readonly SNAPSHOT: "snapshot";
|
|
963
|
+
};
|
|
964
|
+
export type FastLaunchResourceType =
|
|
965
|
+
(typeof FastLaunchResourceType)[keyof typeof FastLaunchResourceType];
|
|
940
966
|
export interface FastLaunchSnapshotConfigurationResponse {
|
|
941
967
|
TargetResourceCount?: number;
|
|
942
968
|
}
|
|
943
|
-
export declare
|
|
944
|
-
disabling
|
|
945
|
-
disabling_failed
|
|
946
|
-
enabled
|
|
947
|
-
enabled_failed
|
|
948
|
-
enabling
|
|
949
|
-
enabling_failed
|
|
950
|
-
}
|
|
969
|
+
export declare const FastLaunchStateCode: {
|
|
970
|
+
readonly disabling: "disabling";
|
|
971
|
+
readonly disabling_failed: "disabling-failed";
|
|
972
|
+
readonly enabled: "enabled";
|
|
973
|
+
readonly enabled_failed: "enabled-failed";
|
|
974
|
+
readonly enabling: "enabling";
|
|
975
|
+
readonly enabling_failed: "enabling-failed";
|
|
976
|
+
};
|
|
977
|
+
export type FastLaunchStateCode =
|
|
978
|
+
(typeof FastLaunchStateCode)[keyof typeof FastLaunchStateCode];
|
|
951
979
|
export interface DescribeFastLaunchImagesSuccessItem {
|
|
952
980
|
ImageId?: string;
|
|
953
981
|
ResourceType?: FastLaunchResourceType | string;
|
|
@@ -969,13 +997,15 @@ export interface DescribeFastSnapshotRestoresRequest {
|
|
|
969
997
|
NextToken?: string;
|
|
970
998
|
DryRun?: boolean;
|
|
971
999
|
}
|
|
972
|
-
export declare
|
|
973
|
-
disabled
|
|
974
|
-
disabling
|
|
975
|
-
enabled
|
|
976
|
-
enabling
|
|
977
|
-
optimizing
|
|
978
|
-
}
|
|
1000
|
+
export declare const FastSnapshotRestoreStateCode: {
|
|
1001
|
+
readonly disabled: "disabled";
|
|
1002
|
+
readonly disabling: "disabling";
|
|
1003
|
+
readonly enabled: "enabled";
|
|
1004
|
+
readonly enabling: "enabling";
|
|
1005
|
+
readonly optimizing: "optimizing";
|
|
1006
|
+
};
|
|
1007
|
+
export type FastSnapshotRestoreStateCode =
|
|
1008
|
+
(typeof FastSnapshotRestoreStateCode)[keyof typeof FastSnapshotRestoreStateCode];
|
|
979
1009
|
export interface DescribeFastSnapshotRestoreSuccessItem {
|
|
980
1010
|
SnapshotId?: string;
|
|
981
1011
|
AvailabilityZone?: string;
|
|
@@ -993,11 +1023,13 @@ export interface DescribeFastSnapshotRestoresResult {
|
|
|
993
1023
|
FastSnapshotRestores?: DescribeFastSnapshotRestoreSuccessItem[];
|
|
994
1024
|
NextToken?: string;
|
|
995
1025
|
}
|
|
996
|
-
export declare
|
|
997
|
-
FLEET_CHANGE
|
|
998
|
-
INSTANCE_CHANGE
|
|
999
|
-
SERVICE_ERROR
|
|
1000
|
-
}
|
|
1026
|
+
export declare const FleetEventType: {
|
|
1027
|
+
readonly FLEET_CHANGE: "fleet-change";
|
|
1028
|
+
readonly INSTANCE_CHANGE: "instance-change";
|
|
1029
|
+
readonly SERVICE_ERROR: "service-error";
|
|
1030
|
+
};
|
|
1031
|
+
export type FleetEventType =
|
|
1032
|
+
(typeof FleetEventType)[keyof typeof FleetEventType];
|
|
1001
1033
|
export interface DescribeFleetHistoryRequest {
|
|
1002
1034
|
DryRun?: boolean;
|
|
1003
1035
|
EventType?: FleetEventType | string;
|
|
@@ -1042,12 +1074,14 @@ export interface DescribeFleetsRequest {
|
|
|
1042
1074
|
FleetIds?: string[];
|
|
1043
1075
|
Filters?: Filter[];
|
|
1044
1076
|
}
|
|
1045
|
-
export declare
|
|
1046
|
-
ERROR
|
|
1047
|
-
FULFILLED
|
|
1048
|
-
PENDING_FULFILLMENT
|
|
1049
|
-
PENDING_TERMINATION
|
|
1050
|
-
}
|
|
1077
|
+
export declare const FleetActivityStatus: {
|
|
1078
|
+
readonly ERROR: "error";
|
|
1079
|
+
readonly FULFILLED: "fulfilled";
|
|
1080
|
+
readonly PENDING_FULFILLMENT: "pending_fulfillment";
|
|
1081
|
+
readonly PENDING_TERMINATION: "pending_termination";
|
|
1082
|
+
};
|
|
1083
|
+
export type FleetActivityStatus =
|
|
1084
|
+
(typeof FleetActivityStatus)[keyof typeof FleetActivityStatus];
|
|
1051
1085
|
export interface DescribeFleetError {
|
|
1052
1086
|
LaunchTemplateAndOverrides?: LaunchTemplateAndOverridesResponse;
|
|
1053
1087
|
Lifecycle?: InstanceLifecycle | string;
|
|
@@ -1163,28 +1197,34 @@ export interface DescribeFlowLogsResult {
|
|
|
1163
1197
|
FlowLogs?: FlowLog[];
|
|
1164
1198
|
NextToken?: string;
|
|
1165
1199
|
}
|
|
1166
|
-
export declare
|
|
1167
|
-
description
|
|
1168
|
-
loadPermission
|
|
1169
|
-
name
|
|
1170
|
-
productCodes
|
|
1171
|
-
}
|
|
1200
|
+
export declare const FpgaImageAttributeName: {
|
|
1201
|
+
readonly description: "description";
|
|
1202
|
+
readonly loadPermission: "loadPermission";
|
|
1203
|
+
readonly name: "name";
|
|
1204
|
+
readonly productCodes: "productCodes";
|
|
1205
|
+
};
|
|
1206
|
+
export type FpgaImageAttributeName =
|
|
1207
|
+
(typeof FpgaImageAttributeName)[keyof typeof FpgaImageAttributeName];
|
|
1172
1208
|
export interface DescribeFpgaImageAttributeRequest {
|
|
1173
1209
|
DryRun?: boolean;
|
|
1174
1210
|
FpgaImageId: string | undefined;
|
|
1175
1211
|
Attribute: FpgaImageAttributeName | string | undefined;
|
|
1176
1212
|
}
|
|
1177
|
-
export declare
|
|
1178
|
-
all
|
|
1179
|
-
}
|
|
1213
|
+
export declare const PermissionGroup: {
|
|
1214
|
+
readonly all: "all";
|
|
1215
|
+
};
|
|
1216
|
+
export type PermissionGroup =
|
|
1217
|
+
(typeof PermissionGroup)[keyof typeof PermissionGroup];
|
|
1180
1218
|
export interface LoadPermission {
|
|
1181
1219
|
UserId?: string;
|
|
1182
1220
|
Group?: PermissionGroup | string;
|
|
1183
1221
|
}
|
|
1184
|
-
export declare
|
|
1185
|
-
devpay
|
|
1186
|
-
marketplace
|
|
1187
|
-
}
|
|
1222
|
+
export declare const ProductCodeValues: {
|
|
1223
|
+
readonly devpay: "devpay";
|
|
1224
|
+
readonly marketplace: "marketplace";
|
|
1225
|
+
};
|
|
1226
|
+
export type ProductCodeValues =
|
|
1227
|
+
(typeof ProductCodeValues)[keyof typeof ProductCodeValues];
|
|
1188
1228
|
export interface ProductCode {
|
|
1189
1229
|
ProductCodeId?: string;
|
|
1190
1230
|
ProductCodeType?: ProductCodeValues | string;
|
|
@@ -1213,12 +1253,14 @@ export interface PciId {
|
|
|
1213
1253
|
SubsystemId?: string;
|
|
1214
1254
|
SubsystemVendorId?: string;
|
|
1215
1255
|
}
|
|
1216
|
-
export declare
|
|
1217
|
-
available
|
|
1218
|
-
failed
|
|
1219
|
-
pending
|
|
1220
|
-
unavailable
|
|
1221
|
-
}
|
|
1256
|
+
export declare const FpgaImageStateCode: {
|
|
1257
|
+
readonly available: "available";
|
|
1258
|
+
readonly failed: "failed";
|
|
1259
|
+
readonly pending: "pending";
|
|
1260
|
+
readonly unavailable: "unavailable";
|
|
1261
|
+
};
|
|
1262
|
+
export type FpgaImageStateCode =
|
|
1263
|
+
(typeof FpgaImageStateCode)[keyof typeof FpgaImageStateCode];
|
|
1222
1264
|
export interface FpgaImageState {
|
|
1223
1265
|
Code?: FpgaImageStateCode | string;
|
|
1224
1266
|
Message?: string;
|
|
@@ -1253,11 +1295,12 @@ export interface DescribeHostReservationOfferingsRequest {
|
|
|
1253
1295
|
NextToken?: string;
|
|
1254
1296
|
OfferingId?: string;
|
|
1255
1297
|
}
|
|
1256
|
-
export declare
|
|
1257
|
-
ALL_UPFRONT
|
|
1258
|
-
NO_UPFRONT
|
|
1259
|
-
PARTIAL_UPFRONT
|
|
1260
|
-
}
|
|
1298
|
+
export declare const PaymentOption: {
|
|
1299
|
+
readonly ALL_UPFRONT: "AllUpfront";
|
|
1300
|
+
readonly NO_UPFRONT: "NoUpfront";
|
|
1301
|
+
readonly PARTIAL_UPFRONT: "PartialUpfront";
|
|
1302
|
+
};
|
|
1303
|
+
export type PaymentOption = (typeof PaymentOption)[keyof typeof PaymentOption];
|
|
1261
1304
|
export interface HostOffering {
|
|
1262
1305
|
CurrencyCode?: CurrencyCodeValues | string;
|
|
1263
1306
|
Duration?: number;
|
|
@@ -1277,12 +1320,14 @@ export interface DescribeHostReservationsRequest {
|
|
|
1277
1320
|
MaxResults?: number;
|
|
1278
1321
|
NextToken?: string;
|
|
1279
1322
|
}
|
|
1280
|
-
export declare
|
|
1281
|
-
ACTIVE
|
|
1282
|
-
PAYMENT_FAILED
|
|
1283
|
-
PAYMENT_PENDING
|
|
1284
|
-
RETIRED
|
|
1285
|
-
}
|
|
1323
|
+
export declare const ReservationState: {
|
|
1324
|
+
readonly ACTIVE: "active";
|
|
1325
|
+
readonly PAYMENT_FAILED: "payment-failed";
|
|
1326
|
+
readonly PAYMENT_PENDING: "payment-pending";
|
|
1327
|
+
readonly RETIRED: "retired";
|
|
1328
|
+
};
|
|
1329
|
+
export type ReservationState =
|
|
1330
|
+
(typeof ReservationState)[keyof typeof ReservationState];
|
|
1286
1331
|
export interface HostReservation {
|
|
1287
1332
|
Count?: number;
|
|
1288
1333
|
CurrencyCode?: CurrencyCodeValues | string;
|
|
@@ -1378,20 +1423,22 @@ export interface DescribeIdFormatRequest {
|
|
|
1378
1423
|
export interface DescribeIdFormatResult {
|
|
1379
1424
|
Statuses?: IdFormat[];
|
|
1380
1425
|
}
|
|
1381
|
-
export declare
|
|
1382
|
-
blockDeviceMapping
|
|
1383
|
-
bootMode
|
|
1384
|
-
description
|
|
1385
|
-
imdsSupport
|
|
1386
|
-
kernel
|
|
1387
|
-
lastLaunchedTime
|
|
1388
|
-
launchPermission
|
|
1389
|
-
productCodes
|
|
1390
|
-
ramdisk
|
|
1391
|
-
sriovNetSupport
|
|
1392
|
-
tpmSupport
|
|
1393
|
-
uefiData
|
|
1394
|
-
}
|
|
1426
|
+
export declare const ImageAttributeName: {
|
|
1427
|
+
readonly blockDeviceMapping: "blockDeviceMapping";
|
|
1428
|
+
readonly bootMode: "bootMode";
|
|
1429
|
+
readonly description: "description";
|
|
1430
|
+
readonly imdsSupport: "imdsSupport";
|
|
1431
|
+
readonly kernel: "kernel";
|
|
1432
|
+
readonly lastLaunchedTime: "lastLaunchedTime";
|
|
1433
|
+
readonly launchPermission: "launchPermission";
|
|
1434
|
+
readonly productCodes: "productCodes";
|
|
1435
|
+
readonly ramdisk: "ramdisk";
|
|
1436
|
+
readonly sriovNetSupport: "sriovNetSupport";
|
|
1437
|
+
readonly tpmSupport: "tpmSupport";
|
|
1438
|
+
readonly uefiData: "uefiData";
|
|
1439
|
+
};
|
|
1440
|
+
export type ImageAttributeName =
|
|
1441
|
+
(typeof ImageAttributeName)[keyof typeof ImageAttributeName];
|
|
1395
1442
|
export interface DescribeImageAttributeRequest {
|
|
1396
1443
|
Attribute: ImageAttributeName | string | undefined;
|
|
1397
1444
|
ImageId: string | undefined;
|
|
@@ -1428,50 +1475,66 @@ export interface DescribeImagesRequest {
|
|
|
1428
1475
|
MaxResults?: number;
|
|
1429
1476
|
NextToken?: string;
|
|
1430
1477
|
}
|
|
1431
|
-
export declare
|
|
1432
|
-
arm64
|
|
1433
|
-
arm64_mac
|
|
1434
|
-
i386
|
|
1435
|
-
x86_64
|
|
1436
|
-
x86_64_mac
|
|
1437
|
-
}
|
|
1438
|
-
export
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
export declare
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1478
|
+
export declare const ArchitectureValues: {
|
|
1479
|
+
readonly arm64: "arm64";
|
|
1480
|
+
readonly arm64_mac: "arm64_mac";
|
|
1481
|
+
readonly i386: "i386";
|
|
1482
|
+
readonly x86_64: "x86_64";
|
|
1483
|
+
readonly x86_64_mac: "x86_64_mac";
|
|
1484
|
+
};
|
|
1485
|
+
export type ArchitectureValues =
|
|
1486
|
+
(typeof ArchitectureValues)[keyof typeof ArchitectureValues];
|
|
1487
|
+
export declare const BootModeValues: {
|
|
1488
|
+
readonly legacy_bios: "legacy-bios";
|
|
1489
|
+
readonly uefi: "uefi";
|
|
1490
|
+
readonly uefi_preferred: "uefi-preferred";
|
|
1491
|
+
};
|
|
1492
|
+
export type BootModeValues =
|
|
1493
|
+
(typeof BootModeValues)[keyof typeof BootModeValues];
|
|
1494
|
+
export declare const HypervisorType: {
|
|
1495
|
+
readonly ovm: "ovm";
|
|
1496
|
+
readonly xen: "xen";
|
|
1497
|
+
};
|
|
1498
|
+
export type HypervisorType =
|
|
1499
|
+
(typeof HypervisorType)[keyof typeof HypervisorType];
|
|
1500
|
+
export declare const ImageTypeValues: {
|
|
1501
|
+
readonly kernel: "kernel";
|
|
1502
|
+
readonly machine: "machine";
|
|
1503
|
+
readonly ramdisk: "ramdisk";
|
|
1504
|
+
};
|
|
1505
|
+
export type ImageTypeValues =
|
|
1506
|
+
(typeof ImageTypeValues)[keyof typeof ImageTypeValues];
|
|
1507
|
+
export declare const ImdsSupportValues: {
|
|
1508
|
+
readonly v2_0: "v2.0";
|
|
1509
|
+
};
|
|
1510
|
+
export type ImdsSupportValues =
|
|
1511
|
+
(typeof ImdsSupportValues)[keyof typeof ImdsSupportValues];
|
|
1512
|
+
export declare const DeviceType: {
|
|
1513
|
+
readonly ebs: "ebs";
|
|
1514
|
+
readonly instance_store: "instance-store";
|
|
1515
|
+
};
|
|
1516
|
+
export type DeviceType = (typeof DeviceType)[keyof typeof DeviceType];
|
|
1517
|
+
export declare const ImageState: {
|
|
1518
|
+
readonly available: "available";
|
|
1519
|
+
readonly deregistered: "deregistered";
|
|
1520
|
+
readonly error: "error";
|
|
1521
|
+
readonly failed: "failed";
|
|
1522
|
+
readonly invalid: "invalid";
|
|
1523
|
+
readonly pending: "pending";
|
|
1524
|
+
readonly transient: "transient";
|
|
1525
|
+
};
|
|
1526
|
+
export type ImageState = (typeof ImageState)[keyof typeof ImageState];
|
|
1527
|
+
export declare const TpmSupportValues: {
|
|
1528
|
+
readonly v2_0: "v2.0";
|
|
1529
|
+
};
|
|
1530
|
+
export type TpmSupportValues =
|
|
1531
|
+
(typeof TpmSupportValues)[keyof typeof TpmSupportValues];
|
|
1532
|
+
export declare const VirtualizationType: {
|
|
1533
|
+
readonly hvm: "hvm";
|
|
1534
|
+
readonly paravirtual: "paravirtual";
|
|
1535
|
+
};
|
|
1536
|
+
export type VirtualizationType =
|
|
1537
|
+
(typeof VirtualizationType)[keyof typeof VirtualizationType];
|
|
1475
1538
|
export interface Image {
|
|
1476
1539
|
Architecture?: ArchitectureValues | string;
|
|
1477
1540
|
CreationDate?: string;
|
|
@@ -1587,24 +1650,26 @@ export interface DescribeImportSnapshotTasksResult {
|
|
|
1587
1650
|
ImportSnapshotTasks?: ImportSnapshotTask[];
|
|
1588
1651
|
NextToken?: string;
|
|
1589
1652
|
}
|
|
1590
|
-
export declare
|
|
1591
|
-
blockDeviceMapping
|
|
1592
|
-
disableApiStop
|
|
1593
|
-
disableApiTermination
|
|
1594
|
-
ebsOptimized
|
|
1595
|
-
enaSupport
|
|
1596
|
-
enclaveOptions
|
|
1597
|
-
groupSet
|
|
1598
|
-
instanceInitiatedShutdownBehavior
|
|
1599
|
-
instanceType
|
|
1600
|
-
kernel
|
|
1601
|
-
productCodes
|
|
1602
|
-
ramdisk
|
|
1603
|
-
rootDeviceName
|
|
1604
|
-
sourceDestCheck
|
|
1605
|
-
sriovNetSupport
|
|
1606
|
-
userData
|
|
1607
|
-
}
|
|
1653
|
+
export declare const InstanceAttributeName: {
|
|
1654
|
+
readonly blockDeviceMapping: "blockDeviceMapping";
|
|
1655
|
+
readonly disableApiStop: "disableApiStop";
|
|
1656
|
+
readonly disableApiTermination: "disableApiTermination";
|
|
1657
|
+
readonly ebsOptimized: "ebsOptimized";
|
|
1658
|
+
readonly enaSupport: "enaSupport";
|
|
1659
|
+
readonly enclaveOptions: "enclaveOptions";
|
|
1660
|
+
readonly groupSet: "groupSet";
|
|
1661
|
+
readonly instanceInitiatedShutdownBehavior: "instanceInitiatedShutdownBehavior";
|
|
1662
|
+
readonly instanceType: "instanceType";
|
|
1663
|
+
readonly kernel: "kernel";
|
|
1664
|
+
readonly productCodes: "productCodes";
|
|
1665
|
+
readonly ramdisk: "ramdisk";
|
|
1666
|
+
readonly rootDeviceName: "rootDeviceName";
|
|
1667
|
+
readonly sourceDestCheck: "sourceDestCheck";
|
|
1668
|
+
readonly sriovNetSupport: "sriovNetSupport";
|
|
1669
|
+
readonly userData: "userData";
|
|
1670
|
+
};
|
|
1671
|
+
export type InstanceAttributeName =
|
|
1672
|
+
(typeof InstanceAttributeName)[keyof typeof InstanceAttributeName];
|
|
1608
1673
|
export interface DescribeInstanceAttributeRequest {
|
|
1609
1674
|
Attribute: InstanceAttributeName | string | undefined;
|
|
1610
1675
|
DryRun?: boolean;
|
|
@@ -1692,10 +1757,12 @@ export interface CpuOptions {
|
|
|
1692
1757
|
CoreCount?: number;
|
|
1693
1758
|
ThreadsPerCore?: number;
|
|
1694
1759
|
}
|
|
1695
|
-
export declare
|
|
1696
|
-
legacy_bios
|
|
1697
|
-
uefi
|
|
1698
|
-
}
|
|
1760
|
+
export declare const InstanceBootModeValues: {
|
|
1761
|
+
readonly legacy_bios: "legacy-bios";
|
|
1762
|
+
readonly uefi: "uefi";
|
|
1763
|
+
};
|
|
1764
|
+
export type InstanceBootModeValues =
|
|
1765
|
+
(typeof InstanceBootModeValues)[keyof typeof InstanceBootModeValues];
|
|
1699
1766
|
export interface ElasticGpuAssociation {
|
|
1700
1767
|
ElasticGpuId?: string;
|
|
1701
1768
|
ElasticGpuAssociationId?: string;
|
|
@@ -1711,40 +1778,54 @@ export interface ElasticInferenceAcceleratorAssociation {
|
|
|
1711
1778
|
export interface HibernationOptions {
|
|
1712
1779
|
Configured?: boolean;
|
|
1713
1780
|
}
|
|
1714
|
-
export declare
|
|
1715
|
-
scheduled
|
|
1716
|
-
spot
|
|
1717
|
-
}
|
|
1781
|
+
export declare const InstanceLifecycleType: {
|
|
1782
|
+
readonly scheduled: "scheduled";
|
|
1783
|
+
readonly spot: "spot";
|
|
1784
|
+
};
|
|
1785
|
+
export type InstanceLifecycleType =
|
|
1786
|
+
(typeof InstanceLifecycleType)[keyof typeof InstanceLifecycleType];
|
|
1718
1787
|
export interface LicenseConfiguration {
|
|
1719
1788
|
LicenseConfigurationArn?: string;
|
|
1720
1789
|
}
|
|
1721
|
-
export declare
|
|
1722
|
-
default
|
|
1723
|
-
disabled
|
|
1724
|
-
}
|
|
1790
|
+
export declare const InstanceAutoRecoveryState: {
|
|
1791
|
+
readonly default: "default";
|
|
1792
|
+
readonly disabled: "disabled";
|
|
1793
|
+
};
|
|
1794
|
+
export type InstanceAutoRecoveryState =
|
|
1795
|
+
(typeof InstanceAutoRecoveryState)[keyof typeof InstanceAutoRecoveryState];
|
|
1725
1796
|
export interface InstanceMaintenanceOptions {
|
|
1726
1797
|
AutoRecovery?: InstanceAutoRecoveryState | string;
|
|
1727
1798
|
}
|
|
1728
|
-
export declare
|
|
1729
|
-
disabled
|
|
1730
|
-
enabled
|
|
1731
|
-
}
|
|
1732
|
-
export
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
export declare
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
}
|
|
1744
|
-
export
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1799
|
+
export declare const InstanceMetadataEndpointState: {
|
|
1800
|
+
readonly disabled: "disabled";
|
|
1801
|
+
readonly enabled: "enabled";
|
|
1802
|
+
};
|
|
1803
|
+
export type InstanceMetadataEndpointState =
|
|
1804
|
+
(typeof InstanceMetadataEndpointState)[keyof typeof InstanceMetadataEndpointState];
|
|
1805
|
+
export declare const InstanceMetadataProtocolState: {
|
|
1806
|
+
readonly disabled: "disabled";
|
|
1807
|
+
readonly enabled: "enabled";
|
|
1808
|
+
};
|
|
1809
|
+
export type InstanceMetadataProtocolState =
|
|
1810
|
+
(typeof InstanceMetadataProtocolState)[keyof typeof InstanceMetadataProtocolState];
|
|
1811
|
+
export declare const HttpTokensState: {
|
|
1812
|
+
readonly optional: "optional";
|
|
1813
|
+
readonly required: "required";
|
|
1814
|
+
};
|
|
1815
|
+
export type HttpTokensState =
|
|
1816
|
+
(typeof HttpTokensState)[keyof typeof HttpTokensState];
|
|
1817
|
+
export declare const InstanceMetadataTagsState: {
|
|
1818
|
+
readonly disabled: "disabled";
|
|
1819
|
+
readonly enabled: "enabled";
|
|
1820
|
+
};
|
|
1821
|
+
export type InstanceMetadataTagsState =
|
|
1822
|
+
(typeof InstanceMetadataTagsState)[keyof typeof InstanceMetadataTagsState];
|
|
1823
|
+
export declare const InstanceMetadataOptionsState: {
|
|
1824
|
+
readonly applied: "applied";
|
|
1825
|
+
readonly pending: "pending";
|
|
1826
|
+
};
|
|
1827
|
+
export type InstanceMetadataOptionsState =
|
|
1828
|
+
(typeof InstanceMetadataOptionsState)[keyof typeof InstanceMetadataOptionsState];
|
|
1748
1829
|
export interface InstanceMetadataOptionsResponse {
|
|
1749
1830
|
State?: InstanceMetadataOptionsState | string;
|
|
1750
1831
|
HttpTokens?: HttpTokensState | string;
|
|
@@ -1753,9 +1834,11 @@ export interface InstanceMetadataOptionsResponse {
|
|
|
1753
1834
|
HttpProtocolIpv6?: InstanceMetadataProtocolState | string;
|
|
1754
1835
|
InstanceMetadataTags?: InstanceMetadataTagsState | string;
|
|
1755
1836
|
}
|
|
1756
|
-
export declare
|
|
1757
|
-
disabled
|
|
1758
|
-
disabling
|
|
1759
|
-
enabled
|
|
1760
|
-
pending
|
|
1761
|
-
}
|
|
1837
|
+
export declare const MonitoringState: {
|
|
1838
|
+
readonly disabled: "disabled";
|
|
1839
|
+
readonly disabling: "disabling";
|
|
1840
|
+
readonly enabled: "enabled";
|
|
1841
|
+
readonly pending: "pending";
|
|
1842
|
+
};
|
|
1843
|
+
export type MonitoringState =
|
|
1844
|
+
(typeof MonitoringState)[keyof typeof MonitoringState];
|