@aws-sdk/client-ec2 3.427.0 → 3.429.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 +4 -0
- package/dist-cjs/commands/DisableImageCommand.js +51 -0
- package/dist-cjs/commands/EnableImageCommand.js +51 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +1 -0
- package/dist-cjs/models/models_3.js +1 -0
- package/dist-cjs/protocols/Aws_ec2.js +133 -17
- package/dist-es/EC2.js +4 -0
- package/dist-es/commands/DisableImageCommand.js +47 -0
- package/dist-es/commands/EnableImageCommand.js +47 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/models/models_3.js +1 -0
- package/dist-es/protocols/Aws_ec2.js +112 -0
- package/dist-types/EC2.d.ts +14 -0
- package/dist-types/EC2Client.d.ts +4 -2
- package/dist-types/commands/CreateCapacityReservationCommand.d.ts +2 -2
- package/dist-types/commands/CreateCapacityReservationFleetCommand.d.ts +2 -2
- package/dist-types/commands/DescribeCapacityReservationFleetsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeCapacityReservationsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeImagesCommand.d.ts +3 -1
- package/dist-types/commands/DisableImageCommand.d.ts +84 -0
- package/dist-types/commands/EnableImageCommand.d.ts +81 -0
- package/dist-types/commands/GetTransitGatewayRouteTablePropagationsCommand.d.ts +2 -1
- package/dist-types/commands/GetVerifiedAccessEndpointPolicyCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +80 -79
- package/dist-types/models/models_1.d.ts +131 -131
- package/dist-types/models/models_2.d.ts +105 -105
- package/dist-types/models/models_3.d.ts +99 -79
- package/dist-types/models/models_4.d.ts +115 -111
- package/dist-types/models/models_5.d.ts +119 -143
- package/dist-types/models/models_6.d.ts +159 -181
- package/dist-types/models/models_7.d.ts +113 -13
- package/dist-types/protocols/Aws_ec2.d.ts +18 -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/DisableImageCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/EnableImageCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetTransitGatewayRouteTablePropagationsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetVerifiedAccessEndpointPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +80 -79
- package/dist-types/ts3.4/models/models_1.d.ts +131 -133
- package/dist-types/ts3.4/models/models_2.d.ts +105 -107
- package/dist-types/ts3.4/models/models_3.d.ts +81 -80
- package/dist-types/ts3.4/models/models_4.d.ts +109 -109
- package/dist-types/ts3.4/models/models_5.d.ts +79 -87
- package/dist-types/ts3.4/models/models_6.d.ts +99 -98
- package/dist-types/ts3.4/models/models_7.d.ts +31 -14
- package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +24 -0
- package/package.json +33 -33
|
@@ -1,9 +1,87 @@
|
|
|
1
|
-
import { _InstanceType, AddedPrincipal, AddIpamOperatingRegion, AddPrefixListEntry, AddressAttribute, AddressAttributeName, Affinity, ApplianceModeSupportValue, AutoPlacement, ByoipCidr, ClientVpnAuthorizationRuleStatus, CurrencyCodeValues, DnsSupportValue, EnaSrdSpecification, EndDateType, HostMaintenance, HostRecovery, IamInstanceProfileAssociation, IamInstanceProfileSpecification, InstanceEventWindow, IpPermission, Ipv6SupportValue, PortRange, RouteTableAssociationState, Tag, TagSpecification, TransitGatewayMulticastDomainAssociations, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, UnsuccessfulItem, VerifiedAccessInstance, VerifiedAccessSseSpecificationResponse, VerifiedAccessTrustProvider } from "./models_0";
|
|
2
|
-
import { AmdSevSnpSpecification, AttributeValue, BlockDeviceMapping, CapacityReservationPreference, CapacityReservationTarget, ClientConnectOptions, ClientLoginBannerOptions, ConnectionLogOptions, DiskImageFormat, FleetExcessCapacityTerminationPolicy, FleetLaunchTemplateConfigRequest, HostnameType, IcmpTypeCode, InstanceEventWindowTimeRangeRequest, InstanceInterruptionBehavior, Ipam, IpamPool, IpamResourceDiscovery, IpamScope, LaunchTemplate, LocalGatewayRoute, ManagedPrefixList,
|
|
1
|
+
import { _InstanceType, AddedPrincipal, AddIpamOperatingRegion, AddPrefixListEntry, AddressAttribute, AddressAttributeName, Affinity, ApplianceModeSupportValue, AutoPlacement, ByoipCidr, ClientVpnAuthorizationRuleStatus, CurrencyCodeValues, DnsSupportValue, EnaSrdSpecification, EndDateType, HostMaintenance, HostRecovery, IamInstanceProfileAssociation, IamInstanceProfileSpecification, InstanceEventWindow, IpPermission, Ipv6SupportValue, PortRange, RouteTableAssociationState, Tag, TagSpecification, TransitGatewayAttachmentResourceType, TransitGatewayMulticastDomainAssociations, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, UnsuccessfulItem, VerifiedAccessInstance, VerifiedAccessSseSpecificationResponse, VerifiedAccessTrustProvider } from "./models_0";
|
|
2
|
+
import { AmdSevSnpSpecification, AttributeValue, BlockDeviceMapping, CapacityReservationPreference, CapacityReservationTarget, ClientConnectOptions, ClientLoginBannerOptions, ConnectionLogOptions, DiskImageFormat, FleetExcessCapacityTerminationPolicy, FleetLaunchTemplateConfigRequest, HostnameType, IcmpTypeCode, InstanceEventWindowTimeRangeRequest, InstanceInterruptionBehavior, Ipam, IpamPool, IpamResourceDiscovery, IpamScope, LaunchTemplate, LocalGatewayRoute, ManagedPrefixList, Placement, PlatformValues, RequestIpamResourceTag, RuleAction, SelfServicePortal, ShutdownBehavior, SpotInstanceType, TargetCapacitySpecificationRequest, VolumeType } from "./models_1";
|
|
3
3
|
import { AutoAcceptSharedAttachmentsValue, DefaultRouteTableAssociationValue, DefaultRouteTablePropagationValue, DnsOptionsSpecification, IKEVersionsRequestListValue, IpAddressType, PayerResponsibility, Phase1DHGroupNumbersRequestListValue, Phase1EncryptionAlgorithmsRequestListValue, Phase1IntegrityAlgorithmsRequestListValue, Phase2DHGroupNumbersRequestListValue, Phase2EncryptionAlgorithmsRequestListValue, Phase2IntegrityAlgorithmsRequestListValue, SnapshotState, SSEType, SubnetConfiguration, TrafficDirection, TrafficMirrorFilter, TrafficMirrorFilterRule, TrafficMirrorNetworkService, TrafficMirrorPortRangeRequest, TrafficMirrorRuleAction, TrafficMirrorSession, TransitGateway, TransitGatewayPrefixListReference, TransitGatewayRoute, VerifiedAccessEndpoint, VerifiedAccessEndpointProtocol, VerifiedAccessGroup, VerifiedAccessSseSpecificationRequest, VpnConnection, VpnEcmpSupportValue, VpnTunnelLogOptionsSpecification } from "./models_2";
|
|
4
4
|
import { ArchitectureValues, AttributeBooleanValue, BootModeValues, ConversionTask, FpgaImageAttribute, FpgaImageAttributeName, ImdsSupportValues, ImportImageLicenseConfigurationResponse, InstanceAttributeName, InstanceTagNotificationAttribute, IpamPoolCidr, LaunchPermission, PermissionGroup, SnapshotDetail, SnapshotTaskDetail, TpmSupportValues } from "./models_3";
|
|
5
5
|
import { CreateVolumePermission, ExcessCapacityTerminationPolicy, HttpTokensState, InstanceAutoRecoveryState, InstanceMetadataEndpointState, InstanceMetadataOptionsResponse, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceNetworkInterfaceSpecification, InstanceStatusEvent, LaunchTemplateConfig, Monitoring, PublicIpv4PoolRange, ReservedInstancesConfiguration, RunInstancesMonitoringEnabled, ScheduledInstance, SnapshotAttributeName, SpotFleetRequestConfigData, SpotInstanceRequest, SpotPlacement } from "./models_4";
|
|
6
|
-
import { InstanceFamilyCreditSpecification, IpamResourceCidr, Purchase, UnlimitedSupportedInstanceFamily, VerifiedAccessInstanceLoggingConfiguration, VolumeModification } from "./models_5";
|
|
6
|
+
import { InstanceFamilyCreditSpecification, IpamResourceCidr, Purchase, TransitGatewayPropagationState, UnlimitedSupportedInstanceFamily, VerifiedAccessInstanceLoggingConfiguration, VolumeModification } from "./models_5";
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
* <p>Describes a route table propagation.</p>
|
|
10
|
+
*/
|
|
11
|
+
export interface TransitGatewayRouteTablePropagation {
|
|
12
|
+
/**
|
|
13
|
+
* @public
|
|
14
|
+
* <p>The ID of the attachment.</p>
|
|
15
|
+
*/
|
|
16
|
+
TransitGatewayAttachmentId?: string;
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
* <p>The ID of the resource.</p>
|
|
20
|
+
*/
|
|
21
|
+
ResourceId?: string;
|
|
22
|
+
/**
|
|
23
|
+
* @public
|
|
24
|
+
* <p>The type of resource. Note that the <code>tgw-peering</code> resource type has been deprecated.</p>
|
|
25
|
+
*/
|
|
26
|
+
ResourceType?: TransitGatewayAttachmentResourceType;
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
* <p>The state of the resource.</p>
|
|
30
|
+
*/
|
|
31
|
+
State?: TransitGatewayPropagationState;
|
|
32
|
+
/**
|
|
33
|
+
* @public
|
|
34
|
+
* <p>The ID of the transit gateway route table announcement.</p>
|
|
35
|
+
*/
|
|
36
|
+
TransitGatewayRouteTableAnnouncementId?: string;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
export interface GetTransitGatewayRouteTablePropagationsResult {
|
|
42
|
+
/**
|
|
43
|
+
* @public
|
|
44
|
+
* <p>Information about the route table propagations.</p>
|
|
45
|
+
*/
|
|
46
|
+
TransitGatewayRouteTablePropagations?: TransitGatewayRouteTablePropagation[];
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
50
|
+
*/
|
|
51
|
+
NextToken?: string;
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
export interface GetVerifiedAccessEndpointPolicyRequest {
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
* <p>The ID of the Verified Access endpoint.</p>
|
|
60
|
+
*/
|
|
61
|
+
VerifiedAccessEndpointId: string | undefined;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
65
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
66
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
67
|
+
*/
|
|
68
|
+
DryRun?: boolean;
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
export interface GetVerifiedAccessEndpointPolicyResult {
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
* <p>The status of the Verified Access policy.</p>
|
|
77
|
+
*/
|
|
78
|
+
PolicyEnabled?: boolean;
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
* <p>The Verified Access policy document.</p>
|
|
82
|
+
*/
|
|
83
|
+
PolicyDocument?: string;
|
|
84
|
+
}
|
|
7
85
|
/**
|
|
8
86
|
* @public
|
|
9
87
|
*/
|
|
@@ -489,7 +567,7 @@ export interface ImportImageRequest {
|
|
|
489
567
|
* the <i>VM Import/Export User Guide</i>.</p>
|
|
490
568
|
* </note>
|
|
491
569
|
*/
|
|
492
|
-
BootMode?: BootModeValues
|
|
570
|
+
BootMode?: BootModeValues;
|
|
493
571
|
}
|
|
494
572
|
/**
|
|
495
573
|
* @public
|
|
@@ -590,7 +668,7 @@ export interface DiskImageDetail {
|
|
|
590
668
|
* @public
|
|
591
669
|
* <p>The disk image format.</p>
|
|
592
670
|
*/
|
|
593
|
-
Format: DiskImageFormat |
|
|
671
|
+
Format: DiskImageFormat | undefined;
|
|
594
672
|
/**
|
|
595
673
|
* @public
|
|
596
674
|
* <p>A presigned URL for the import manifest stored in Amazon S3 and presented here as an Amazon S3 presigned URL.
|
|
@@ -659,7 +737,7 @@ export interface ImportInstanceLaunchSpecification {
|
|
|
659
737
|
* @public
|
|
660
738
|
* <p>The architecture of the instance.</p>
|
|
661
739
|
*/
|
|
662
|
-
Architecture?: ArchitectureValues
|
|
740
|
+
Architecture?: ArchitectureValues;
|
|
663
741
|
/**
|
|
664
742
|
* @public
|
|
665
743
|
* <p>The security group IDs.</p>
|
|
@@ -675,13 +753,13 @@ export interface ImportInstanceLaunchSpecification {
|
|
|
675
753
|
* <p>Indicates whether an instance stops or terminates when you initiate shutdown from the instance (using the
|
|
676
754
|
* operating system command for system shutdown).</p>
|
|
677
755
|
*/
|
|
678
|
-
InstanceInitiatedShutdownBehavior?: ShutdownBehavior
|
|
756
|
+
InstanceInitiatedShutdownBehavior?: ShutdownBehavior;
|
|
679
757
|
/**
|
|
680
758
|
* @public
|
|
681
759
|
* <p>The instance type. For more information about the instance types that you can import, see <a href="https://docs.aws.amazon.com/vm-import/latest/userguide/vmie_prereqs.html#vmimport-instance-types">Instance Types</a> in the
|
|
682
760
|
* VM Import/Export User Guide.</p>
|
|
683
761
|
*/
|
|
684
|
-
InstanceType?: _InstanceType
|
|
762
|
+
InstanceType?: _InstanceType;
|
|
685
763
|
/**
|
|
686
764
|
* @public
|
|
687
765
|
* <p>Indicates whether monitoring is enabled.</p>
|
|
@@ -738,7 +816,7 @@ export interface ImportInstanceRequest {
|
|
|
738
816
|
* @public
|
|
739
817
|
* <p>The instance operating system.</p>
|
|
740
818
|
*/
|
|
741
|
-
Platform: PlatformValues |
|
|
819
|
+
Platform: PlatformValues | undefined;
|
|
742
820
|
}
|
|
743
821
|
/**
|
|
744
822
|
* @public
|
|
@@ -1195,7 +1273,7 @@ export interface ModifyAvailabilityZoneGroupRequest {
|
|
|
1195
1273
|
* <p>Indicates whether you are opted in to the Local Zone group or Wavelength Zone group. The
|
|
1196
1274
|
* only valid value is <code>opted-in</code>. You must contact <a href="https://console.aws.amazon.com/support/home#/case/create%3FissueType=customer-service%26serviceCode=general-info%26getting-started%26categoryCode=using-aws%26services">Amazon Web Services Support</a> to opt out of a Local Zone or Wavelength Zone group.</p>
|
|
1197
1275
|
*/
|
|
1198
|
-
OptInStatus: ModifyAvailabilityZoneOptInStatus |
|
|
1276
|
+
OptInStatus: ModifyAvailabilityZoneOptInStatus | undefined;
|
|
1199
1277
|
/**
|
|
1200
1278
|
* @public
|
|
1201
1279
|
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
@@ -1260,7 +1338,7 @@ export interface ModifyCapacityReservationRequest {
|
|
|
1260
1338
|
* </li>
|
|
1261
1339
|
* </ul>
|
|
1262
1340
|
*/
|
|
1263
|
-
EndDateType?: EndDateType
|
|
1341
|
+
EndDateType?: EndDateType;
|
|
1264
1342
|
/**
|
|
1265
1343
|
* @public
|
|
1266
1344
|
* <p>Reserved. Capacity Reservations you have created are accepted by default.</p>
|
|
@@ -1443,7 +1521,7 @@ export interface ModifyClientVpnEndpointRequest {
|
|
|
1443
1521
|
* @public
|
|
1444
1522
|
* <p>Specify whether to enable the self-service portal for the Client VPN endpoint.</p>
|
|
1445
1523
|
*/
|
|
1446
|
-
SelfServicePortal?: SelfServicePortal
|
|
1524
|
+
SelfServicePortal?: SelfServicePortal;
|
|
1447
1525
|
/**
|
|
1448
1526
|
* @public
|
|
1449
1527
|
* <p>The options for managing connection authorization for new client connections.</p>
|
|
@@ -1490,7 +1568,7 @@ export interface ModifyDefaultCreditSpecificationRequest {
|
|
|
1490
1568
|
* @public
|
|
1491
1569
|
* <p>The instance family.</p>
|
|
1492
1570
|
*/
|
|
1493
|
-
InstanceFamily: UnlimitedSupportedInstanceFamily |
|
|
1571
|
+
InstanceFamily: UnlimitedSupportedInstanceFamily | undefined;
|
|
1494
1572
|
/**
|
|
1495
1573
|
* @public
|
|
1496
1574
|
* <p>The credit option for CPU usage of the instance family.</p>
|
|
@@ -1573,7 +1651,7 @@ export interface ModifyFleetRequest {
|
|
|
1573
1651
|
* the EC2 Fleet is decreased below the current size of the EC2 Fleet.</p>
|
|
1574
1652
|
* <p>Supported only for fleets of type <code>maintain</code>.</p>
|
|
1575
1653
|
*/
|
|
1576
|
-
ExcessCapacityTerminationPolicy?: FleetExcessCapacityTerminationPolicy
|
|
1654
|
+
ExcessCapacityTerminationPolicy?: FleetExcessCapacityTerminationPolicy;
|
|
1577
1655
|
/**
|
|
1578
1656
|
* @public
|
|
1579
1657
|
* <p>The launch template and overrides.</p>
|
|
@@ -1615,7 +1693,7 @@ export interface LoadPermissionRequest {
|
|
|
1615
1693
|
* @public
|
|
1616
1694
|
* <p>The name of the group.</p>
|
|
1617
1695
|
*/
|
|
1618
|
-
Group?: PermissionGroup
|
|
1696
|
+
Group?: PermissionGroup;
|
|
1619
1697
|
/**
|
|
1620
1698
|
* @public
|
|
1621
1699
|
* <p>The Amazon Web Services account ID.</p>
|
|
@@ -1670,12 +1748,12 @@ export interface ModifyFpgaImageAttributeRequest {
|
|
|
1670
1748
|
* @public
|
|
1671
1749
|
* <p>The name of the attribute.</p>
|
|
1672
1750
|
*/
|
|
1673
|
-
Attribute?: FpgaImageAttributeName
|
|
1751
|
+
Attribute?: FpgaImageAttributeName;
|
|
1674
1752
|
/**
|
|
1675
1753
|
* @public
|
|
1676
1754
|
* <p>The operation type.</p>
|
|
1677
1755
|
*/
|
|
1678
|
-
OperationType?: OperationType
|
|
1756
|
+
OperationType?: OperationType;
|
|
1679
1757
|
/**
|
|
1680
1758
|
* @public
|
|
1681
1759
|
* <p>The Amazon Web Services account IDs. This parameter is valid only when modifying the <code>loadPermission</code> attribute.</p>
|
|
@@ -1726,7 +1804,7 @@ export interface ModifyHostsRequest {
|
|
|
1726
1804
|
* @public
|
|
1727
1805
|
* <p>Specify whether to enable or disable auto-placement.</p>
|
|
1728
1806
|
*/
|
|
1729
|
-
AutoPlacement?: AutoPlacement
|
|
1807
|
+
AutoPlacement?: AutoPlacement;
|
|
1730
1808
|
/**
|
|
1731
1809
|
* @public
|
|
1732
1810
|
* <p>The IDs of the Dedicated Hosts to modify.</p>
|
|
@@ -1738,7 +1816,7 @@ export interface ModifyHostsRequest {
|
|
|
1738
1816
|
* information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/dedicated-hosts-recovery.html"> Host recovery</a>
|
|
1739
1817
|
* in the <i>Amazon EC2 User Guide</i>.</p>
|
|
1740
1818
|
*/
|
|
1741
|
-
HostRecovery?: HostRecovery
|
|
1819
|
+
HostRecovery?: HostRecovery;
|
|
1742
1820
|
/**
|
|
1743
1821
|
* @public
|
|
1744
1822
|
* <p>Specifies the instance type to be supported by the Dedicated Host. Specify this
|
|
@@ -1764,7 +1842,7 @@ export interface ModifyHostsRequest {
|
|
|
1764
1842
|
* more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/dedicated-hosts-maintenance.html"> Host
|
|
1765
1843
|
* maintenance</a> in the <i>Amazon EC2 User Guide</i>.</p>
|
|
1766
1844
|
*/
|
|
1767
|
-
HostMaintenance?: HostMaintenance
|
|
1845
|
+
HostMaintenance?: HostMaintenance;
|
|
1768
1846
|
}
|
|
1769
1847
|
/**
|
|
1770
1848
|
* @public
|
|
@@ -1889,7 +1967,7 @@ export interface ModifyImageAttributeRequest {
|
|
|
1889
1967
|
* <p>The operation type.
|
|
1890
1968
|
* This parameter can be used only when the <code>Attribute</code> parameter is <code>launchPermission</code>.</p>
|
|
1891
1969
|
*/
|
|
1892
|
-
OperationType?: OperationType
|
|
1970
|
+
OperationType?: OperationType;
|
|
1893
1971
|
/**
|
|
1894
1972
|
* @public
|
|
1895
1973
|
* <p>Not supported.</p>
|
|
@@ -2023,7 +2101,7 @@ export interface ModifyInstanceAttributeRequest {
|
|
|
2023
2101
|
* </p>
|
|
2024
2102
|
* </important>
|
|
2025
2103
|
*/
|
|
2026
|
-
Attribute?: InstanceAttributeName
|
|
2104
|
+
Attribute?: InstanceAttributeName;
|
|
2027
2105
|
/**
|
|
2028
2106
|
* @public
|
|
2029
2107
|
* <p>Modifies the <code>DeleteOnTermination</code> attribute for volumes that are currently
|
|
@@ -2162,7 +2240,7 @@ export interface CapacityReservationSpecification {
|
|
|
2162
2240
|
* </li>
|
|
2163
2241
|
* </ul>
|
|
2164
2242
|
*/
|
|
2165
|
-
CapacityReservationPreference?: CapacityReservationPreference
|
|
2243
|
+
CapacityReservationPreference?: CapacityReservationPreference;
|
|
2166
2244
|
/**
|
|
2167
2245
|
* @public
|
|
2168
2246
|
* <p>Information about the target Capacity Reservation or Capacity Reservation group.</p>
|
|
@@ -2279,7 +2357,7 @@ export interface UnsuccessfulInstanceCreditSpecificationItemError {
|
|
|
2279
2357
|
* @public
|
|
2280
2358
|
* <p>The error code.</p>
|
|
2281
2359
|
*/
|
|
2282
|
-
Code?: UnsuccessfulInstanceCreditSpecificationErrorCode
|
|
2360
|
+
Code?: UnsuccessfulInstanceCreditSpecificationErrorCode;
|
|
2283
2361
|
/**
|
|
2284
2362
|
* @public
|
|
2285
2363
|
* <p>The applicable error message.</p>
|
|
@@ -2442,7 +2520,7 @@ export interface ModifyInstanceMaintenanceOptionsRequest {
|
|
|
2442
2520
|
* <p>Disables the automatic recovery behavior of your instance or sets it to
|
|
2443
2521
|
* default.</p>
|
|
2444
2522
|
*/
|
|
2445
|
-
AutoRecovery?: InstanceAutoRecoveryState
|
|
2523
|
+
AutoRecovery?: InstanceAutoRecoveryState;
|
|
2446
2524
|
/**
|
|
2447
2525
|
* @public
|
|
2448
2526
|
* <p>Checks whether you have the required permissions for the action, without actually
|
|
@@ -2466,7 +2544,7 @@ export interface ModifyInstanceMaintenanceOptionsResult {
|
|
|
2466
2544
|
* <p>Provides information on the current automatic recovery behavior of your
|
|
2467
2545
|
* instance.</p>
|
|
2468
2546
|
*/
|
|
2469
|
-
AutoRecovery?: InstanceAutoRecoveryState
|
|
2547
|
+
AutoRecovery?: InstanceAutoRecoveryState;
|
|
2470
2548
|
}
|
|
2471
2549
|
/**
|
|
2472
2550
|
* @public
|
|
@@ -2501,7 +2579,7 @@ export interface ModifyInstanceMetadataOptionsRequest {
|
|
|
2501
2579
|
* <p>Default: <code>optional</code>
|
|
2502
2580
|
* </p>
|
|
2503
2581
|
*/
|
|
2504
|
-
HttpTokens?: HttpTokensState
|
|
2582
|
+
HttpTokens?: HttpTokensState;
|
|
2505
2583
|
/**
|
|
2506
2584
|
* @public
|
|
2507
2585
|
* <p>The desired HTTP PUT response hop limit for instance metadata requests. The larger the
|
|
@@ -2517,7 +2595,7 @@ export interface ModifyInstanceMetadataOptionsRequest {
|
|
|
2517
2595
|
* <p>If you specify a value of <code>disabled</code>, you cannot access your instance
|
|
2518
2596
|
* metadata.</p>
|
|
2519
2597
|
*/
|
|
2520
|
-
HttpEndpoint?: InstanceMetadataEndpointState
|
|
2598
|
+
HttpEndpoint?: InstanceMetadataEndpointState;
|
|
2521
2599
|
/**
|
|
2522
2600
|
* @public
|
|
2523
2601
|
* <p>Checks whether you have the required permissions for the action, without actually
|
|
@@ -2531,7 +2609,7 @@ export interface ModifyInstanceMetadataOptionsRequest {
|
|
|
2531
2609
|
* <p>Enables or disables the IPv6 endpoint for the instance metadata service.
|
|
2532
2610
|
* Applies only if you enabled the HTTP metadata endpoint.</p>
|
|
2533
2611
|
*/
|
|
2534
|
-
HttpProtocolIpv6?: InstanceMetadataProtocolState
|
|
2612
|
+
HttpProtocolIpv6?: InstanceMetadataProtocolState;
|
|
2535
2613
|
/**
|
|
2536
2614
|
* @public
|
|
2537
2615
|
* <p>Set to <code>enabled</code> to allow access to instance tags from the instance
|
|
@@ -2541,7 +2619,7 @@ export interface ModifyInstanceMetadataOptionsRequest {
|
|
|
2541
2619
|
* <p>Default: <code>disabled</code>
|
|
2542
2620
|
* </p>
|
|
2543
2621
|
*/
|
|
2544
|
-
InstanceMetadataTags?: InstanceMetadataTagsState
|
|
2622
|
+
InstanceMetadataTags?: InstanceMetadataTagsState;
|
|
2545
2623
|
}
|
|
2546
2624
|
/**
|
|
2547
2625
|
* @public
|
|
@@ -2578,7 +2656,7 @@ export interface ModifyInstancePlacementRequest {
|
|
|
2578
2656
|
* @public
|
|
2579
2657
|
* <p>The affinity setting for the instance.</p>
|
|
2580
2658
|
*/
|
|
2581
|
-
Affinity?: Affinity
|
|
2659
|
+
Affinity?: Affinity;
|
|
2582
2660
|
/**
|
|
2583
2661
|
* @public
|
|
2584
2662
|
* <p>The name of the placement group in which to place the instance. For spread placement
|
|
@@ -2609,7 +2687,7 @@ export interface ModifyInstancePlacementRequest {
|
|
|
2609
2687
|
* <code>InvalidRequest</code> error code.</p>
|
|
2610
2688
|
* </note>
|
|
2611
2689
|
*/
|
|
2612
|
-
Tenancy?: HostTenancy
|
|
2690
|
+
Tenancy?: HostTenancy;
|
|
2613
2691
|
/**
|
|
2614
2692
|
* @public
|
|
2615
2693
|
* <p>The number of the partition in which to place the instance. Valid only if the
|
|
@@ -3175,7 +3253,7 @@ export interface ModifyPrivateDnsNameOptionsRequest {
|
|
|
3175
3253
|
* must be based on the instance ID. For dual-stack subnets, you can specify whether DNS
|
|
3176
3254
|
* names use the instance IPv4 address or the instance ID.</p>
|
|
3177
3255
|
*/
|
|
3178
|
-
PrivateDnsHostnameType?: HostnameType
|
|
3256
|
+
PrivateDnsHostnameType?: HostnameType;
|
|
3179
3257
|
/**
|
|
3180
3258
|
* @public
|
|
3181
3259
|
* <p>Indicates whether to respond to DNS queries for instance hostnames with DNS A
|
|
@@ -3375,7 +3453,7 @@ export interface ModifySnapshotAttributeRequest {
|
|
|
3375
3453
|
* @public
|
|
3376
3454
|
* <p>The snapshot attribute to modify. Only volume creation permissions can be modified.</p>
|
|
3377
3455
|
*/
|
|
3378
|
-
Attribute?: SnapshotAttributeName
|
|
3456
|
+
Attribute?: SnapshotAttributeName;
|
|
3379
3457
|
/**
|
|
3380
3458
|
* @public
|
|
3381
3459
|
* <p>A JSON representation of the snapshot attribute modification.</p>
|
|
@@ -3390,7 +3468,7 @@ export interface ModifySnapshotAttributeRequest {
|
|
|
3390
3468
|
* @public
|
|
3391
3469
|
* <p>The type of operation to perform to the attribute.</p>
|
|
3392
3470
|
*/
|
|
3393
|
-
OperationType?: OperationType
|
|
3471
|
+
OperationType?: OperationType;
|
|
3394
3472
|
/**
|
|
3395
3473
|
* @public
|
|
3396
3474
|
* <p>The ID of the snapshot.</p>
|
|
@@ -3433,7 +3511,7 @@ export interface ModifySnapshotTierRequest {
|
|
|
3433
3511
|
* @public
|
|
3434
3512
|
* <p>The name of the storage tier. You must specify <code>archive</code>.</p>
|
|
3435
3513
|
*/
|
|
3436
|
-
StorageTier?: TargetStorageTier
|
|
3514
|
+
StorageTier?: TargetStorageTier;
|
|
3437
3515
|
/**
|
|
3438
3516
|
* @public
|
|
3439
3517
|
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
@@ -3468,7 +3546,7 @@ export interface ModifySpotFleetRequestRequest {
|
|
|
3468
3546
|
* of the Spot Fleet request is decreased below the current size of the Spot Fleet.</p>
|
|
3469
3547
|
* <p>Supported only for fleets of type <code>maintain</code>.</p>
|
|
3470
3548
|
*/
|
|
3471
|
-
ExcessCapacityTerminationPolicy?: ExcessCapacityTerminationPolicy
|
|
3549
|
+
ExcessCapacityTerminationPolicy?: ExcessCapacityTerminationPolicy;
|
|
3472
3550
|
/**
|
|
3473
3551
|
* @public
|
|
3474
3552
|
* <p>The launch template and overrides. You can only use this parameter if you specified a
|
|
@@ -3561,7 +3639,7 @@ export interface ModifySubnetAttributeRequest {
|
|
|
3561
3639
|
* instance DNS name can be based on the instance IPv4 address (ip-name) or the instance ID (resource-name). For IPv6 only subnets, an instance
|
|
3562
3640
|
* DNS name must be based on the instance ID (resource-name).</p>
|
|
3563
3641
|
*/
|
|
3564
|
-
PrivateDnsHostnameTypeOnLaunch?: HostnameType
|
|
3642
|
+
PrivateDnsHostnameTypeOnLaunch?: HostnameType;
|
|
3565
3643
|
/**
|
|
3566
3644
|
* @public
|
|
3567
3645
|
* <p>Indicates whether to respond to DNS queries for instance hostnames with DNS A records.</p>
|
|
@@ -3604,12 +3682,12 @@ export interface ModifyTrafficMirrorFilterNetworkServicesRequest {
|
|
|
3604
3682
|
* @public
|
|
3605
3683
|
* <p>The network service, for example Amazon DNS, that you want to mirror.</p>
|
|
3606
3684
|
*/
|
|
3607
|
-
AddNetworkServices?:
|
|
3685
|
+
AddNetworkServices?: TrafficMirrorNetworkService[];
|
|
3608
3686
|
/**
|
|
3609
3687
|
* @public
|
|
3610
3688
|
* <p>The network service, for example Amazon DNS, that you no longer want to mirror.</p>
|
|
3611
3689
|
*/
|
|
3612
|
-
RemoveNetworkServices?:
|
|
3690
|
+
RemoveNetworkServices?: TrafficMirrorNetworkService[];
|
|
3613
3691
|
/**
|
|
3614
3692
|
* @public
|
|
3615
3693
|
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
@@ -3655,7 +3733,7 @@ export interface ModifyTrafficMirrorFilterRuleRequest {
|
|
|
3655
3733
|
* @public
|
|
3656
3734
|
* <p>The type of traffic to assign to the rule.</p>
|
|
3657
3735
|
*/
|
|
3658
|
-
TrafficDirection?: TrafficDirection
|
|
3736
|
+
TrafficDirection?: TrafficDirection;
|
|
3659
3737
|
/**
|
|
3660
3738
|
* @public
|
|
3661
3739
|
* <p>The number of the Traffic Mirror rule. This number must be unique for each Traffic Mirror rule in a given
|
|
@@ -3666,7 +3744,7 @@ export interface ModifyTrafficMirrorFilterRuleRequest {
|
|
|
3666
3744
|
* @public
|
|
3667
3745
|
* <p>The action to assign to the rule.</p>
|
|
3668
3746
|
*/
|
|
3669
|
-
RuleAction?: TrafficMirrorRuleAction
|
|
3747
|
+
RuleAction?: TrafficMirrorRuleAction;
|
|
3670
3748
|
/**
|
|
3671
3749
|
* @public
|
|
3672
3750
|
* <p>The destination ports that are associated with the Traffic Mirror rule.</p>
|
|
@@ -3702,7 +3780,7 @@ export interface ModifyTrafficMirrorFilterRuleRequest {
|
|
|
3702
3780
|
* <p>The properties that you want to remove from the Traffic Mirror filter rule.</p>
|
|
3703
3781
|
* <p>When you remove a property from a Traffic Mirror filter rule, the property is set to the default.</p>
|
|
3704
3782
|
*/
|
|
3705
|
-
RemoveFields?:
|
|
3783
|
+
RemoveFields?: TrafficMirrorFilterRuleField[];
|
|
3706
3784
|
/**
|
|
3707
3785
|
* @public
|
|
3708
3786
|
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
@@ -3780,7 +3858,7 @@ export interface ModifyTrafficMirrorSessionRequest {
|
|
|
3780
3858
|
* <p>The properties that you want to remove from the Traffic Mirror session.</p>
|
|
3781
3859
|
* <p>When you remove a property from a Traffic Mirror session, the property is set to the default.</p>
|
|
3782
3860
|
*/
|
|
3783
|
-
RemoveFields?:
|
|
3861
|
+
RemoveFields?: TrafficMirrorSessionField[];
|
|
3784
3862
|
/**
|
|
3785
3863
|
* @public
|
|
3786
3864
|
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
@@ -3818,22 +3896,22 @@ export interface ModifyTransitGatewayOptions {
|
|
|
3818
3896
|
* @public
|
|
3819
3897
|
* <p>Enable or disable Equal Cost Multipath Protocol support.</p>
|
|
3820
3898
|
*/
|
|
3821
|
-
VpnEcmpSupport?: VpnEcmpSupportValue
|
|
3899
|
+
VpnEcmpSupport?: VpnEcmpSupportValue;
|
|
3822
3900
|
/**
|
|
3823
3901
|
* @public
|
|
3824
3902
|
* <p>Enable or disable DNS support.</p>
|
|
3825
3903
|
*/
|
|
3826
|
-
DnsSupport?: DnsSupportValue
|
|
3904
|
+
DnsSupport?: DnsSupportValue;
|
|
3827
3905
|
/**
|
|
3828
3906
|
* @public
|
|
3829
3907
|
* <p>Enable or disable automatic acceptance of attachment requests.</p>
|
|
3830
3908
|
*/
|
|
3831
|
-
AutoAcceptSharedAttachments?: AutoAcceptSharedAttachmentsValue
|
|
3909
|
+
AutoAcceptSharedAttachments?: AutoAcceptSharedAttachmentsValue;
|
|
3832
3910
|
/**
|
|
3833
3911
|
* @public
|
|
3834
3912
|
* <p>Enable or disable automatic association with the default association route table.</p>
|
|
3835
3913
|
*/
|
|
3836
|
-
DefaultRouteTableAssociation?: DefaultRouteTableAssociationValue
|
|
3914
|
+
DefaultRouteTableAssociation?: DefaultRouteTableAssociationValue;
|
|
3837
3915
|
/**
|
|
3838
3916
|
* @public
|
|
3839
3917
|
* <p>The ID of the default association route table.</p>
|
|
@@ -3843,7 +3921,7 @@ export interface ModifyTransitGatewayOptions {
|
|
|
3843
3921
|
* @public
|
|
3844
3922
|
* <p>Enable or disable automatic propagation of routes to the default propagation route table.</p>
|
|
3845
3923
|
*/
|
|
3846
|
-
DefaultRouteTablePropagation?: DefaultRouteTablePropagationValue
|
|
3924
|
+
DefaultRouteTablePropagation?: DefaultRouteTablePropagationValue;
|
|
3847
3925
|
/**
|
|
3848
3926
|
* @public
|
|
3849
3927
|
* <p>The ID of the default propagation route table.</p>
|
|
@@ -3945,17 +4023,17 @@ export interface ModifyTransitGatewayVpcAttachmentRequestOptions {
|
|
|
3945
4023
|
* @public
|
|
3946
4024
|
* <p>Enable or disable DNS support. The default is <code>enable</code>.</p>
|
|
3947
4025
|
*/
|
|
3948
|
-
DnsSupport?: DnsSupportValue
|
|
4026
|
+
DnsSupport?: DnsSupportValue;
|
|
3949
4027
|
/**
|
|
3950
4028
|
* @public
|
|
3951
4029
|
* <p>Enable or disable IPv6 support. The default is <code>enable</code>.</p>
|
|
3952
4030
|
*/
|
|
3953
|
-
Ipv6Support?: Ipv6SupportValue
|
|
4031
|
+
Ipv6Support?: Ipv6SupportValue;
|
|
3954
4032
|
/**
|
|
3955
4033
|
* @public
|
|
3956
4034
|
* <p>Enable or disable support for appliance mode. If enabled, a traffic flow between a source and destination uses the same Availability Zone for the VPC attachment for the lifetime of that flow. The default is <code>disable</code>.</p>
|
|
3957
4035
|
*/
|
|
3958
|
-
ApplianceModeSupport?: ApplianceModeSupportValue
|
|
4036
|
+
ApplianceModeSupport?: ApplianceModeSupportValue;
|
|
3959
4037
|
}
|
|
3960
4038
|
/**
|
|
3961
4039
|
* @public
|
|
@@ -4014,7 +4092,7 @@ export interface ModifyVerifiedAccessEndpointLoadBalancerOptions {
|
|
|
4014
4092
|
* @public
|
|
4015
4093
|
* <p>The IP protocol.</p>
|
|
4016
4094
|
*/
|
|
4017
|
-
Protocol?: VerifiedAccessEndpointProtocol
|
|
4095
|
+
Protocol?: VerifiedAccessEndpointProtocol;
|
|
4018
4096
|
/**
|
|
4019
4097
|
* @public
|
|
4020
4098
|
* <p>The IP port number.</p>
|
|
@@ -4031,7 +4109,7 @@ export interface ModifyVerifiedAccessEndpointEniOptions {
|
|
|
4031
4109
|
* @public
|
|
4032
4110
|
* <p>The IP protocol.</p>
|
|
4033
4111
|
*/
|
|
4034
|
-
Protocol?: VerifiedAccessEndpointProtocol
|
|
4112
|
+
Protocol?: VerifiedAccessEndpointProtocol;
|
|
4035
4113
|
/**
|
|
4036
4114
|
* @public
|
|
4037
4115
|
* <p>The IP port number.</p>
|
|
@@ -4568,7 +4646,7 @@ export interface ModifyVolumeRequest {
|
|
|
4568
4646
|
* <p>The target EBS volume type of the volume. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html">Amazon EBS volume types</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
4569
4647
|
* <p>Default: The existing type is retained.</p>
|
|
4570
4648
|
*/
|
|
4571
|
-
VolumeType?: VolumeType
|
|
4649
|
+
VolumeType?: VolumeType;
|
|
4572
4650
|
/**
|
|
4573
4651
|
* @public
|
|
4574
4652
|
* <p>The target IOPS rate of the volume. This parameter is valid only for <code>gp3</code>, <code>io1</code>, and <code>io2</code> volumes.</p>
|
|
@@ -4737,7 +4815,7 @@ export interface ModifyVpcEndpointRequest {
|
|
|
4737
4815
|
* @public
|
|
4738
4816
|
* <p>The IP address type for the endpoint.</p>
|
|
4739
4817
|
*/
|
|
4740
|
-
IpAddressType?: IpAddressType
|
|
4818
|
+
IpAddressType?: IpAddressType;
|
|
4741
4819
|
/**
|
|
4742
4820
|
* @public
|
|
4743
4821
|
* <p>The DNS options for the endpoint.</p>
|
|
@@ -4900,7 +4978,7 @@ export interface ModifyVpcEndpointServicePayerResponsibilityRequest {
|
|
|
4900
4978
|
* If you set the payer responsibility to the service owner, you cannot set it back to the
|
|
4901
4979
|
* endpoint owner.</p>
|
|
4902
4980
|
*/
|
|
4903
|
-
PayerResponsibility: PayerResponsibility |
|
|
4981
|
+
PayerResponsibility: PayerResponsibility | undefined;
|
|
4904
4982
|
}
|
|
4905
4983
|
/**
|
|
4906
4984
|
* @public
|
|
@@ -5067,7 +5145,7 @@ export interface ModifyVpcTenancyRequest {
|
|
|
5067
5145
|
* @public
|
|
5068
5146
|
* <p>The instance tenancy attribute for the VPC. </p>
|
|
5069
5147
|
*/
|
|
5070
|
-
InstanceTenancy: VpcTenancy |
|
|
5148
|
+
InstanceTenancy: VpcTenancy | undefined;
|
|
5071
5149
|
/**
|
|
5072
5150
|
* @public
|
|
5073
5151
|
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
@@ -5564,7 +5642,7 @@ export interface MoveAddressToVpcResult {
|
|
|
5564
5642
|
* @public
|
|
5565
5643
|
* <p>The status of the move of the IP address.</p>
|
|
5566
5644
|
*/
|
|
5567
|
-
Status?: Status
|
|
5645
|
+
Status?: Status;
|
|
5568
5646
|
}
|
|
5569
5647
|
/**
|
|
5570
5648
|
* @public
|
|
@@ -5797,7 +5875,7 @@ export interface PurchaseHostReservationRequest {
|
|
|
5797
5875
|
* <code>totalHourlyPrice</code> amounts are specified. At this time, the only
|
|
5798
5876
|
* supported currency is <code>USD</code>.</p>
|
|
5799
5877
|
*/
|
|
5800
|
-
CurrencyCode?: CurrencyCodeValues
|
|
5878
|
+
CurrencyCode?: CurrencyCodeValues;
|
|
5801
5879
|
/**
|
|
5802
5880
|
* @public
|
|
5803
5881
|
* <p>The IDs of the Dedicated Hosts with which the reservation will be associated.</p>
|
|
@@ -5839,7 +5917,7 @@ export interface PurchaseHostReservationResult {
|
|
|
5839
5917
|
* <code>totalHourlyPrice</code> amounts are specified. At this time, the only
|
|
5840
5918
|
* supported currency is <code>USD</code>.</p>
|
|
5841
5919
|
*/
|
|
5842
|
-
CurrencyCode?: CurrencyCodeValues
|
|
5920
|
+
CurrencyCode?: CurrencyCodeValues;
|
|
5843
5921
|
/**
|
|
5844
5922
|
* @public
|
|
5845
5923
|
* <p>Describes the details of the purchase.</p>
|
|
@@ -5871,7 +5949,7 @@ export interface ReservedInstanceLimitPrice {
|
|
|
5871
5949
|
* <p>The currency in which the <code>limitPrice</code> amount is specified.
|
|
5872
5950
|
* At this time, the only supported currency is <code>USD</code>.</p>
|
|
5873
5951
|
*/
|
|
5874
|
-
CurrencyCode?: CurrencyCodeValues
|
|
5952
|
+
CurrencyCode?: CurrencyCodeValues;
|
|
5875
5953
|
}
|
|
5876
5954
|
/**
|
|
5877
5955
|
* @public
|
|
@@ -6006,7 +6084,7 @@ export interface RegisterImageRequest {
|
|
|
6006
6084
|
* <p>Default: For Amazon EBS-backed AMIs, <code>i386</code>.
|
|
6007
6085
|
* For instance store-backed AMIs, the architecture specified in the manifest file.</p>
|
|
6008
6086
|
*/
|
|
6009
|
-
Architecture?: ArchitectureValues
|
|
6087
|
+
Architecture?: ArchitectureValues;
|
|
6010
6088
|
/**
|
|
6011
6089
|
* @public
|
|
6012
6090
|
* <p>The block device mapping entries.</p>
|
|
@@ -6089,13 +6167,13 @@ export interface RegisterImageRequest {
|
|
|
6089
6167
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ami-boot.html">Boot modes</a> in the
|
|
6090
6168
|
* <i>Amazon EC2 User Guide</i>.</p>
|
|
6091
6169
|
*/
|
|
6092
|
-
BootMode?: BootModeValues
|
|
6170
|
+
BootMode?: BootModeValues;
|
|
6093
6171
|
/**
|
|
6094
6172
|
* @public
|
|
6095
6173
|
* <p>Set to <code>v2.0</code> to enable Trusted Platform Module (TPM) support. For more
|
|
6096
6174
|
* information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/nitrotpm.html">NitroTPM</a> in the <i>Amazon EC2 User Guide</i>.</p>
|
|
6097
6175
|
*/
|
|
6098
|
-
TpmSupport?: TpmSupportValues
|
|
6176
|
+
TpmSupport?: TpmSupportValues;
|
|
6099
6177
|
/**
|
|
6100
6178
|
* @public
|
|
6101
6179
|
* <p>Base64 representation of the non-volatile UEFI variable store. To retrieve the UEFI data,
|
|
@@ -6117,7 +6195,7 @@ export interface RegisterImageRequest {
|
|
|
6117
6195
|
* <p>If you set the value to <code>v2.0</code>, make sure that your AMI software can support IMDSv2.</p>
|
|
6118
6196
|
* </note>
|
|
6119
6197
|
*/
|
|
6120
|
-
ImdsSupport?: ImdsSupportValues
|
|
6198
|
+
ImdsSupport?: ImdsSupportValues;
|
|
6121
6199
|
}
|
|
6122
6200
|
/**
|
|
6123
6201
|
* @public
|
|
@@ -6651,7 +6729,7 @@ export interface ReplaceNetworkAclEntryRequest {
|
|
|
6651
6729
|
* @public
|
|
6652
6730
|
* <p>Indicates whether to allow or deny the traffic that matches the rule.</p>
|
|
6653
6731
|
*/
|
|
6654
|
-
RuleAction: RuleAction |
|
|
6732
|
+
RuleAction: RuleAction | undefined;
|
|
6655
6733
|
/**
|
|
6656
6734
|
* @public
|
|
6657
6735
|
* <p>The rule number of the entry to replace.</p>
|
|
@@ -6971,7 +7049,7 @@ export interface ReportInstanceStatusRequest {
|
|
|
6971
7049
|
* </li>
|
|
6972
7050
|
* </ul>
|
|
6973
7051
|
*/
|
|
6974
|
-
ReasonCodes:
|
|
7052
|
+
ReasonCodes: ReportInstanceReasonCodes[] | undefined;
|
|
6975
7053
|
/**
|
|
6976
7054
|
* @public
|
|
6977
7055
|
* <p>The time at which the reported instance health state began.</p>
|
|
@@ -6981,7 +7059,7 @@ export interface ReportInstanceStatusRequest {
|
|
|
6981
7059
|
* @public
|
|
6982
7060
|
* <p>The status of all instances listed.</p>
|
|
6983
7061
|
*/
|
|
6984
|
-
Status: ReportStatusType |
|
|
7062
|
+
Status: ReportStatusType | undefined;
|
|
6985
7063
|
}
|
|
6986
7064
|
/**
|
|
6987
7065
|
* @public
|
|
@@ -7061,7 +7139,7 @@ export interface RequestSpotLaunchSpecification {
|
|
|
7061
7139
|
* @public
|
|
7062
7140
|
* <p>The instance type. Only one instance type can be specified.</p>
|
|
7063
7141
|
*/
|
|
7064
|
-
InstanceType?: _InstanceType
|
|
7142
|
+
InstanceType?: _InstanceType;
|
|
7065
7143
|
/**
|
|
7066
7144
|
* @public
|
|
7067
7145
|
* <p>The ID of the kernel.</p>
|
|
@@ -7182,7 +7260,7 @@ export interface RequestSpotInstancesRequest {
|
|
|
7182
7260
|
* <p>Default: <code>one-time</code>
|
|
7183
7261
|
* </p>
|
|
7184
7262
|
*/
|
|
7185
|
-
Type?: SpotInstanceType
|
|
7263
|
+
Type?: SpotInstanceType;
|
|
7186
7264
|
/**
|
|
7187
7265
|
* @public
|
|
7188
7266
|
* <p>The start date of the request. If this is a one-time request, the request becomes
|
|
@@ -7224,7 +7302,7 @@ export interface RequestSpotInstancesRequest {
|
|
|
7224
7302
|
* @public
|
|
7225
7303
|
* <p>The behavior when a Spot Instance is interrupted. The default is <code>terminate</code>.</p>
|
|
7226
7304
|
*/
|
|
7227
|
-
InstanceInterruptionBehavior?: InstanceInterruptionBehavior
|
|
7305
|
+
InstanceInterruptionBehavior?: InstanceInterruptionBehavior;
|
|
7228
7306
|
}
|
|
7229
7307
|
/**
|
|
7230
7308
|
* @public
|
|
@@ -7250,7 +7328,7 @@ export interface ResetAddressAttributeRequest {
|
|
|
7250
7328
|
* @public
|
|
7251
7329
|
* <p>The attribute of the IP address.</p>
|
|
7252
7330
|
*/
|
|
7253
|
-
Attribute: AddressAttributeName |
|
|
7331
|
+
Attribute: AddressAttributeName | undefined;
|
|
7254
7332
|
/**
|
|
7255
7333
|
* @public
|
|
7256
7334
|
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
@@ -7322,7 +7400,7 @@ export interface ResetFpgaImageAttributeRequest {
|
|
|
7322
7400
|
* @public
|
|
7323
7401
|
* <p>The attribute.</p>
|
|
7324
7402
|
*/
|
|
7325
|
-
Attribute?: ResetFpgaImageAttributeName
|
|
7403
|
+
Attribute?: ResetFpgaImageAttributeName;
|
|
7326
7404
|
}
|
|
7327
7405
|
/**
|
|
7328
7406
|
* @public
|
|
@@ -7354,7 +7432,7 @@ export interface ResetImageAttributeRequest {
|
|
|
7354
7432
|
* @public
|
|
7355
7433
|
* <p>The attribute to reset (currently you can only reset the launch permission attribute).</p>
|
|
7356
7434
|
*/
|
|
7357
|
-
Attribute: ResetImageAttributeName |
|
|
7435
|
+
Attribute: ResetImageAttributeName | undefined;
|
|
7358
7436
|
/**
|
|
7359
7437
|
* @public
|
|
7360
7438
|
* <p>The ID of the AMI.</p>
|
|
@@ -7380,7 +7458,7 @@ export interface ResetInstanceAttributeRequest {
|
|
|
7380
7458
|
* <code>ramdisk</code> | <code>sourceDestCheck</code>.</p>
|
|
7381
7459
|
* </important>
|
|
7382
7460
|
*/
|
|
7383
|
-
Attribute: InstanceAttributeName |
|
|
7461
|
+
Attribute: InstanceAttributeName | undefined;
|
|
7384
7462
|
/**
|
|
7385
7463
|
* @public
|
|
7386
7464
|
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
@@ -7426,7 +7504,7 @@ export interface ResetSnapshotAttributeRequest {
|
|
|
7426
7504
|
* <p>The attribute to reset. Currently, only the attribute for permission to create volumes can
|
|
7427
7505
|
* be reset.</p>
|
|
7428
7506
|
*/
|
|
7429
|
-
Attribute: SnapshotAttributeName |
|
|
7507
|
+
Attribute: SnapshotAttributeName | undefined;
|
|
7430
7508
|
/**
|
|
7431
7509
|
* @public
|
|
7432
7510
|
* <p>The ID of the snapshot.</p>
|
|
@@ -7470,7 +7548,7 @@ export interface RestoreAddressToClassicResult {
|
|
|
7470
7548
|
* @public
|
|
7471
7549
|
* <p>The move status for the IP address.</p>
|
|
7472
7550
|
*/
|
|
7473
|
-
Status?: Status
|
|
7551
|
+
Status?: Status;
|
|
7474
7552
|
}
|
|
7475
7553
|
/**
|
|
7476
7554
|
* @public
|
|
@@ -7597,7 +7675,7 @@ export interface RestoreSnapshotFromRecycleBinResult {
|
|
|
7597
7675
|
* @public
|
|
7598
7676
|
* <p>The state of the snapshot.</p>
|
|
7599
7677
|
*/
|
|
7600
|
-
State?: SnapshotState
|
|
7678
|
+
State?: SnapshotState;
|
|
7601
7679
|
/**
|
|
7602
7680
|
* @public
|
|
7603
7681
|
* <p>The ID of the volume that was used to create the snapshot.</p>
|
|
@@ -7612,7 +7690,7 @@ export interface RestoreSnapshotFromRecycleBinResult {
|
|
|
7612
7690
|
* @public
|
|
7613
7691
|
* <p>Reserved for future use.</p>
|
|
7614
7692
|
*/
|
|
7615
|
-
SseType?: SSEType
|
|
7693
|
+
SseType?: SSEType;
|
|
7616
7694
|
}
|
|
7617
7695
|
/**
|
|
7618
7696
|
* @public
|
|
@@ -7904,7 +7982,7 @@ export interface CpuOptionsRequest {
|
|
|
7904
7982
|
* with M6a, R6a, and C6a instance types only. For more information, see
|
|
7905
7983
|
* <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/sev-snp.html">AMD SEV-SNP</a>.</p>
|
|
7906
7984
|
*/
|
|
7907
|
-
AmdSevSnp?: AmdSevSnpSpecification
|
|
7985
|
+
AmdSevSnp?: AmdSevSnpSpecification;
|
|
7908
7986
|
}
|
|
7909
7987
|
/**
|
|
7910
7988
|
* @public
|
|
@@ -7929,106 +8007,6 @@ export interface ElasticInferenceAccelerator {
|
|
|
7929
8007
|
*/
|
|
7930
8008
|
Count?: number;
|
|
7931
8009
|
}
|
|
7932
|
-
/**
|
|
7933
|
-
* @public
|
|
7934
|
-
* <p>Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves. For
|
|
7935
|
-
* more information, see <a href="https://docs.aws.amazon.com/enclaves/latest/user/nitro-enclave.html"> What is Amazon Web Services Nitro
|
|
7936
|
-
* Enclaves?</a> in the <i>Amazon Web Services Nitro Enclaves User
|
|
7937
|
-
* Guide</i>.</p>
|
|
7938
|
-
*/
|
|
7939
|
-
export interface EnclaveOptionsRequest {
|
|
7940
|
-
/**
|
|
7941
|
-
* @public
|
|
7942
|
-
* <p>To enable the instance for Amazon Web Services Nitro Enclaves, set this parameter to
|
|
7943
|
-
* <code>true</code>.</p>
|
|
7944
|
-
*/
|
|
7945
|
-
Enabled?: boolean;
|
|
7946
|
-
}
|
|
7947
|
-
/**
|
|
7948
|
-
* @public
|
|
7949
|
-
* <p>Indicates whether your instance is configured for hibernation. This parameter is valid
|
|
7950
|
-
* only if the instance meets the <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/hibernating-prerequisites.html">hibernation
|
|
7951
|
-
* prerequisites</a>. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Hibernate.html">Hibernate your instance</a> in the
|
|
7952
|
-
* <i>Amazon EC2 User Guide</i>.</p>
|
|
7953
|
-
*/
|
|
7954
|
-
export interface HibernationOptionsRequest {
|
|
7955
|
-
/**
|
|
7956
|
-
* @public
|
|
7957
|
-
* <p>Set to <code>true</code> to enable your instance for hibernation.</p>
|
|
7958
|
-
* <p>Default: <code>false</code>
|
|
7959
|
-
* </p>
|
|
7960
|
-
*/
|
|
7961
|
-
Configured?: boolean;
|
|
7962
|
-
}
|
|
7963
|
-
/**
|
|
7964
|
-
* @public
|
|
7965
|
-
* <p>The options for Spot Instances.</p>
|
|
7966
|
-
*/
|
|
7967
|
-
export interface SpotMarketOptions {
|
|
7968
|
-
/**
|
|
7969
|
-
* @public
|
|
7970
|
-
* <p>The maximum hourly price that you're willing to pay for a Spot Instance. We do not
|
|
7971
|
-
* recommend using this parameter because it can lead to increased interruptions. If you do
|
|
7972
|
-
* not specify this parameter, you will pay the current Spot price.</p>
|
|
7973
|
-
* <important>
|
|
7974
|
-
* <p>If you specify a maximum price, your Spot Instances will be interrupted more
|
|
7975
|
-
* frequently than if you do not specify this parameter.</p>
|
|
7976
|
-
* </important>
|
|
7977
|
-
*/
|
|
7978
|
-
MaxPrice?: string;
|
|
7979
|
-
/**
|
|
7980
|
-
* @public
|
|
7981
|
-
* <p>The Spot Instance request type. For <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances">RunInstances</a>, persistent
|
|
7982
|
-
* Spot Instance requests are only supported when the instance interruption behavior is
|
|
7983
|
-
* either <code>hibernate</code> or <code>stop</code>.</p>
|
|
7984
|
-
*/
|
|
7985
|
-
SpotInstanceType?: SpotInstanceType | string;
|
|
7986
|
-
/**
|
|
7987
|
-
* @public
|
|
7988
|
-
* <p>Deprecated.</p>
|
|
7989
|
-
*/
|
|
7990
|
-
BlockDurationMinutes?: number;
|
|
7991
|
-
/**
|
|
7992
|
-
* @public
|
|
7993
|
-
* <p>The end date of the request, in UTC format
|
|
7994
|
-
* (<i>YYYY</i>-<i>MM</i>-<i>DD</i>T<i>HH</i>:<i>MM</i>:<i>SS</i>Z).
|
|
7995
|
-
* Supported only for persistent requests.</p>
|
|
7996
|
-
* <ul>
|
|
7997
|
-
* <li>
|
|
7998
|
-
* <p>For a persistent request, the request remains active until the
|
|
7999
|
-
* <code>ValidUntil</code> date and time is reached. Otherwise, the request
|
|
8000
|
-
* remains active until you cancel it.</p>
|
|
8001
|
-
* </li>
|
|
8002
|
-
* <li>
|
|
8003
|
-
* <p>For a one-time request, <code>ValidUntil</code> is not supported. The request
|
|
8004
|
-
* remains active until all instances launch or you cancel the request.</p>
|
|
8005
|
-
* </li>
|
|
8006
|
-
* </ul>
|
|
8007
|
-
*/
|
|
8008
|
-
ValidUntil?: Date;
|
|
8009
|
-
/**
|
|
8010
|
-
* @public
|
|
8011
|
-
* <p>The behavior when a Spot Instance is interrupted. The default is
|
|
8012
|
-
* <code>terminate</code>.</p>
|
|
8013
|
-
*/
|
|
8014
|
-
InstanceInterruptionBehavior?: InstanceInterruptionBehavior | string;
|
|
8015
|
-
}
|
|
8016
|
-
/**
|
|
8017
|
-
* @public
|
|
8018
|
-
* <p>Describes the market (purchasing) option for the instances.</p>
|
|
8019
|
-
*/
|
|
8020
|
-
export interface InstanceMarketOptionsRequest {
|
|
8021
|
-
/**
|
|
8022
|
-
* @public
|
|
8023
|
-
* <p>The market type.</p>
|
|
8024
|
-
*/
|
|
8025
|
-
MarketType?: MarketType | string;
|
|
8026
|
-
/**
|
|
8027
|
-
* @public
|
|
8028
|
-
* <p>The options for Spot Instances.</p>
|
|
8029
|
-
*/
|
|
8030
|
-
SpotOptions?: SpotMarketOptions;
|
|
8031
|
-
}
|
|
8032
8010
|
/**
|
|
8033
8011
|
* @internal
|
|
8034
8012
|
*/
|