@aws-sdk/client-ec2 3.321.0 → 3.322.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/models/models_1.js +6 -2
- package/dist-cjs/models/models_3.js +2 -8
- package/dist-cjs/models/models_4.js +10 -1
- package/dist-cjs/protocols/Aws_ec2.js +25 -0
- package/dist-es/models/models_1.js +4 -0
- package/dist-es/models/models_3.js +0 -6
- package/dist-es/models/models_4.js +9 -0
- package/dist-es/protocols/Aws_ec2.js +25 -0
- package/dist-types/commands/CreateLaunchTemplateCommand.d.ts +1 -0
- package/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +1 -0
- package/dist-types/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeVolumeAttributeCommand.d.ts +2 -1
- package/dist-types/commands/DescribeVolumesCommand.d.ts +1 -2
- package/dist-types/commands/ImportKeyPairCommand.d.ts +1 -1
- package/dist-types/commands/ModifyInstanceAttributeCommand.d.ts +1 -1
- package/dist-types/commands/ModifyReservedInstancesCommand.d.ts +0 -3
- package/dist-types/commands/PurchaseReservedInstancesOfferingCommand.d.ts +0 -3
- package/dist-types/commands/RequestSpotInstancesCommand.d.ts +0 -3
- package/dist-types/commands/RunInstancesCommand.d.ts +3 -16
- package/dist-types/commands/SendDiagnosticInterruptCommand.d.ts +1 -1
- package/dist-types/commands/StartInstancesCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +2 -2
- package/dist-types/models/models_1.d.ts +35 -82
- package/dist-types/models/models_2.d.ts +79 -14
- package/dist-types/models/models_3.d.ts +18 -25
- package/dist-types/models/models_4.d.ts +68 -191
- package/dist-types/models/models_5.d.ts +133 -52
- package/dist-types/models/models_6.d.ts +70 -49
- package/dist-types/models/models_7.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeVolumeAttributeCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeVolumesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ImportKeyPairCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SendDiagnosticInterruptCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartInstancesCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_1.d.ts +8 -11
- package/dist-types/ts3.4/models/models_2.d.ts +12 -4
- package/dist-types/ts3.4/models/models_3.d.ts +5 -8
- package/dist-types/ts3.4/models/models_4.d.ts +15 -14
- package/dist-types/ts3.4/models/models_5.d.ts +13 -12
- package/dist-types/ts3.4/models/models_6.d.ts +14 -9
- package/dist-types/ts3.4/models/models_7.d.ts +9 -0
- package/package.json +4 -4
|
@@ -1,5 +1,83 @@
|
|
|
1
1
|
import { ApplianceModeSupportValue, CarrierGateway, CurrencyCodeValues, DeviceTrustProviderType, DnsSupportValue, DynamicRoutingValue, InstanceEventWindowState, Ipv6SupportValue, ReservedInstancesListing, RouteTableAssociationState, Tag, TagSpecification, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, TrustProviderType, UnsuccessfulItem, UserTrustProviderType, VerifiedAccessInstance, VerifiedAccessTrustProvider, VolumeAttachment, VpcAttachment, VpcPeeringConnection } from "./models_0";
|
|
2
|
-
import { ClientVpnEndpointStatus, ClientVpnRouteStatus, CoipCidr, CoipPool, GatewayType, Ipam, IpamPool, IpamResourceDiscovery, IpamScope, LaunchTemplate, LocalGatewayRoute, LocalGatewayRouteTable, LocalGatewayRouteTableVirtualInterfaceGroupAssociation, LocalGatewayRouteTableVpcAssociation, ManagedPrefixList,
|
|
2
|
+
import { ClientVpnEndpointStatus, ClientVpnRouteStatus, CoipCidr, CoipPool, GatewayType, Ipam, IpamPool, IpamResourceDiscovery, IpamScope, LaunchTemplate, LocalGatewayRoute, LocalGatewayRouteTable, LocalGatewayRouteTableVirtualInterfaceGroupAssociation, LocalGatewayRouteTableVpcAssociation, ManagedPrefixList, ReplaceRootVolumeTaskState, Subnet, Tenancy, VolumeType, Vpc } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
* <p>Information about a root volume replacement task.</p>
|
|
6
|
+
*/
|
|
7
|
+
export interface ReplaceRootVolumeTask {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The ID of the root volume replacement task.</p>
|
|
10
|
+
*/
|
|
11
|
+
ReplaceRootVolumeTaskId?: string;
|
|
12
|
+
/**
|
|
13
|
+
* <p>The ID of the instance for which the root volume replacement task was created.</p>
|
|
14
|
+
*/
|
|
15
|
+
InstanceId?: string;
|
|
16
|
+
/**
|
|
17
|
+
* <p>The state of the task. The task can be in one of the following states:</p>
|
|
18
|
+
* <ul>
|
|
19
|
+
* <li>
|
|
20
|
+
* <p>
|
|
21
|
+
* <code>pending</code> - the replacement volume is being created.</p>
|
|
22
|
+
* </li>
|
|
23
|
+
* <li>
|
|
24
|
+
* <p>
|
|
25
|
+
* <code>in-progress</code> - the original volume is being detached and the
|
|
26
|
+
* replacement volume is being attached.</p>
|
|
27
|
+
* </li>
|
|
28
|
+
* <li>
|
|
29
|
+
* <p>
|
|
30
|
+
* <code>succeeded</code> - the replacement volume has been successfully attached
|
|
31
|
+
* to the instance and the instance is available.</p>
|
|
32
|
+
* </li>
|
|
33
|
+
* <li>
|
|
34
|
+
* <p>
|
|
35
|
+
* <code>failing</code> - the replacement task is in the process of failing.</p>
|
|
36
|
+
* </li>
|
|
37
|
+
* <li>
|
|
38
|
+
* <p>
|
|
39
|
+
* <code>failed</code> - the replacement task has failed but the original root
|
|
40
|
+
* volume is still attached.</p>
|
|
41
|
+
* </li>
|
|
42
|
+
* <li>
|
|
43
|
+
* <p>
|
|
44
|
+
* <code>failing-detached</code> - the replacement task is in the process of failing.
|
|
45
|
+
* The instance might have no root volume attached.</p>
|
|
46
|
+
* </li>
|
|
47
|
+
* <li>
|
|
48
|
+
* <p>
|
|
49
|
+
* <code>failed-detached</code> - the replacement task has failed and the instance
|
|
50
|
+
* has no root volume attached.</p>
|
|
51
|
+
* </li>
|
|
52
|
+
* </ul>
|
|
53
|
+
*/
|
|
54
|
+
TaskState?: ReplaceRootVolumeTaskState | string;
|
|
55
|
+
/**
|
|
56
|
+
* <p>The time the task was started.</p>
|
|
57
|
+
*/
|
|
58
|
+
StartTime?: string;
|
|
59
|
+
/**
|
|
60
|
+
* <p>The time the task completed.</p>
|
|
61
|
+
*/
|
|
62
|
+
CompleteTime?: string;
|
|
63
|
+
/**
|
|
64
|
+
* <p>The tags assigned to the task.</p>
|
|
65
|
+
*/
|
|
66
|
+
Tags?: Tag[];
|
|
67
|
+
/**
|
|
68
|
+
* <p>The ID of the AMI used to create the replacement root volume.</p>
|
|
69
|
+
*/
|
|
70
|
+
ImageId?: string;
|
|
71
|
+
/**
|
|
72
|
+
* <p>The ID of the snapshot used to create the replacement root volume.</p>
|
|
73
|
+
*/
|
|
74
|
+
SnapshotId?: string;
|
|
75
|
+
/**
|
|
76
|
+
* <p>Indicates whether the original root volume is to be deleted after the root volume
|
|
77
|
+
* replacement task completes.</p>
|
|
78
|
+
*/
|
|
79
|
+
DeleteReplacedRootVolume?: boolean;
|
|
80
|
+
}
|
|
3
81
|
/**
|
|
4
82
|
* @public
|
|
5
83
|
*/
|
|
@@ -6515,19 +6593,6 @@ export interface DeleteSnapshotRequest {
|
|
|
6515
6593
|
*/
|
|
6516
6594
|
DryRun?: boolean;
|
|
6517
6595
|
}
|
|
6518
|
-
/**
|
|
6519
|
-
* @public
|
|
6520
|
-
* <p>Contains the parameters for DeleteSpotDatafeedSubscription.</p>
|
|
6521
|
-
*/
|
|
6522
|
-
export interface DeleteSpotDatafeedSubscriptionRequest {
|
|
6523
|
-
/**
|
|
6524
|
-
* <p>Checks whether you have the required permissions for the action, without actually
|
|
6525
|
-
* making the request, and provides an error response. If you have the required
|
|
6526
|
-
* permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is
|
|
6527
|
-
* <code>UnauthorizedOperation</code>.</p>
|
|
6528
|
-
*/
|
|
6529
|
-
DryRun?: boolean;
|
|
6530
|
-
}
|
|
6531
6596
|
/**
|
|
6532
6597
|
* @internal
|
|
6533
6598
|
*/
|
|
@@ -1,6 +1,19 @@
|
|
|
1
1
|
import { _InstanceType, AccountAttribute, AccountAttributeName, ActiveInstance, Address, AddressAttribute, AddressAttributeName, AddressTransfer, AllocationState, AllowsMultipleInstanceTypes, AssociationStatus, AttachmentStatus, AutoPlacement, BundleTask, ByoipCidr, CapacityReservation, CapacityReservationFleetState, CarrierGateway, ClientVpnAuthorizationRuleStatus, CurrencyCodeValues, FleetCapacityReservation, FleetCapacityReservationTenancy, FleetInstanceMatchCriteria, HostMaintenance, HostRecovery, IamInstanceProfileAssociation, InstanceEventWindow, Tag, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, UnsuccessfulItem, VerifiedAccessInstance, VerifiedAccessTrustProvider } from "./models_0";
|
|
2
|
-
import { AttributeValue, BlockDeviceMapping, CapacityReservationPreference, CapacityReservationTargetResponse, ClientVpnAuthenticationType, ClientVpnEndpointStatus, ClientVpnRouteStatus, CoipPool, CustomerGateway, DefaultTargetCapacityType, DestinationFileFormat, DhcpOptions, DiskImageFormat, EgressOnlyInternetGateway, ExportTask, FleetCapacityReservationUsageStrategy, FleetExcessCapacityTerminationPolicy, FleetLaunchTemplateOverrides, FleetLaunchTemplateSpecification, FleetOnDemandAllocationStrategy, FleetReplacementStrategy, FleetType, GroupIdentifier, InstanceLifecycle, LaunchTemplateAndOverridesResponse, LogDestinationType, PlatformValues, SpotAllocationStrategy, SpotInstanceInterruptionBehavior, StateReason, TargetCapacityUnitType, TrafficType, TransportProtocol } from "./models_1";
|
|
2
|
+
import { AmdSevSnpSpecification, AttributeValue, BlockDeviceMapping, CapacityReservationPreference, CapacityReservationTargetResponse, ClientVpnAuthenticationType, ClientVpnEndpointStatus, ClientVpnRouteStatus, CoipPool, CustomerGateway, DefaultTargetCapacityType, DestinationFileFormat, DhcpOptions, DiskImageFormat, EgressOnlyInternetGateway, ExportTask, FleetCapacityReservationUsageStrategy, FleetExcessCapacityTerminationPolicy, FleetLaunchTemplateOverrides, FleetLaunchTemplateSpecification, FleetOnDemandAllocationStrategy, FleetReplacementStrategy, FleetType, GroupIdentifier, InstanceLifecycle, LaunchTemplateAndOverridesResponse, LogDestinationType, PlatformValues, SpotAllocationStrategy, SpotInstanceInterruptionBehavior, StateReason, TargetCapacityUnitType, TrafficType, TransportProtocol } from "./models_1";
|
|
3
3
|
import { FleetStateCode, SubnetCidrReservation, TransitGateway, TransitGatewayConnect, TransitGatewayConnectPeer, TransitGatewayMulticastDomain, TransitGatewayPolicyTable, TransitGatewayPrefixListReference, TransitGatewayRoute, TransitGatewayRouteTable, TransitGatewayRouteTableAnnouncement, VerifiedAccessEndpoint, VerifiedAccessGroup } from "./models_2";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
* <p>Contains the parameters for DeleteSpotDatafeedSubscription.</p>
|
|
7
|
+
*/
|
|
8
|
+
export interface DeleteSpotDatafeedSubscriptionRequest {
|
|
9
|
+
/**
|
|
10
|
+
* <p>Checks whether you have the required permissions for the action, without actually
|
|
11
|
+
* making the request, and provides an error response. If you have the required
|
|
12
|
+
* permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is
|
|
13
|
+
* <code>UnauthorizedOperation</code>.</p>
|
|
14
|
+
*/
|
|
15
|
+
DryRun?: boolean;
|
|
16
|
+
}
|
|
4
17
|
/**
|
|
5
18
|
* @public
|
|
6
19
|
*/
|
|
@@ -7298,16 +7311,6 @@ export interface DescribeInstancesRequest {
|
|
|
7298
7311
|
* </li>
|
|
7299
7312
|
* <li>
|
|
7300
7313
|
* <p>
|
|
7301
|
-
* <code>group-id</code> - The ID of the security group for the instance.
|
|
7302
|
-
* EC2-Classic only.</p>
|
|
7303
|
-
* </li>
|
|
7304
|
-
* <li>
|
|
7305
|
-
* <p>
|
|
7306
|
-
* <code>group-name</code> - The name of the security group for the instance.
|
|
7307
|
-
* EC2-Classic only.</p>
|
|
7308
|
-
* </li>
|
|
7309
|
-
* <li>
|
|
7310
|
-
* <p>
|
|
7311
7314
|
* <code>hibernation-options.configured</code> - A Boolean that indicates whether
|
|
7312
7315
|
* the instance is enabled for hibernation. A value of <code>true</code> means that
|
|
7313
7316
|
* the instance is enabled for hibernation. </p>
|
|
@@ -7782,6 +7785,10 @@ export interface CpuOptions {
|
|
|
7782
7785
|
* <p>The number of threads per CPU core.</p>
|
|
7783
7786
|
*/
|
|
7784
7787
|
ThreadsPerCore?: number;
|
|
7788
|
+
/**
|
|
7789
|
+
* <p>Indicates whether the instance is enabled for AMD SEV-SNP.</p>
|
|
7790
|
+
*/
|
|
7791
|
+
AmdSevSnp?: AmdSevSnpSpecification | string;
|
|
7785
7792
|
}
|
|
7786
7793
|
/**
|
|
7787
7794
|
* @public
|
|
@@ -8034,20 +8041,6 @@ export interface InstanceMetadataOptionsResponse {
|
|
|
8034
8041
|
*/
|
|
8035
8042
|
InstanceMetadataTags?: InstanceMetadataTagsState | string;
|
|
8036
8043
|
}
|
|
8037
|
-
/**
|
|
8038
|
-
* @public
|
|
8039
|
-
* @enum
|
|
8040
|
-
*/
|
|
8041
|
-
export declare const MonitoringState: {
|
|
8042
|
-
readonly disabled: "disabled";
|
|
8043
|
-
readonly disabling: "disabling";
|
|
8044
|
-
readonly enabled: "enabled";
|
|
8045
|
-
readonly pending: "pending";
|
|
8046
|
-
};
|
|
8047
|
-
/**
|
|
8048
|
-
* @public
|
|
8049
|
-
*/
|
|
8050
|
-
export type MonitoringState = (typeof MonitoringState)[keyof typeof MonitoringState];
|
|
8051
8044
|
/**
|
|
8052
8045
|
* @internal
|
|
8053
8046
|
*/
|
|
@@ -1,7 +1,21 @@
|
|
|
1
1
|
import { _InstanceType, ActiveInstance, ActivityStatus, AllocationStrategy, AlternatePathHint, AttachmentStatus, BatchState, CurrencyCodeValues, Explanation, IamInstanceProfile, IamInstanceProfileSpecification, IpamResourceDiscoveryAssociation, IpPermission, PathComponent, ReservedInstancesListing, ResourceType, SecurityGroupRule, Tag, TagSpecification, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, TrunkInterfaceAssociation, UserIdGroupPair, VerifiedAccessInstance, VerifiedAccessTrustProvider } from "./models_0";
|
|
2
|
-
import { AttributeValue, BlockDeviceMapping, FleetLaunchTemplateSpecification, FleetType, GroupIdentifier, HostnameType, InstanceInterruptionBehavior, InstanceIpv6Address, InstanceRequirements, InternetGateway, Ipam, IpamPool, IpamResourceDiscovery, IpamScope, Ipv4PrefixSpecificationRequest, Ipv6PrefixSpecificationRequest, KeyType, LaunchTemplate, LaunchTemplateVersion, LocalGatewayRouteTable, LocalGatewayRouteTableVirtualInterfaceGroupAssociation, LocalGatewayRouteTableVpcAssociation, ManagedPrefixList, NatGateway, NetworkAcl, NetworkInsightsAccessScope, NetworkInsightsPath, NetworkInterface, NetworkInterfaceAttachment, NetworkInterfacePermission, NetworkInterfaceStatus, Placement, PlacementGroup, PlatformValues, PrivateIpAddressSpecification,
|
|
3
|
-
import { RouteTable, Snapshot, SnapshotState, SpotDatafeedSubscription, SpotInstanceStateFault, StorageTier, TrafficMirrorFilter, TrafficMirrorSession, TrafficMirrorTarget, TransitGateway, TransitGatewayConnect, TransitGatewayConnectPeer, TransitGatewayMulticastDomain, TransitGatewayPolicyTable, TransitGatewayRouteTable, TransitGatewayRouteTableAnnouncement, VerifiedAccessEndpoint, VerifiedAccessGroup } from "./models_2";
|
|
4
|
-
import { ArchitectureValues, AttributeBooleanValue, BootModeValues, CapacityReservationSpecificationResponse, CpuOptions, DeviceType, ElasticGpuAssociation, ElasticInferenceAcceleratorAssociation, EnclaveOptions, EventInformation, Filter, HibernationOptions, HypervisorType, IdFormat, InstanceBlockDeviceMapping, InstanceBootModeValues, InstanceLifecycleType, InstanceMaintenanceOptions, InstanceMetadataOptionsResponse, LicenseConfiguration,
|
|
2
|
+
import { AttributeValue, BlockDeviceMapping, FleetLaunchTemplateSpecification, FleetType, GroupIdentifier, HostnameType, InstanceInterruptionBehavior, InstanceIpv6Address, InstanceRequirements, InternetGateway, Ipam, IpamPool, IpamResourceDiscovery, IpamScope, Ipv4PrefixSpecificationRequest, Ipv6PrefixSpecificationRequest, KeyType, LaunchTemplate, LaunchTemplateVersion, LocalGatewayRouteTable, LocalGatewayRouteTableVirtualInterfaceGroupAssociation, LocalGatewayRouteTableVpcAssociation, ManagedPrefixList, NatGateway, NetworkAcl, NetworkInsightsAccessScope, NetworkInsightsPath, NetworkInterface, NetworkInterfaceAttachment, NetworkInterfacePermission, NetworkInterfaceStatus, Placement, PlacementGroup, PlatformValues, PrivateIpAddressSpecification, SpotInstanceType, StateReason, Subnet, TargetCapacityUnitType, Tenancy } from "./models_1";
|
|
3
|
+
import { ReplaceRootVolumeTask, RouteTable, Snapshot, SnapshotState, SpotDatafeedSubscription, SpotInstanceStateFault, StorageTier, TrafficMirrorFilter, TrafficMirrorSession, TrafficMirrorTarget, TransitGateway, TransitGatewayConnect, TransitGatewayConnectPeer, TransitGatewayMulticastDomain, TransitGatewayPolicyTable, TransitGatewayRouteTable, TransitGatewayRouteTableAnnouncement, VerifiedAccessEndpoint, VerifiedAccessGroup } from "./models_2";
|
|
4
|
+
import { ArchitectureValues, AttributeBooleanValue, BootModeValues, CapacityReservationSpecificationResponse, CpuOptions, DeviceType, ElasticGpuAssociation, ElasticInferenceAcceleratorAssociation, EnclaveOptions, EventInformation, Filter, HibernationOptions, HypervisorType, IdFormat, InstanceBlockDeviceMapping, InstanceBootModeValues, InstanceLifecycleType, InstanceMaintenanceOptions, InstanceMetadataOptionsResponse, LicenseConfiguration, PermissionGroup, ProductCode, VirtualizationType } from "./models_3";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
* @enum
|
|
8
|
+
*/
|
|
9
|
+
export declare const MonitoringState: {
|
|
10
|
+
readonly disabled: "disabled";
|
|
11
|
+
readonly disabling: "disabling";
|
|
12
|
+
readonly enabled: "enabled";
|
|
13
|
+
readonly pending: "pending";
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
export type MonitoringState = (typeof MonitoringState)[keyof typeof MonitoringState];
|
|
5
19
|
/**
|
|
6
20
|
* @public
|
|
7
21
|
* <p>Describes the monitoring of an instance.</p>
|
|
@@ -331,10 +345,10 @@ export interface Instance {
|
|
|
331
345
|
*/
|
|
332
346
|
Platform?: PlatformValues | string;
|
|
333
347
|
/**
|
|
334
|
-
* <p>
|
|
348
|
+
* <p>[IPv4 only] The private DNS hostname name assigned to the instance. This DNS hostname
|
|
335
349
|
* can only be used inside the Amazon EC2 network. This name is not available until the
|
|
336
350
|
* instance enters the <code>running</code> state. </p>
|
|
337
|
-
* <p>
|
|
351
|
+
* <p>The Amazon-provided DNS server resolves Amazon-provided private DNS
|
|
338
352
|
* hostnames if you've enabled DNS resolution and DNS hostnames in your VPC. If you are not
|
|
339
353
|
* using the Amazon-provided DNS server in your VPC, your custom domain name servers must
|
|
340
354
|
* resolve the hostname as appropriate.</p>
|
|
@@ -349,8 +363,8 @@ export interface Instance {
|
|
|
349
363
|
*/
|
|
350
364
|
ProductCodes?: ProductCode[];
|
|
351
365
|
/**
|
|
352
|
-
* <p>
|
|
353
|
-
* until the instance enters the <code>running</code> state.
|
|
366
|
+
* <p>[IPv4 only] The public DNS name assigned to the instance. This name is not available
|
|
367
|
+
* until the instance enters the <code>running</code> state. This name is only
|
|
354
368
|
* available if you've enabled DNS hostnames for your VPC.</p>
|
|
355
369
|
*/
|
|
356
370
|
PublicDnsName?: string;
|
|
@@ -374,11 +388,11 @@ export interface Instance {
|
|
|
374
388
|
*/
|
|
375
389
|
StateTransitionReason?: string;
|
|
376
390
|
/**
|
|
377
|
-
* <p>
|
|
391
|
+
* <p>The ID of the subnet in which the instance is running.</p>
|
|
378
392
|
*/
|
|
379
393
|
SubnetId?: string;
|
|
380
394
|
/**
|
|
381
|
-
* <p>
|
|
395
|
+
* <p>The ID of the VPC in which the instance is running.</p>
|
|
382
396
|
*/
|
|
383
397
|
VpcId?: string;
|
|
384
398
|
/**
|
|
@@ -428,7 +442,7 @@ export interface Instance {
|
|
|
428
442
|
*/
|
|
429
443
|
ElasticInferenceAcceleratorAssociations?: ElasticInferenceAcceleratorAssociation[];
|
|
430
444
|
/**
|
|
431
|
-
* <p>
|
|
445
|
+
* <p>The network interfaces for the instance.</p>
|
|
432
446
|
*/
|
|
433
447
|
NetworkInterfaces?: InstanceNetworkInterface[];
|
|
434
448
|
/**
|
|
@@ -562,7 +576,7 @@ export interface Instance {
|
|
|
562
576
|
*/
|
|
563
577
|
export interface Reservation {
|
|
564
578
|
/**
|
|
565
|
-
* <p>
|
|
579
|
+
* <p>Not supported.</p>
|
|
566
580
|
*/
|
|
567
581
|
Groups?: GroupIdentifier[];
|
|
568
582
|
/**
|
|
@@ -990,7 +1004,7 @@ export interface DescribeInstanceTypesRequest {
|
|
|
990
1004
|
* <ul>
|
|
991
1005
|
* <li>
|
|
992
1006
|
* <p>
|
|
993
|
-
* <code>auto-recovery-supported</code> - Indicates whether
|
|
1007
|
+
* <code>auto-recovery-supported</code> - Indicates whether Amazon CloudWatch action based recovery is supported (<code>true</code> | <code>false</code>).</p>
|
|
994
1008
|
* </li>
|
|
995
1009
|
* <li>
|
|
996
1010
|
* <p>
|
|
@@ -1672,6 +1686,17 @@ export declare const ArchitectureType: {
|
|
|
1672
1686
|
* @public
|
|
1673
1687
|
*/
|
|
1674
1688
|
export type ArchitectureType = (typeof ArchitectureType)[keyof typeof ArchitectureType];
|
|
1689
|
+
/**
|
|
1690
|
+
* @public
|
|
1691
|
+
* @enum
|
|
1692
|
+
*/
|
|
1693
|
+
export declare const SupportedAdditionalProcessorFeature: {
|
|
1694
|
+
readonly AMD_SEV_SNP: "amd-sev-snp";
|
|
1695
|
+
};
|
|
1696
|
+
/**
|
|
1697
|
+
* @public
|
|
1698
|
+
*/
|
|
1699
|
+
export type SupportedAdditionalProcessorFeature = (typeof SupportedAdditionalProcessorFeature)[keyof typeof SupportedAdditionalProcessorFeature];
|
|
1675
1700
|
/**
|
|
1676
1701
|
* @public
|
|
1677
1702
|
* <p>Describes the processor used by the instance type.</p>
|
|
@@ -1685,6 +1710,11 @@ export interface ProcessorInfo {
|
|
|
1685
1710
|
* <p>The speed of the processor, in GHz.</p>
|
|
1686
1711
|
*/
|
|
1687
1712
|
SustainedClockSpeedInGhz?: number;
|
|
1713
|
+
/**
|
|
1714
|
+
* <p>Indicates whether the instance type supports AMD SEV-SNP. If the request returns
|
|
1715
|
+
* <code>amd-sev-snp</code>, AMD SEV-SNP is supported. Otherwise, it is not supported.</p>
|
|
1716
|
+
*/
|
|
1717
|
+
SupportedFeatures?: (SupportedAdditionalProcessorFeature | string)[];
|
|
1688
1718
|
}
|
|
1689
1719
|
/**
|
|
1690
1720
|
* @public
|
|
@@ -1842,7 +1872,7 @@ export interface InstanceTypeInfo {
|
|
|
1842
1872
|
*/
|
|
1843
1873
|
DedicatedHostsSupported?: boolean;
|
|
1844
1874
|
/**
|
|
1845
|
-
* <p>Indicates whether
|
|
1875
|
+
* <p>Indicates whether Amazon CloudWatch action based recovery is supported.</p>
|
|
1846
1876
|
*/
|
|
1847
1877
|
AutoRecoverySupported?: boolean;
|
|
1848
1878
|
/**
|
|
@@ -4596,18 +4626,13 @@ export interface DescribeReservedInstancesRequest {
|
|
|
4596
4626
|
* </li>
|
|
4597
4627
|
* <li>
|
|
4598
4628
|
* <p>
|
|
4599
|
-
* <code>product-description</code> - The Reserved Instance product platform
|
|
4600
|
-
*
|
|
4601
|
-
*
|
|
4602
|
-
*
|
|
4603
|
-
*
|
|
4604
|
-
*
|
|
4605
|
-
*
|
|
4606
|
-
* (Amazon VPC)</code> | <code>Windows with SQL Server Standard</code> | <code>Windows with
|
|
4607
|
-
* SQL Server Standard (Amazon VPC)</code> | <code>Windows with SQL Server Web</code> |
|
|
4608
|
-
* <code>Windows with SQL Server Web (Amazon VPC)</code> | <code>Windows with SQL Server
|
|
4609
|
-
* Enterprise</code> | <code>Windows with SQL Server Enterprise (Amazon
|
|
4610
|
-
* VPC)</code>).</p>
|
|
4629
|
+
* <code>product-description</code> - The Reserved Instance product platform description
|
|
4630
|
+
* (<code>Linux/UNIX</code> | <code>Linux with SQL Server Standard</code> |
|
|
4631
|
+
* <code>Linux with SQL Server Web</code> | <code>Linux with SQL Server Enterprise</code> |
|
|
4632
|
+
* <code>SUSE Linux</code> |
|
|
4633
|
+
* <code>Red Hat Enterprise Linux</code> | <code>Red Hat Enterprise Linux with HA</code> |
|
|
4634
|
+
* <code>Windows</code> | <code>Windows with SQL Server Standard</code> |
|
|
4635
|
+
* <code>Windows with SQL Server Web</code> | <code>Windows with SQL Server Enterprise</code>).</p>
|
|
4611
4636
|
* </li>
|
|
4612
4637
|
* <li>
|
|
4613
4638
|
* <p>
|
|
@@ -4900,10 +4925,6 @@ export interface DescribeReservedInstancesModificationsRequest {
|
|
|
4900
4925
|
* </li>
|
|
4901
4926
|
* <li>
|
|
4902
4927
|
* <p>
|
|
4903
|
-
* <code>modification-result.target-configuration.platform</code> - The network platform of the new Reserved Instances (<code>EC2-Classic</code> | <code>EC2-VPC</code>).</p>
|
|
4904
|
-
* </li>
|
|
4905
|
-
* <li>
|
|
4906
|
-
* <p>
|
|
4907
4928
|
* <code>reserved-instances-id</code> - The ID of the Reserved Instances modified.</p>
|
|
4908
4929
|
* </li>
|
|
4909
4930
|
* <li>
|
|
@@ -4956,7 +4977,7 @@ export interface ReservedInstancesConfiguration {
|
|
|
4956
4977
|
*/
|
|
4957
4978
|
InstanceType?: _InstanceType | string;
|
|
4958
4979
|
/**
|
|
4959
|
-
* <p>The network platform of the modified Reserved Instances
|
|
4980
|
+
* <p>The network platform of the modified Reserved Instances.</p>
|
|
4960
4981
|
*/
|
|
4961
4982
|
Platform?: string;
|
|
4962
4983
|
/**
|
|
@@ -5087,17 +5108,13 @@ export interface DescribeReservedInstancesOfferingsRequest {
|
|
|
5087
5108
|
* </li>
|
|
5088
5109
|
* <li>
|
|
5089
5110
|
* <p>
|
|
5090
|
-
* <code>product-description</code> - The Reserved Instance product platform description
|
|
5091
|
-
*
|
|
5092
|
-
*
|
|
5093
|
-
*
|
|
5094
|
-
*
|
|
5095
|
-
*
|
|
5096
|
-
*
|
|
5097
|
-
* (Amazon VPC)</code> | <code>Windows with SQL Server Standard</code> | <code>Windows with
|
|
5098
|
-
* SQL Server Standard (Amazon VPC)</code> | <code>Windows with SQL Server Web</code> |
|
|
5099
|
-
* <code> Windows with SQL Server Web (Amazon VPC)</code> | <code>Windows with SQL Server
|
|
5100
|
-
* Enterprise</code> | <code>Windows with SQL Server Enterprise (Amazon VPC)</code>) </p>
|
|
5111
|
+
* <code>product-description</code> - The Reserved Instance product platform description
|
|
5112
|
+
* (<code>Linux/UNIX</code> | <code>Linux with SQL Server Standard</code> |
|
|
5113
|
+
* <code>Linux with SQL Server Web</code> | <code>Linux with SQL Server Enterprise</code> |
|
|
5114
|
+
* <code>SUSE Linux</code> |
|
|
5115
|
+
* <code>Red Hat Enterprise Linux</code> | <code>Red Hat Enterprise Linux with HA</code> |
|
|
5116
|
+
* <code>Windows</code> | <code>Windows with SQL Server Standard</code> |
|
|
5117
|
+
* <code>Windows with SQL Server Web</code> | <code>Windows with SQL Server Enterprise</code>).</p>
|
|
5101
5118
|
* </li>
|
|
5102
5119
|
* <li>
|
|
5103
5120
|
* <p>
|
|
@@ -5503,10 +5520,6 @@ export interface DescribeScheduledInstanceAvailabilityRequest {
|
|
|
5503
5520
|
* </li>
|
|
5504
5521
|
* <li>
|
|
5505
5522
|
* <p>
|
|
5506
|
-
* <code>network-platform</code> - The network platform (<code>EC2-Classic</code> or <code>EC2-VPC</code>).</p>
|
|
5507
|
-
* </li>
|
|
5508
|
-
* <li>
|
|
5509
|
-
* <p>
|
|
5510
5523
|
* <code>platform</code> - The platform (<code>Linux/UNIX</code> or <code>Windows</code>).</p>
|
|
5511
5524
|
* </li>
|
|
5512
5525
|
* </ul>
|
|
@@ -5602,7 +5615,7 @@ export interface ScheduledInstanceAvailability {
|
|
|
5602
5615
|
*/
|
|
5603
5616
|
MinTermDurationInDays?: number;
|
|
5604
5617
|
/**
|
|
5605
|
-
* <p>The network platform
|
|
5618
|
+
* <p>The network platform.</p>
|
|
5606
5619
|
*/
|
|
5607
5620
|
NetworkPlatform?: string;
|
|
5608
5621
|
/**
|
|
@@ -5678,10 +5691,6 @@ export interface DescribeScheduledInstancesRequest {
|
|
|
5678
5691
|
* </li>
|
|
5679
5692
|
* <li>
|
|
5680
5693
|
* <p>
|
|
5681
|
-
* <code>network-platform</code> - The network platform (<code>EC2-Classic</code> or <code>EC2-VPC</code>).</p>
|
|
5682
|
-
* </li>
|
|
5683
|
-
* <li>
|
|
5684
|
-
* <p>
|
|
5685
5694
|
* <code>platform</code> - The platform (<code>Linux/UNIX</code> or <code>Windows</code>).</p>
|
|
5686
5695
|
* </li>
|
|
5687
5696
|
* </ul>
|
|
@@ -5733,7 +5742,7 @@ export interface ScheduledInstance {
|
|
|
5733
5742
|
*/
|
|
5734
5743
|
InstanceType?: string;
|
|
5735
5744
|
/**
|
|
5736
|
-
* <p>The network platform
|
|
5745
|
+
* <p>The network platform.</p>
|
|
5737
5746
|
*/
|
|
5738
5747
|
NetworkPlatform?: string;
|
|
5739
5748
|
/**
|
|
@@ -6825,7 +6834,7 @@ export interface SpotFleetTagSpecification {
|
|
|
6825
6834
|
*/
|
|
6826
6835
|
export interface SpotFleetLaunchSpecification {
|
|
6827
6836
|
/**
|
|
6828
|
-
* <p>
|
|
6837
|
+
* <p>The security groups.</p>
|
|
6829
6838
|
*/
|
|
6830
6839
|
SecurityGroups?: GroupIdentifier[];
|
|
6831
6840
|
/**
|
|
@@ -7417,7 +7426,7 @@ export interface DescribeSpotFleetRequestsResponse {
|
|
|
7417
7426
|
*/
|
|
7418
7427
|
export interface DescribeSpotInstanceRequestsRequest {
|
|
7419
7428
|
/**
|
|
7420
|
-
* <p>
|
|
7429
|
+
* <p>The filters.</p>
|
|
7421
7430
|
* <ul>
|
|
7422
7431
|
* <li>
|
|
7423
7432
|
* <p>
|
|
@@ -7621,7 +7630,7 @@ export interface DescribeSpotInstanceRequestsRequest {
|
|
|
7621
7630
|
*/
|
|
7622
7631
|
DryRun?: boolean;
|
|
7623
7632
|
/**
|
|
7624
|
-
* <p>
|
|
7633
|
+
* <p>The IDs of the Spot Instance requests.</p>
|
|
7625
7634
|
*/
|
|
7626
7635
|
SpotInstanceRequestIds?: string[];
|
|
7627
7636
|
/**
|
|
@@ -7656,7 +7665,7 @@ export interface LaunchSpecification {
|
|
|
7656
7665
|
*/
|
|
7657
7666
|
UserData?: string;
|
|
7658
7667
|
/**
|
|
7659
|
-
* <p>
|
|
7668
|
+
* <p>The IDs of the security groups.</p>
|
|
7660
7669
|
*/
|
|
7661
7670
|
SecurityGroups?: GroupIdentifier[];
|
|
7662
7671
|
/**
|
|
@@ -7664,7 +7673,7 @@ export interface LaunchSpecification {
|
|
|
7664
7673
|
*/
|
|
7665
7674
|
AddressingType?: string;
|
|
7666
7675
|
/**
|
|
7667
|
-
* <p>
|
|
7676
|
+
* <p>The block device mapping entries.</p>
|
|
7668
7677
|
*/
|
|
7669
7678
|
BlockDeviceMappings?: BlockDeviceMapping[];
|
|
7670
7679
|
/**
|
|
@@ -7694,7 +7703,7 @@ export interface LaunchSpecification {
|
|
|
7694
7703
|
*/
|
|
7695
7704
|
KeyName?: string;
|
|
7696
7705
|
/**
|
|
7697
|
-
* <p>
|
|
7706
|
+
* <p>The network interfaces. If you specify a network interface, you must specify
|
|
7698
7707
|
* subnet IDs and security group IDs using the network interface.</p>
|
|
7699
7708
|
*/
|
|
7700
7709
|
NetworkInterfaces?: InstanceNetworkInterfaceSpecification[];
|
|
@@ -7858,7 +7867,7 @@ export interface SpotInstanceRequest {
|
|
|
7858
7867
|
*/
|
|
7859
7868
|
export interface DescribeSpotInstanceRequestsResult {
|
|
7860
7869
|
/**
|
|
7861
|
-
* <p>
|
|
7870
|
+
* <p>The Spot Instance requests.</p>
|
|
7862
7871
|
*/
|
|
7863
7872
|
SpotInstanceRequests?: SpotInstanceRequest[];
|
|
7864
7873
|
/**
|
|
@@ -7873,7 +7882,7 @@ export interface DescribeSpotInstanceRequestsResult {
|
|
|
7873
7882
|
*/
|
|
7874
7883
|
export interface DescribeSpotPriceHistoryRequest {
|
|
7875
7884
|
/**
|
|
7876
|
-
* <p>
|
|
7885
|
+
* <p>The filters.</p>
|
|
7877
7886
|
* <ul>
|
|
7878
7887
|
* <li>
|
|
7879
7888
|
* <p>
|
|
@@ -9761,138 +9770,6 @@ export interface DescribeVolumeAttributeRequest {
|
|
|
9761
9770
|
*/
|
|
9762
9771
|
DryRun?: boolean;
|
|
9763
9772
|
}
|
|
9764
|
-
/**
|
|
9765
|
-
* @public
|
|
9766
|
-
*/
|
|
9767
|
-
export interface DescribeVolumeAttributeResult {
|
|
9768
|
-
/**
|
|
9769
|
-
* <p>The state of <code>autoEnableIO</code> attribute.</p>
|
|
9770
|
-
*/
|
|
9771
|
-
AutoEnableIO?: AttributeBooleanValue;
|
|
9772
|
-
/**
|
|
9773
|
-
* <p>A list of product codes.</p>
|
|
9774
|
-
*/
|
|
9775
|
-
ProductCodes?: ProductCode[];
|
|
9776
|
-
/**
|
|
9777
|
-
* <p>The ID of the volume.</p>
|
|
9778
|
-
*/
|
|
9779
|
-
VolumeId?: string;
|
|
9780
|
-
}
|
|
9781
|
-
/**
|
|
9782
|
-
* @public
|
|
9783
|
-
*/
|
|
9784
|
-
export interface DescribeVolumesRequest {
|
|
9785
|
-
/**
|
|
9786
|
-
* <p>The filters.</p>
|
|
9787
|
-
* <ul>
|
|
9788
|
-
* <li>
|
|
9789
|
-
* <p>
|
|
9790
|
-
* <code>attachment.attach-time</code> - The time stamp when the attachment
|
|
9791
|
-
* initiated.</p>
|
|
9792
|
-
* </li>
|
|
9793
|
-
* <li>
|
|
9794
|
-
* <p>
|
|
9795
|
-
* <code>attachment.delete-on-termination</code> - Whether the volume is deleted on
|
|
9796
|
-
* instance termination.</p>
|
|
9797
|
-
* </li>
|
|
9798
|
-
* <li>
|
|
9799
|
-
* <p>
|
|
9800
|
-
* <code>attachment.device</code> - The device name specified in the block device mapping
|
|
9801
|
-
* (for example, <code>/dev/sda1</code>).</p>
|
|
9802
|
-
* </li>
|
|
9803
|
-
* <li>
|
|
9804
|
-
* <p>
|
|
9805
|
-
* <code>attachment.instance-id</code> - The ID of the instance the volume is attached
|
|
9806
|
-
* to.</p>
|
|
9807
|
-
* </li>
|
|
9808
|
-
* <li>
|
|
9809
|
-
* <p>
|
|
9810
|
-
* <code>attachment.status</code> - The attachment state (<code>attaching</code> |
|
|
9811
|
-
* <code>attached</code> | <code>detaching</code>).</p>
|
|
9812
|
-
* </li>
|
|
9813
|
-
* <li>
|
|
9814
|
-
* <p>
|
|
9815
|
-
* <code>availability-zone</code> - The Availability Zone in which the volume was
|
|
9816
|
-
* created.</p>
|
|
9817
|
-
* </li>
|
|
9818
|
-
* <li>
|
|
9819
|
-
* <p>
|
|
9820
|
-
* <code>create-time</code> - The time stamp when the volume was created.</p>
|
|
9821
|
-
* </li>
|
|
9822
|
-
* <li>
|
|
9823
|
-
* <p>
|
|
9824
|
-
* <code>encrypted</code> - Indicates whether the volume is encrypted (<code>true</code>
|
|
9825
|
-
* | <code>false</code>)</p>
|
|
9826
|
-
* </li>
|
|
9827
|
-
* <li>
|
|
9828
|
-
* <p>
|
|
9829
|
-
* <code>multi-attach-enabled</code> - Indicates whether the volume is enabled for Multi-Attach (<code>true</code>
|
|
9830
|
-
* | <code>false</code>)</p>
|
|
9831
|
-
* </li>
|
|
9832
|
-
* <li>
|
|
9833
|
-
* <p>
|
|
9834
|
-
* <code>fast-restored</code> - Indicates whether the volume was created from a
|
|
9835
|
-
* snapshot that is enabled for fast snapshot restore (<code>true</code> |
|
|
9836
|
-
* <code>false</code>).</p>
|
|
9837
|
-
* </li>
|
|
9838
|
-
* <li>
|
|
9839
|
-
* <p>
|
|
9840
|
-
* <code>size</code> - The size of the volume, in GiB.</p>
|
|
9841
|
-
* </li>
|
|
9842
|
-
* <li>
|
|
9843
|
-
* <p>
|
|
9844
|
-
* <code>snapshot-id</code> - The snapshot from which the volume was created.</p>
|
|
9845
|
-
* </li>
|
|
9846
|
-
* <li>
|
|
9847
|
-
* <p>
|
|
9848
|
-
* <code>status</code> - The state of the volume (<code>creating</code> |
|
|
9849
|
-
* <code>available</code> | <code>in-use</code> | <code>deleting</code> |
|
|
9850
|
-
* <code>deleted</code> | <code>error</code>).</p>
|
|
9851
|
-
* </li>
|
|
9852
|
-
* <li>
|
|
9853
|
-
* <p>
|
|
9854
|
-
* <code>tag</code>:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value.
|
|
9855
|
-
* For example, to find all resources that have a tag with the key <code>Owner</code> and the value <code>TeamA</code>, specify <code>tag:Owner</code> for the filter name and <code>TeamA</code> for the filter value.</p>
|
|
9856
|
-
* </li>
|
|
9857
|
-
* <li>
|
|
9858
|
-
* <p>
|
|
9859
|
-
* <code>tag-key</code> - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.</p>
|
|
9860
|
-
* </li>
|
|
9861
|
-
* <li>
|
|
9862
|
-
* <p>
|
|
9863
|
-
* <code>volume-id</code> - The volume ID.</p>
|
|
9864
|
-
* </li>
|
|
9865
|
-
* <li>
|
|
9866
|
-
* <p>
|
|
9867
|
-
* <code>volume-type</code> - The Amazon EBS volume type (<code>gp2</code> | <code>gp3</code> | <code>io1</code> | <code>io2</code> |
|
|
9868
|
-
* <code>st1</code> | <code>sc1</code>| <code>standard</code>)</p>
|
|
9869
|
-
* </li>
|
|
9870
|
-
* </ul>
|
|
9871
|
-
*/
|
|
9872
|
-
Filters?: Filter[];
|
|
9873
|
-
/**
|
|
9874
|
-
* <p>The volume IDs.</p>
|
|
9875
|
-
*/
|
|
9876
|
-
VolumeIds?: string[];
|
|
9877
|
-
/**
|
|
9878
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
9879
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
9880
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
9881
|
-
*/
|
|
9882
|
-
DryRun?: boolean;
|
|
9883
|
-
/**
|
|
9884
|
-
* <p>The maximum number of volumes to return for this request.
|
|
9885
|
-
* This value can be between 5 and 500; if you specify a value larger than 500, only 500 items are returned.
|
|
9886
|
-
* If this parameter is not used, then all items are returned. You cannot specify this parameter and the
|
|
9887
|
-
* volume IDs parameter in the same request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
9888
|
-
*/
|
|
9889
|
-
MaxResults?: number;
|
|
9890
|
-
/**
|
|
9891
|
-
* <p>The token returned from a previous paginated request.
|
|
9892
|
-
* Pagination continues from the end of the items returned from the previous request.</p>
|
|
9893
|
-
*/
|
|
9894
|
-
NextToken?: string;
|
|
9895
|
-
}
|
|
9896
9773
|
/**
|
|
9897
9774
|
* @internal
|
|
9898
9775
|
*/
|