@aws-sdk/client-ec2 3.1117.0 → 3.1119.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +57 -6
- package/dist-es/models/enums.js +11 -0
- package/dist-es/schemas/schemas_0.js +40 -5
- package/dist-types/commands/CreateDefaultVpcCommand.d.ts +1 -1
- package/dist-types/commands/CreateFleetCommand.d.ts +17 -3
- package/dist-types/commands/CreateLaunchTemplateCommand.d.ts +1 -1
- package/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +2 -2
- package/dist-types/commands/CreateNetworkInterfacePermissionCommand.d.ts +1 -2
- package/dist-types/commands/CreateVpcCommand.d.ts +1 -1
- package/dist-types/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFleetsCommand.d.ts +11 -4
- package/dist-types/commands/DescribeFlowLogsCommand.d.ts +1 -2
- package/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeScheduledInstancesCommand.d.ts +1 -2
- package/dist-types/commands/DescribeVpcsCommand.d.ts +1 -1
- package/dist-types/commands/EnableFastLaunchCommand.d.ts +1 -2
- package/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +1 -1
- package/dist-types/commands/ImportSnapshotCommand.d.ts +1 -1
- package/dist-types/commands/ResetAddressAttributeCommand.d.ts +1 -1
- package/dist-types/commands/ResetEbsDefaultKmsKeyIdCommand.d.ts +1 -2
- package/dist-types/commands/RunInstancesCommand.d.ts +1 -1
- package/dist-types/models/enums.d.ts +27 -0
- package/dist-types/models/models_1.d.ts +74 -59
- package/dist-types/models/models_2.d.ts +52 -29
- package/dist-types/models/models_3.d.ts +69 -118
- package/dist-types/models/models_4.d.ts +113 -154
- package/dist-types/models/models_5.d.ts +153 -86
- package/dist-types/models/models_6.d.ts +86 -131
- package/dist-types/models/models_7.d.ts +135 -49
- package/dist-types/models/models_8.d.ts +46 -2
- package/dist-types/schemas/schemas_0.d.ts +3 -0
- package/dist-types/ts3.4/commands/CreateNetworkInterfacePermissionCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeFleetsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DescribeFlowLogsCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/DescribeScheduledInstancesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/EnableFastLaunchCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/ImportSnapshotCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ResetAddressAttributeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ResetEbsDefaultKmsKeyIdCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/enums.d.ts +15 -0
- package/dist-types/ts3.4/models/models_1.d.ts +12 -13
- package/dist-types/ts3.4/models/models_2.d.ts +12 -9
- package/dist-types/ts3.4/models/models_3.d.ts +15 -17
- package/dist-types/ts3.4/models/models_4.d.ts +18 -36
- package/dist-types/ts3.4/models/models_5.d.ts +30 -17
- package/dist-types/ts3.4/models/models_6.d.ts +16 -24
- package/dist-types/ts3.4/models/models_7.d.ts +28 -13
- package/dist-types/ts3.4/models/models_8.d.ts +13 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +3 -0
- package/package.json +1 -1
|
@@ -40,7 +40,6 @@ import {
|
|
|
40
40
|
InstanceGeneration,
|
|
41
41
|
InstanceInterruptionBehavior,
|
|
42
42
|
InstanceLifecycle,
|
|
43
|
-
InterfacePermissionType,
|
|
44
43
|
InterruptibleCapacityReservationAllocationStatus,
|
|
45
44
|
InterruptionType,
|
|
46
45
|
IpAddressType,
|
|
@@ -90,12 +89,13 @@ import {
|
|
|
90
89
|
NatGatewayState,
|
|
91
90
|
NestedVirtualizationSpecification,
|
|
92
91
|
NetworkInterfaceCreationType,
|
|
93
|
-
NetworkInterfacePermissionStateCode,
|
|
94
92
|
NetworkInterfaceStatus,
|
|
95
93
|
NetworkInterfaceType,
|
|
96
94
|
PlatformValues,
|
|
97
95
|
PrefixListState,
|
|
98
96
|
Protocol,
|
|
97
|
+
ReservedCapacityAllocationStrategy,
|
|
98
|
+
ReservedCapacityFallbackMarketType,
|
|
99
99
|
ResourceType,
|
|
100
100
|
Rir,
|
|
101
101
|
RuleAction,
|
|
@@ -556,8 +556,18 @@ export interface OnDemandOptionsRequest {
|
|
|
556
556
|
MinTargetCapacity?: number | undefined;
|
|
557
557
|
MaxTotalPrice?: string | undefined;
|
|
558
558
|
}
|
|
559
|
+
export interface FleetCapacityReservationTargetRequest {
|
|
560
|
+
CapacityReservationIds?: string[] | undefined;
|
|
561
|
+
CapacityReservationResourceGroupArns?: string[] | undefined;
|
|
562
|
+
}
|
|
563
|
+
export interface ReservedCapacityFallbackOptionsRequest {
|
|
564
|
+
MarketTypes?: ReservedCapacityFallbackMarketType[] | undefined;
|
|
565
|
+
}
|
|
559
566
|
export interface ReservedCapacityOptionsRequest {
|
|
567
|
+
AllocationStrategy?: ReservedCapacityAllocationStrategy | undefined;
|
|
560
568
|
ReservationTypes?: FleetReservationType[] | undefined;
|
|
569
|
+
CapacityReservationTarget?: FleetCapacityReservationTargetRequest | undefined;
|
|
570
|
+
ReservedCapacityFallbackOptions?: ReservedCapacityFallbackOptionsRequest | undefined;
|
|
561
571
|
}
|
|
562
572
|
export interface FleetSpotCapacityRebalanceRequest {
|
|
563
573
|
ReplacementStrategy?: FleetReplacementStrategy | undefined;
|
|
@@ -2220,14 +2230,3 @@ export interface CreateNetworkInterfaceResult {
|
|
|
2220
2230
|
NetworkInterface?: NetworkInterface | undefined;
|
|
2221
2231
|
ClientToken?: string | undefined;
|
|
2222
2232
|
}
|
|
2223
|
-
export interface CreateNetworkInterfacePermissionRequest {
|
|
2224
|
-
NetworkInterfaceId: string | undefined;
|
|
2225
|
-
AwsAccountId?: string | undefined;
|
|
2226
|
-
AwsService?: string | undefined;
|
|
2227
|
-
Permission: InterfacePermissionType | undefined;
|
|
2228
|
-
DryRun?: boolean | undefined;
|
|
2229
|
-
}
|
|
2230
|
-
export interface NetworkInterfacePermissionState {
|
|
2231
|
-
State?: NetworkInterfacePermissionStateCode | undefined;
|
|
2232
|
-
StatusMessage?: string | undefined;
|
|
2233
|
-
}
|
|
@@ -28,6 +28,7 @@ import {
|
|
|
28
28
|
Ipv6SupportValue,
|
|
29
29
|
LaunchTemplateErrorCode,
|
|
30
30
|
MulticastSupportValue,
|
|
31
|
+
NetworkInterfacePermissionStateCode,
|
|
31
32
|
PayerResponsibility,
|
|
32
33
|
PayerResponsibilityScope,
|
|
33
34
|
PayerResponsibilityType,
|
|
@@ -140,13 +141,22 @@ import {
|
|
|
140
141
|
LocalGatewayRoute,
|
|
141
142
|
LocalGatewayRouteTable,
|
|
142
143
|
LocalGatewayRouteTableVirtualInterfaceGroupAssociation,
|
|
143
|
-
LocalGatewayRouteTableVpcAssociation,
|
|
144
|
-
NetworkInterfacePermissionState,
|
|
145
144
|
OperatorRequest,
|
|
146
145
|
Subnet,
|
|
147
146
|
Vpc,
|
|
148
147
|
VpcEncryptionControl,
|
|
149
148
|
} from "./models_1";
|
|
149
|
+
export interface CreateNetworkInterfacePermissionRequest {
|
|
150
|
+
NetworkInterfaceId: string | undefined;
|
|
151
|
+
AwsAccountId?: string | undefined;
|
|
152
|
+
AwsService?: string | undefined;
|
|
153
|
+
Permission: InterfacePermissionType | undefined;
|
|
154
|
+
DryRun?: boolean | undefined;
|
|
155
|
+
}
|
|
156
|
+
export interface NetworkInterfacePermissionState {
|
|
157
|
+
State?: NetworkInterfacePermissionStateCode | undefined;
|
|
158
|
+
StatusMessage?: string | undefined;
|
|
159
|
+
}
|
|
150
160
|
export interface NetworkInterfacePermission {
|
|
151
161
|
NetworkInterfacePermissionId?: string | undefined;
|
|
152
162
|
NetworkInterfaceId?: string | undefined;
|
|
@@ -2021,10 +2031,3 @@ export interface DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationRes
|
|
|
2021
2031
|
| LocalGatewayRouteTableVirtualInterfaceGroupAssociation
|
|
2022
2032
|
| undefined;
|
|
2023
2033
|
}
|
|
2024
|
-
export interface DeleteLocalGatewayRouteTableVpcAssociationRequest {
|
|
2025
|
-
LocalGatewayRouteTableVpcAssociationId: string | undefined;
|
|
2026
|
-
DryRun?: boolean | undefined;
|
|
2027
|
-
}
|
|
2028
|
-
export interface DeleteLocalGatewayRouteTableVpcAssociationResult {
|
|
2029
|
-
LocalGatewayRouteTableVpcAssociation?: LocalGatewayRouteTableVpcAssociation | undefined;
|
|
2030
|
-
}
|
|
@@ -24,7 +24,6 @@ import {
|
|
|
24
24
|
ConversionTaskState,
|
|
25
25
|
DefaultTargetCapacityType,
|
|
26
26
|
DeleteQueuedReservedInstancesErrorCode,
|
|
27
|
-
DestinationFileFormat,
|
|
28
27
|
DiskImageFormat,
|
|
29
28
|
ElasticGpuState,
|
|
30
29
|
ElasticGpuStatus,
|
|
@@ -51,6 +50,8 @@ import {
|
|
|
51
50
|
PeriodType,
|
|
52
51
|
PlatformValues,
|
|
53
52
|
ReportState,
|
|
53
|
+
ReservedCapacityAllocationStrategy,
|
|
54
|
+
ReservedCapacityFallbackMarketType,
|
|
54
55
|
Schedule,
|
|
55
56
|
SnapshotReturnCodes,
|
|
56
57
|
SpotAllocationStrategy,
|
|
@@ -97,6 +98,7 @@ import {
|
|
|
97
98
|
FleetLaunchTemplateSpecification,
|
|
98
99
|
GroupIdentifier,
|
|
99
100
|
LaunchTemplateAndOverridesResponse,
|
|
101
|
+
LocalGatewayRouteTableVpcAssociation,
|
|
100
102
|
LocalGatewayVirtualInterface,
|
|
101
103
|
LocalGatewayVirtualInterfaceGroup,
|
|
102
104
|
ManagedPrefixList,
|
|
@@ -125,6 +127,13 @@ import {
|
|
|
125
127
|
VerifiedAccessGroup,
|
|
126
128
|
VpcBlockPublicAccessExclusion,
|
|
127
129
|
} from "./models_2";
|
|
130
|
+
export interface DeleteLocalGatewayRouteTableVpcAssociationRequest {
|
|
131
|
+
LocalGatewayRouteTableVpcAssociationId: string | undefined;
|
|
132
|
+
DryRun?: boolean | undefined;
|
|
133
|
+
}
|
|
134
|
+
export interface DeleteLocalGatewayRouteTableVpcAssociationResult {
|
|
135
|
+
LocalGatewayRouteTableVpcAssociation?: LocalGatewayRouteTableVpcAssociation | undefined;
|
|
136
|
+
}
|
|
128
137
|
export interface DeleteLocalGatewayVirtualInterfaceRequest {
|
|
129
138
|
LocalGatewayVirtualInterfaceId: string | undefined;
|
|
130
139
|
DryRun?: boolean | undefined;
|
|
@@ -1615,8 +1624,13 @@ export interface OnDemandOptions {
|
|
|
1615
1624
|
MinTargetCapacity?: number | undefined;
|
|
1616
1625
|
MaxTotalPrice?: string | undefined;
|
|
1617
1626
|
}
|
|
1627
|
+
export interface ReservedCapacityFallbackOptions {
|
|
1628
|
+
MarketTypes?: ReservedCapacityFallbackMarketType[] | undefined;
|
|
1629
|
+
}
|
|
1618
1630
|
export interface ReservedCapacityOptions {
|
|
1631
|
+
AllocationStrategy?: ReservedCapacityAllocationStrategy | undefined;
|
|
1619
1632
|
ReservationTypes?: FleetReservationType[] | undefined;
|
|
1633
|
+
ReservedCapacityFallbackOptions?: ReservedCapacityFallbackOptions | undefined;
|
|
1620
1634
|
}
|
|
1621
1635
|
export interface FleetSpotCapacityRebalance {
|
|
1622
1636
|
ReplacementStrategy?: FleetReplacementStrategy | undefined;
|
|
@@ -1666,19 +1680,3 @@ export interface FleetData {
|
|
|
1666
1680
|
Instances?: DescribeFleetsInstances[] | undefined;
|
|
1667
1681
|
Context?: string | undefined;
|
|
1668
1682
|
}
|
|
1669
|
-
export interface DescribeFleetsResult {
|
|
1670
|
-
NextToken?: string | undefined;
|
|
1671
|
-
Fleets?: FleetData[] | undefined;
|
|
1672
|
-
}
|
|
1673
|
-
export interface DescribeFlowLogsRequest {
|
|
1674
|
-
DryRun?: boolean | undefined;
|
|
1675
|
-
Filter?: Filter[] | undefined;
|
|
1676
|
-
FlowLogIds?: string[] | undefined;
|
|
1677
|
-
MaxResults?: number | undefined;
|
|
1678
|
-
NextToken?: string | undefined;
|
|
1679
|
-
}
|
|
1680
|
-
export interface DestinationOptionsResponse {
|
|
1681
|
-
FileFormat?: DestinationFileFormat | undefined;
|
|
1682
|
-
HiveCompatiblePartitions?: boolean | undefined;
|
|
1683
|
-
PerHourPartition?: boolean | undefined;
|
|
1684
|
-
}
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
BootModeValues,
|
|
16
16
|
CapacityReservationPreference,
|
|
17
17
|
CurrencyCodeValues,
|
|
18
|
+
DestinationFileFormat,
|
|
18
19
|
DeviceType,
|
|
19
20
|
DiskType,
|
|
20
21
|
EbsEncryptionSupport,
|
|
@@ -149,13 +150,23 @@ import {
|
|
|
149
150
|
RouteServerPeer,
|
|
150
151
|
RouteTable,
|
|
151
152
|
} from "./models_2";
|
|
152
|
-
import {
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
153
|
+
import { Byoasn, Filter, FleetData, IdFormat, InstanceTagNotificationAttribute } from "./models_3";
|
|
154
|
+
export interface DescribeFleetsResult {
|
|
155
|
+
NextToken?: string | undefined;
|
|
156
|
+
Fleets?: FleetData[] | undefined;
|
|
157
|
+
}
|
|
158
|
+
export interface DescribeFlowLogsRequest {
|
|
159
|
+
DryRun?: boolean | undefined;
|
|
160
|
+
Filter?: Filter[] | undefined;
|
|
161
|
+
FlowLogIds?: string[] | undefined;
|
|
162
|
+
MaxResults?: number | undefined;
|
|
163
|
+
NextToken?: string | undefined;
|
|
164
|
+
}
|
|
165
|
+
export interface DestinationOptionsResponse {
|
|
166
|
+
FileFormat?: DestinationFileFormat | undefined;
|
|
167
|
+
HiveCompatiblePartitions?: boolean | undefined;
|
|
168
|
+
PerHourPartition?: boolean | undefined;
|
|
169
|
+
}
|
|
159
170
|
export interface TagFieldSpecificationResponse {
|
|
160
171
|
ResourceType?: TaggableResourceType | undefined;
|
|
161
172
|
TagKeys?: string[] | undefined;
|
|
@@ -2131,32 +2142,3 @@ export interface DescribeScheduledInstanceAvailabilityResult {
|
|
|
2131
2142
|
NextToken?: string | undefined;
|
|
2132
2143
|
ScheduledInstanceAvailabilitySet?: ScheduledInstanceAvailability[] | undefined;
|
|
2133
2144
|
}
|
|
2134
|
-
export interface SlotStartTimeRangeRequest {
|
|
2135
|
-
EarliestTime?: Date | undefined;
|
|
2136
|
-
LatestTime?: Date | undefined;
|
|
2137
|
-
}
|
|
2138
|
-
export interface DescribeScheduledInstancesRequest {
|
|
2139
|
-
DryRun?: boolean | undefined;
|
|
2140
|
-
Filters?: Filter[] | undefined;
|
|
2141
|
-
MaxResults?: number | undefined;
|
|
2142
|
-
NextToken?: string | undefined;
|
|
2143
|
-
ScheduledInstanceIds?: string[] | undefined;
|
|
2144
|
-
SlotStartTimeRange?: SlotStartTimeRangeRequest | undefined;
|
|
2145
|
-
}
|
|
2146
|
-
export interface ScheduledInstance {
|
|
2147
|
-
AvailabilityZone?: string | undefined;
|
|
2148
|
-
CreateDate?: Date | undefined;
|
|
2149
|
-
HourlyPrice?: string | undefined;
|
|
2150
|
-
InstanceCount?: number | undefined;
|
|
2151
|
-
InstanceType?: string | undefined;
|
|
2152
|
-
NetworkPlatform?: string | undefined;
|
|
2153
|
-
NextSlotStartTime?: Date | undefined;
|
|
2154
|
-
Platform?: string | undefined;
|
|
2155
|
-
PreviousSlotEndTime?: Date | undefined;
|
|
2156
|
-
Recurrence?: ScheduledInstanceRecurrence | undefined;
|
|
2157
|
-
ScheduledInstanceId?: string | undefined;
|
|
2158
|
-
SlotDurationInHours?: number | undefined;
|
|
2159
|
-
TermEndDate?: Date | undefined;
|
|
2160
|
-
TermStartDate?: Date | undefined;
|
|
2161
|
-
TotalScheduledInstanceHours?: number | undefined;
|
|
2162
|
-
}
|
|
@@ -150,8 +150,37 @@ import {
|
|
|
150
150
|
AttributeBooleanValue,
|
|
151
151
|
ProductCode,
|
|
152
152
|
RegisteredInstance,
|
|
153
|
-
|
|
153
|
+
ScheduledInstanceRecurrence,
|
|
154
154
|
} from "./models_4";
|
|
155
|
+
export interface SlotStartTimeRangeRequest {
|
|
156
|
+
EarliestTime?: Date | undefined;
|
|
157
|
+
LatestTime?: Date | undefined;
|
|
158
|
+
}
|
|
159
|
+
export interface DescribeScheduledInstancesRequest {
|
|
160
|
+
DryRun?: boolean | undefined;
|
|
161
|
+
Filters?: Filter[] | undefined;
|
|
162
|
+
MaxResults?: number | undefined;
|
|
163
|
+
NextToken?: string | undefined;
|
|
164
|
+
ScheduledInstanceIds?: string[] | undefined;
|
|
165
|
+
SlotStartTimeRange?: SlotStartTimeRangeRequest | undefined;
|
|
166
|
+
}
|
|
167
|
+
export interface ScheduledInstance {
|
|
168
|
+
AvailabilityZone?: string | undefined;
|
|
169
|
+
CreateDate?: Date | undefined;
|
|
170
|
+
HourlyPrice?: string | undefined;
|
|
171
|
+
InstanceCount?: number | undefined;
|
|
172
|
+
InstanceType?: string | undefined;
|
|
173
|
+
NetworkPlatform?: string | undefined;
|
|
174
|
+
NextSlotStartTime?: Date | undefined;
|
|
175
|
+
Platform?: string | undefined;
|
|
176
|
+
PreviousSlotEndTime?: Date | undefined;
|
|
177
|
+
Recurrence?: ScheduledInstanceRecurrence | undefined;
|
|
178
|
+
ScheduledInstanceId?: string | undefined;
|
|
179
|
+
SlotDurationInHours?: number | undefined;
|
|
180
|
+
TermEndDate?: Date | undefined;
|
|
181
|
+
TermStartDate?: Date | undefined;
|
|
182
|
+
TotalScheduledInstanceHours?: number | undefined;
|
|
183
|
+
}
|
|
155
184
|
export interface DescribeScheduledInstancesResult {
|
|
156
185
|
NextToken?: string | undefined;
|
|
157
186
|
ScheduledInstanceSet?: ScheduledInstance[] | undefined;
|
|
@@ -1811,19 +1840,3 @@ export interface EnableEbsEncryptionByDefaultRequest {
|
|
|
1811
1840
|
export interface EnableEbsEncryptionByDefaultResult {
|
|
1812
1841
|
EbsEncryptionByDefault?: boolean | undefined;
|
|
1813
1842
|
}
|
|
1814
|
-
export interface FastLaunchLaunchTemplateSpecificationRequest {
|
|
1815
|
-
LaunchTemplateId?: string | undefined;
|
|
1816
|
-
LaunchTemplateName?: string | undefined;
|
|
1817
|
-
Version: string | undefined;
|
|
1818
|
-
}
|
|
1819
|
-
export interface FastLaunchSnapshotConfigurationRequest {
|
|
1820
|
-
TargetResourceCount?: number | undefined;
|
|
1821
|
-
}
|
|
1822
|
-
export interface EnableFastLaunchRequest {
|
|
1823
|
-
ImageId: string | undefined;
|
|
1824
|
-
ResourceType?: string | undefined;
|
|
1825
|
-
SnapshotConfiguration?: FastLaunchSnapshotConfigurationRequest | undefined;
|
|
1826
|
-
LaunchTemplate?: FastLaunchLaunchTemplateSpecificationRequest | undefined;
|
|
1827
|
-
MaxParallelLaunches?: number | undefined;
|
|
1828
|
-
DryRun?: boolean | undefined;
|
|
1829
|
-
}
|
|
@@ -113,9 +113,24 @@ import {
|
|
|
113
113
|
ImportImageLicenseConfigurationResponse,
|
|
114
114
|
RegisteredInstance,
|
|
115
115
|
SnapshotDetail,
|
|
116
|
-
SnapshotTaskDetail,
|
|
117
116
|
} from "./models_4";
|
|
118
117
|
import { RouteServerPropagation, TransitGatewayPropagation } from "./models_5";
|
|
118
|
+
export interface FastLaunchLaunchTemplateSpecificationRequest {
|
|
119
|
+
LaunchTemplateId?: string | undefined;
|
|
120
|
+
LaunchTemplateName?: string | undefined;
|
|
121
|
+
Version: string | undefined;
|
|
122
|
+
}
|
|
123
|
+
export interface FastLaunchSnapshotConfigurationRequest {
|
|
124
|
+
TargetResourceCount?: number | undefined;
|
|
125
|
+
}
|
|
126
|
+
export interface EnableFastLaunchRequest {
|
|
127
|
+
ImageId: string | undefined;
|
|
128
|
+
ResourceType?: string | undefined;
|
|
129
|
+
SnapshotConfiguration?: FastLaunchSnapshotConfigurationRequest | undefined;
|
|
130
|
+
LaunchTemplate?: FastLaunchLaunchTemplateSpecificationRequest | undefined;
|
|
131
|
+
MaxParallelLaunches?: number | undefined;
|
|
132
|
+
DryRun?: boolean | undefined;
|
|
133
|
+
}
|
|
119
134
|
export interface EnableFastLaunchResult {
|
|
120
135
|
ImageId?: string | undefined;
|
|
121
136
|
ResourceType?: FastLaunchResourceType | undefined;
|
|
@@ -1769,26 +1784,3 @@ export interface ImportKeyPairResult {
|
|
|
1769
1784
|
KeyPairId?: string | undefined;
|
|
1770
1785
|
Tags?: Tag[] | undefined;
|
|
1771
1786
|
}
|
|
1772
|
-
export interface SnapshotDiskContainer {
|
|
1773
|
-
Description?: string | undefined;
|
|
1774
|
-
Format?: string | undefined;
|
|
1775
|
-
Url?: string | undefined;
|
|
1776
|
-
UserBucket?: UserBucket | undefined;
|
|
1777
|
-
}
|
|
1778
|
-
export interface ImportSnapshotRequest {
|
|
1779
|
-
ClientData?: ClientData | undefined;
|
|
1780
|
-
ClientToken?: string | undefined;
|
|
1781
|
-
Description?: string | undefined;
|
|
1782
|
-
DiskContainer?: SnapshotDiskContainer | undefined;
|
|
1783
|
-
DryRun?: boolean | undefined;
|
|
1784
|
-
Encrypted?: boolean | undefined;
|
|
1785
|
-
KmsKeyId?: string | undefined;
|
|
1786
|
-
RoleName?: string | undefined;
|
|
1787
|
-
TagSpecifications?: TagSpecification[] | undefined;
|
|
1788
|
-
}
|
|
1789
|
-
export interface ImportSnapshotResult {
|
|
1790
|
-
Description?: string | undefined;
|
|
1791
|
-
ImportTaskId?: string | undefined;
|
|
1792
|
-
SnapshotTaskDetail?: SnapshotTaskDetail | undefined;
|
|
1793
|
-
Tags?: Tag[] | undefined;
|
|
1794
|
-
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
_InstanceType,
|
|
3
3
|
AccountVpcEncryptionControlMode,
|
|
4
|
-
AddressAttributeName,
|
|
5
4
|
Affinity,
|
|
6
5
|
AggregationStatusEnum,
|
|
7
6
|
ApplianceModeSupportValue,
|
|
@@ -111,6 +110,7 @@ import {
|
|
|
111
110
|
OperatorResponse,
|
|
112
111
|
PortRange,
|
|
113
112
|
RouteTableAssociationState,
|
|
113
|
+
Tag,
|
|
114
114
|
TagSpecification,
|
|
115
115
|
TransitGatewayClientVpnAttachment,
|
|
116
116
|
TransitGatewayMulticastDomainAssociations,
|
|
@@ -192,13 +192,14 @@ import {
|
|
|
192
192
|
Monitoring,
|
|
193
193
|
PublicIpv4PoolRange,
|
|
194
194
|
ReservedInstancesConfiguration,
|
|
195
|
-
|
|
195
|
+
SnapshotTaskDetail,
|
|
196
196
|
} from "./models_4";
|
|
197
197
|
import {
|
|
198
198
|
CreateVolumePermission,
|
|
199
199
|
InstanceNetworkInterfaceSpecification,
|
|
200
200
|
LaunchTemplateConfig,
|
|
201
201
|
RunInstancesMonitoringEnabled,
|
|
202
|
+
ScheduledInstance,
|
|
202
203
|
SpotFleetRequestConfigData,
|
|
203
204
|
SpotInstanceRequest,
|
|
204
205
|
SpotPlacement,
|
|
@@ -207,14 +208,39 @@ import {
|
|
|
207
208
|
VpcBlockPublicAccessOptions,
|
|
208
209
|
} from "./models_5";
|
|
209
210
|
import {
|
|
211
|
+
ClientData,
|
|
210
212
|
DiskImageDetail,
|
|
211
213
|
InstanceFamilyCreditSpecification,
|
|
212
214
|
IpamPolicyDocument,
|
|
213
215
|
IpamResourceCidr,
|
|
214
216
|
ManagedResourceVisibilitySettings,
|
|
215
217
|
Purchase,
|
|
218
|
+
UserBucket,
|
|
216
219
|
VolumeDetail,
|
|
217
220
|
} from "./models_6";
|
|
221
|
+
export interface SnapshotDiskContainer {
|
|
222
|
+
Description?: string | undefined;
|
|
223
|
+
Format?: string | undefined;
|
|
224
|
+
Url?: string | undefined;
|
|
225
|
+
UserBucket?: UserBucket | undefined;
|
|
226
|
+
}
|
|
227
|
+
export interface ImportSnapshotRequest {
|
|
228
|
+
ClientData?: ClientData | undefined;
|
|
229
|
+
ClientToken?: string | undefined;
|
|
230
|
+
Description?: string | undefined;
|
|
231
|
+
DiskContainer?: SnapshotDiskContainer | undefined;
|
|
232
|
+
DryRun?: boolean | undefined;
|
|
233
|
+
Encrypted?: boolean | undefined;
|
|
234
|
+
KmsKeyId?: string | undefined;
|
|
235
|
+
RoleName?: string | undefined;
|
|
236
|
+
TagSpecifications?: TagSpecification[] | undefined;
|
|
237
|
+
}
|
|
238
|
+
export interface ImportSnapshotResult {
|
|
239
|
+
Description?: string | undefined;
|
|
240
|
+
ImportTaskId?: string | undefined;
|
|
241
|
+
SnapshotTaskDetail?: SnapshotTaskDetail | undefined;
|
|
242
|
+
Tags?: Tag[] | undefined;
|
|
243
|
+
}
|
|
218
244
|
export interface ImportVolumeRequest {
|
|
219
245
|
AvailabilityZoneId?: string | undefined;
|
|
220
246
|
DryRun?: boolean | undefined;
|
|
@@ -1885,14 +1911,3 @@ export interface RequestSpotInstancesRequest {
|
|
|
1885
1911
|
export interface RequestSpotInstancesResult {
|
|
1886
1912
|
SpotInstanceRequests?: SpotInstanceRequest[] | undefined;
|
|
1887
1913
|
}
|
|
1888
|
-
export interface ResetAddressAttributeRequest {
|
|
1889
|
-
AllocationId: string | undefined;
|
|
1890
|
-
Attribute: AddressAttributeName | undefined;
|
|
1891
|
-
DryRun?: boolean | undefined;
|
|
1892
|
-
}
|
|
1893
|
-
export interface ResetAddressAttributeResult {
|
|
1894
|
-
Address?: AddressAttribute | undefined;
|
|
1895
|
-
}
|
|
1896
|
-
export interface ResetEbsDefaultKmsKeyIdRequest {
|
|
1897
|
-
DryRun?: boolean | undefined;
|
|
1898
|
-
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
_InstanceType,
|
|
3
|
+
AddressAttributeName,
|
|
3
4
|
AmdSevSnpSpecification,
|
|
4
5
|
CapacityManagerStatus,
|
|
5
6
|
HostnameType,
|
|
@@ -28,6 +29,7 @@ import {
|
|
|
28
29
|
TransitGatewayAttachmentResourceType,
|
|
29
30
|
} from "./enums";
|
|
30
31
|
import {
|
|
32
|
+
AddressAttribute,
|
|
31
33
|
ByoipCidr,
|
|
32
34
|
ClientVpnAuthorizationRuleStatus,
|
|
33
35
|
IamInstanceProfileSpecification,
|
|
@@ -59,6 +61,17 @@ import {
|
|
|
59
61
|
EnclaveOptionsRequest,
|
|
60
62
|
InstanceMonitoring,
|
|
61
63
|
} from "./models_7";
|
|
64
|
+
export interface ResetAddressAttributeRequest {
|
|
65
|
+
AllocationId: string | undefined;
|
|
66
|
+
Attribute: AddressAttributeName | undefined;
|
|
67
|
+
DryRun?: boolean | undefined;
|
|
68
|
+
}
|
|
69
|
+
export interface ResetAddressAttributeResult {
|
|
70
|
+
Address?: AddressAttribute | undefined;
|
|
71
|
+
}
|
|
72
|
+
export interface ResetEbsDefaultKmsKeyIdRequest {
|
|
73
|
+
DryRun?: boolean | undefined;
|
|
74
|
+
}
|
|
62
75
|
export interface ResetEbsDefaultKmsKeyIdResult {
|
|
63
76
|
KmsKeyId?: string | undefined;
|
|
64
77
|
}
|
|
@@ -1322,6 +1322,7 @@ export declare var FirewallStatefulRule$: StaticStructureSchema;
|
|
|
1322
1322
|
export declare var FirewallStatelessRule$: StaticStructureSchema;
|
|
1323
1323
|
export declare var FleetBlockDeviceMappingRequest$: StaticStructureSchema;
|
|
1324
1324
|
export declare var FleetCapacityReservation$: StaticStructureSchema;
|
|
1325
|
+
export declare var FleetCapacityReservationTargetRequest$: StaticStructureSchema;
|
|
1325
1326
|
export declare var FleetData$: StaticStructureSchema;
|
|
1326
1327
|
export declare var FleetEbsBlockDeviceRequest$: StaticStructureSchema;
|
|
1327
1328
|
export declare var FleetIamInstanceProfileSpecificationRequest$: StaticStructureSchema;
|
|
@@ -2147,6 +2148,8 @@ export declare var RequestSpotLaunchSpecification$: StaticStructureSchema;
|
|
|
2147
2148
|
export declare var Reservation$: StaticStructureSchema;
|
|
2148
2149
|
export declare var ReservationFleetInstanceSpecification$: StaticStructureSchema;
|
|
2149
2150
|
export declare var ReservationValue$: StaticStructureSchema;
|
|
2151
|
+
export declare var ReservedCapacityFallbackOptions$: StaticStructureSchema;
|
|
2152
|
+
export declare var ReservedCapacityFallbackOptionsRequest$: StaticStructureSchema;
|
|
2150
2153
|
export declare var ReservedCapacityOptions$: StaticStructureSchema;
|
|
2151
2154
|
export declare var ReservedCapacityOptionsRequest$: StaticStructureSchema;
|
|
2152
2155
|
export declare var ReservedInstanceLimitPrice$: StaticStructureSchema;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ec2",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1119.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-ec2",
|
|
6
6
|
"license": "Apache-2.0",
|