@aws-sdk/client-ec2 3.47.2 → 3.48.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/EC2.js +45 -0
- package/dist-cjs/commands/DescribeFastLaunchImagesCommand.js +36 -0
- package/dist-cjs/commands/DescribeReservedInstancesCommand.js +2 -1
- package/dist-cjs/commands/DescribeReservedInstancesListingsCommand.js +3 -3
- package/dist-cjs/commands/DescribeReservedInstancesModificationsCommand.js +1 -2
- package/dist-cjs/commands/DisableFastLaunchCommand.js +36 -0
- package/dist-cjs/commands/EnableFastLaunchCommand.js +36 -0
- package/dist-cjs/commands/GetInstanceTypesFromInstanceRequirementsCommand.js +2 -1
- package/dist-cjs/commands/GetIpamAddressHistoryCommand.js +3 -3
- package/dist-cjs/commands/GetIpamPoolAllocationsCommand.js +3 -3
- package/dist-cjs/commands/GetIpamPoolCidrsCommand.js +3 -3
- package/dist-cjs/commands/GetIpamResourceCidrsCommand.js +1 -2
- package/dist-cjs/commands/RestoreAddressToClassicCommand.js +3 -3
- package/dist-cjs/commands/RestoreManagedPrefixListVersionCommand.js +3 -3
- package/dist-cjs/commands/RestoreSnapshotFromRecycleBinCommand.js +3 -3
- package/dist-cjs/commands/RestoreSnapshotTierCommand.js +3 -3
- package/dist-cjs/commands/RevokeClientVpnIngressCommand.js +3 -3
- package/dist-cjs/commands/RevokeSecurityGroupEgressCommand.js +3 -3
- package/dist-cjs/commands/RevokeSecurityGroupIngressCommand.js +3 -3
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +14 -7
- package/dist-cjs/models/models_1.js +11 -6
- package/dist-cjs/models/models_2.js +7 -13
- package/dist-cjs/models/models_3.js +61 -53
- package/dist-cjs/models/models_4.js +89 -101
- package/dist-cjs/models/models_5.js +101 -96
- package/dist-cjs/models/models_6.js +92 -2
- package/dist-cjs/pagination/DescribeFastLaunchImagesPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_ec2.js +501 -17
- package/dist-es/EC2.js +45 -0
- package/dist-es/commands/DescribeFastLaunchImagesCommand.js +39 -0
- package/dist-es/commands/DescribeReservedInstancesCommand.js +2 -1
- package/dist-es/commands/DescribeReservedInstancesListingsCommand.js +1 -1
- package/dist-es/commands/DescribeReservedInstancesModificationsCommand.js +1 -2
- package/dist-es/commands/DisableFastLaunchCommand.js +39 -0
- package/dist-es/commands/EnableFastLaunchCommand.js +39 -0
- package/dist-es/commands/GetInstanceTypesFromInstanceRequirementsCommand.js +2 -1
- package/dist-es/commands/GetIpamAddressHistoryCommand.js +1 -1
- package/dist-es/commands/GetIpamPoolAllocationsCommand.js +1 -1
- package/dist-es/commands/GetIpamPoolCidrsCommand.js +1 -1
- package/dist-es/commands/GetIpamResourceCidrsCommand.js +1 -2
- package/dist-es/commands/RestoreAddressToClassicCommand.js +1 -1
- package/dist-es/commands/RestoreManagedPrefixListVersionCommand.js +1 -1
- package/dist-es/commands/RestoreSnapshotFromRecycleBinCommand.js +1 -1
- package/dist-es/commands/RestoreSnapshotTierCommand.js +1 -1
- package/dist-es/commands/RevokeClientVpnIngressCommand.js +1 -1
- package/dist-es/commands/RevokeSecurityGroupEgressCommand.js +1 -1
- package/dist-es/commands/RevokeSecurityGroupIngressCommand.js +1 -1
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +10 -5
- package/dist-es/models/models_1.js +5 -0
- package/dist-es/models/models_2.js +4 -8
- package/dist-es/models/models_3.js +41 -33
- package/dist-es/models/models_4.js +57 -75
- package/dist-es/models/models_5.js +75 -60
- package/dist-es/models/models_6.js +60 -0
- package/dist-es/pagination/DescribeFastLaunchImagesPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_ec2.js +1498 -991
- package/dist-types/EC2.d.ts +28 -0
- package/dist-types/EC2Client.d.ts +5 -2
- package/dist-types/commands/DescribeFastLaunchImagesCommand.d.ts +35 -0
- package/dist-types/commands/DescribeReservedInstancesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeReservedInstancesListingsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReservedInstancesModificationsCommand.d.ts +1 -2
- package/dist-types/commands/DisableFastLaunchCommand.d.ts +37 -0
- package/dist-types/commands/EnableFastLaunchCommand.d.ts +40 -0
- package/dist-types/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +2 -1
- package/dist-types/commands/GetIpamAddressHistoryCommand.d.ts +1 -1
- package/dist-types/commands/GetIpamPoolAllocationsCommand.d.ts +1 -1
- package/dist-types/commands/GetIpamPoolCidrsCommand.d.ts +1 -1
- package/dist-types/commands/GetIpamResourceCidrsCommand.d.ts +1 -2
- package/dist-types/commands/RestoreAddressToClassicCommand.d.ts +1 -1
- package/dist-types/commands/RestoreManagedPrefixListVersionCommand.d.ts +1 -1
- package/dist-types/commands/RestoreSnapshotFromRecycleBinCommand.d.ts +1 -1
- package/dist-types/commands/RestoreSnapshotTierCommand.d.ts +1 -1
- package/dist-types/commands/RevokeClientVpnIngressCommand.d.ts +1 -1
- package/dist-types/commands/RevokeSecurityGroupEgressCommand.d.ts +1 -1
- package/dist-types/commands/RevokeSecurityGroupIngressCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +25 -11
- package/dist-types/models/models_1.d.ts +11 -8
- package/dist-types/models/models_2.d.ts +18 -71
- package/dist-types/models/models_3.d.ts +240 -298
- package/dist-types/models/models_4.d.ts +500 -334
- package/dist-types/models/models_5.d.ts +334 -420
- package/dist-types/models/models_6.d.ts +413 -3
- package/dist-types/pagination/DescribeFastLaunchImagesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_ec2.d.ts +9 -0
- package/dist-types/ts3.4/EC2.d.ts +15 -0
- package/dist-types/ts3.4/EC2Client.d.ts +5 -2
- package/dist-types/ts3.4/commands/DescribeFastLaunchImagesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeReservedInstancesCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DescribeReservedInstancesListingsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeReservedInstancesModificationsCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/DisableFastLaunchCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/EnableFastLaunchCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetIpamAddressHistoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetIpamPoolAllocationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetIpamPoolCidrsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetIpamResourceCidrsCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/RestoreAddressToClassicCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RestoreManagedPrefixListVersionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RestoreSnapshotFromRecycleBinCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RestoreSnapshotTierCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RevokeClientVpnIngressCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RevokeSecurityGroupEgressCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RevokeSecurityGroupIngressCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +17 -5
- package/dist-types/ts3.4/models/models_1.d.ts +5 -2
- package/dist-types/ts3.4/models/models_2.d.ts +12 -37
- package/dist-types/ts3.4/models/models_3.d.ts +122 -122
- package/dist-types/ts3.4/models/models_4.d.ts +224 -194
- package/dist-types/ts3.4/models/models_5.d.ts +196 -219
- package/dist-types/ts3.4/models/models_6.d.ts +218 -3
- package/dist-types/ts3.4/pagination/DescribeFastLaunchImagesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +9 -0
- package/package.json +3 -3
|
@@ -1,9 +1,419 @@
|
|
|
1
|
-
import { _InstanceType, ByoipCidr, HostnameType, IamInstanceProfileSpecification, IpPermission, TagSpecification, TransitGatewayAttachmentResourceType } from "./models_0";
|
|
2
|
-
import { BlockDeviceMapping, CreditSpecificationRequest, ElasticGpuSpecification, InstanceInterruptionBehavior, InstanceIpv6Address, LocalGatewayRoute, MarketType, Placement, ShutdownBehavior, SpotInstanceType } from "./models_1";
|
|
1
|
+
import { _InstanceType, ByoipCidr, ClientVpnAuthorizationRuleStatus, HostnameType, IamInstanceProfileSpecification, IpPermission, TagSpecification, TransitGatewayAttachmentResourceType } from "./models_0";
|
|
2
|
+
import { BlockDeviceMapping, CreditSpecificationRequest, ElasticGpuSpecification, InstanceInterruptionBehavior, InstanceIpv6Address, LocalGatewayRoute, ManagedPrefixList, MarketType, Placement, ShutdownBehavior, SnapshotState, SpotInstanceType } from "./models_1";
|
|
3
3
|
import { ClientVpnConnectionStatus, Filter, TransitGatewayRoute } from "./models_2";
|
|
4
4
|
import { HttpTokensState, InstanceMetadataEndpointState, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceState, NetworkInsightsAccessScopeAnalysis, NetworkInsightsAnalysis } from "./models_3";
|
|
5
5
|
import { InstanceNetworkInterfaceSpecification, RunInstancesMonitoringEnabled } from "./models_4";
|
|
6
|
-
import { CapacityReservationSpecification,
|
|
6
|
+
import { CapacityReservationSpecification, InstanceMonitoring, Status } from "./models_5";
|
|
7
|
+
export interface RestoreAddressToClassicRequest {
|
|
8
|
+
/**
|
|
9
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
10
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
11
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
12
|
+
*/
|
|
13
|
+
DryRun?: boolean;
|
|
14
|
+
/**
|
|
15
|
+
* <p>The Elastic IP address.</p>
|
|
16
|
+
*/
|
|
17
|
+
PublicIp: string | undefined;
|
|
18
|
+
}
|
|
19
|
+
export declare namespace RestoreAddressToClassicRequest {
|
|
20
|
+
/**
|
|
21
|
+
* @internal
|
|
22
|
+
*/
|
|
23
|
+
const filterSensitiveLog: (obj: RestoreAddressToClassicRequest) => any;
|
|
24
|
+
}
|
|
25
|
+
export interface RestoreAddressToClassicResult {
|
|
26
|
+
/**
|
|
27
|
+
* <p>The Elastic IP address.</p>
|
|
28
|
+
*/
|
|
29
|
+
PublicIp?: string;
|
|
30
|
+
/**
|
|
31
|
+
* <p>The move status for the IP address.</p>
|
|
32
|
+
*/
|
|
33
|
+
Status?: Status | string;
|
|
34
|
+
}
|
|
35
|
+
export declare namespace RestoreAddressToClassicResult {
|
|
36
|
+
/**
|
|
37
|
+
* @internal
|
|
38
|
+
*/
|
|
39
|
+
const filterSensitiveLog: (obj: RestoreAddressToClassicResult) => any;
|
|
40
|
+
}
|
|
41
|
+
export interface RestoreManagedPrefixListVersionRequest {
|
|
42
|
+
/**
|
|
43
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
44
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
45
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
46
|
+
*/
|
|
47
|
+
DryRun?: boolean;
|
|
48
|
+
/**
|
|
49
|
+
* <p>The ID of the prefix list.</p>
|
|
50
|
+
*/
|
|
51
|
+
PrefixListId: string | undefined;
|
|
52
|
+
/**
|
|
53
|
+
* <p>The version to restore.</p>
|
|
54
|
+
*/
|
|
55
|
+
PreviousVersion: number | undefined;
|
|
56
|
+
/**
|
|
57
|
+
* <p>The current version number for the prefix list.</p>
|
|
58
|
+
*/
|
|
59
|
+
CurrentVersion: number | undefined;
|
|
60
|
+
}
|
|
61
|
+
export declare namespace RestoreManagedPrefixListVersionRequest {
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
65
|
+
const filterSensitiveLog: (obj: RestoreManagedPrefixListVersionRequest) => any;
|
|
66
|
+
}
|
|
67
|
+
export interface RestoreManagedPrefixListVersionResult {
|
|
68
|
+
/**
|
|
69
|
+
* <p>Information about the prefix list.</p>
|
|
70
|
+
*/
|
|
71
|
+
PrefixList?: ManagedPrefixList;
|
|
72
|
+
}
|
|
73
|
+
export declare namespace RestoreManagedPrefixListVersionResult {
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
77
|
+
const filterSensitiveLog: (obj: RestoreManagedPrefixListVersionResult) => any;
|
|
78
|
+
}
|
|
79
|
+
export interface RestoreSnapshotFromRecycleBinRequest {
|
|
80
|
+
/**
|
|
81
|
+
* <p>The ID of the snapshot to restore.</p>
|
|
82
|
+
*/
|
|
83
|
+
SnapshotId: string | undefined;
|
|
84
|
+
/**
|
|
85
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
86
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
87
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
88
|
+
*/
|
|
89
|
+
DryRun?: boolean;
|
|
90
|
+
}
|
|
91
|
+
export declare namespace RestoreSnapshotFromRecycleBinRequest {
|
|
92
|
+
/**
|
|
93
|
+
* @internal
|
|
94
|
+
*/
|
|
95
|
+
const filterSensitiveLog: (obj: RestoreSnapshotFromRecycleBinRequest) => any;
|
|
96
|
+
}
|
|
97
|
+
export interface RestoreSnapshotFromRecycleBinResult {
|
|
98
|
+
/**
|
|
99
|
+
* <p>The ID of the snapshot.</p>
|
|
100
|
+
*/
|
|
101
|
+
SnapshotId?: string;
|
|
102
|
+
/**
|
|
103
|
+
* <p>The ARN of the Outpost on which the snapshot is stored. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshots-outposts.html">Amazon EBS local snapshots on Outposts</a> in the
|
|
104
|
+
* <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
105
|
+
*/
|
|
106
|
+
OutpostArn?: string;
|
|
107
|
+
/**
|
|
108
|
+
* <p>The description for the snapshot.</p>
|
|
109
|
+
*/
|
|
110
|
+
Description?: string;
|
|
111
|
+
/**
|
|
112
|
+
* <p>Indicates whether the snapshot is encrypted.</p>
|
|
113
|
+
*/
|
|
114
|
+
Encrypted?: boolean;
|
|
115
|
+
/**
|
|
116
|
+
* <p>The ID of the Amazon Web Services account that owns the EBS snapshot.</p>
|
|
117
|
+
*/
|
|
118
|
+
OwnerId?: string;
|
|
119
|
+
/**
|
|
120
|
+
* <p>The progress of the snapshot, as a percentage.</p>
|
|
121
|
+
*/
|
|
122
|
+
Progress?: string;
|
|
123
|
+
/**
|
|
124
|
+
* <p>The time stamp when the snapshot was initiated.</p>
|
|
125
|
+
*/
|
|
126
|
+
StartTime?: Date;
|
|
127
|
+
/**
|
|
128
|
+
* <p>The state of the snapshot.</p>
|
|
129
|
+
*/
|
|
130
|
+
State?: SnapshotState | string;
|
|
131
|
+
/**
|
|
132
|
+
* <p>The ID of the volume that was used to create the snapshot.</p>
|
|
133
|
+
*/
|
|
134
|
+
VolumeId?: string;
|
|
135
|
+
/**
|
|
136
|
+
* <p>The size of the volume, in GiB.</p>
|
|
137
|
+
*/
|
|
138
|
+
VolumeSize?: number;
|
|
139
|
+
}
|
|
140
|
+
export declare namespace RestoreSnapshotFromRecycleBinResult {
|
|
141
|
+
/**
|
|
142
|
+
* @internal
|
|
143
|
+
*/
|
|
144
|
+
const filterSensitiveLog: (obj: RestoreSnapshotFromRecycleBinResult) => any;
|
|
145
|
+
}
|
|
146
|
+
export interface RestoreSnapshotTierRequest {
|
|
147
|
+
/**
|
|
148
|
+
* <p>The ID of the snapshot to restore.</p>
|
|
149
|
+
*/
|
|
150
|
+
SnapshotId: string | undefined;
|
|
151
|
+
/**
|
|
152
|
+
* <p>Specifies the number of days for which to temporarily restore an archived snapshot.
|
|
153
|
+
* Required for temporary restores only. The snapshot will be automatically re-archived
|
|
154
|
+
* after this period.</p>
|
|
155
|
+
* <p>To temporarily restore an archived snapshot, specify the number of days and omit
|
|
156
|
+
* the <b>PermanentRestore</b> parameter or set it to
|
|
157
|
+
* <code>false</code>.</p>
|
|
158
|
+
*/
|
|
159
|
+
TemporaryRestoreDays?: number;
|
|
160
|
+
/**
|
|
161
|
+
* <p>Indicates whether to permanently restore an archived snapshot. To permanently restore
|
|
162
|
+
* an archived snapshot, specify <code>true</code> and omit the
|
|
163
|
+
* <b>RestoreSnapshotTierRequest$TemporaryRestoreDays</b> parameter.</p>
|
|
164
|
+
*/
|
|
165
|
+
PermanentRestore?: boolean;
|
|
166
|
+
/**
|
|
167
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
168
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
169
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
170
|
+
*/
|
|
171
|
+
DryRun?: boolean;
|
|
172
|
+
}
|
|
173
|
+
export declare namespace RestoreSnapshotTierRequest {
|
|
174
|
+
/**
|
|
175
|
+
* @internal
|
|
176
|
+
*/
|
|
177
|
+
const filterSensitiveLog: (obj: RestoreSnapshotTierRequest) => any;
|
|
178
|
+
}
|
|
179
|
+
export interface RestoreSnapshotTierResult {
|
|
180
|
+
/**
|
|
181
|
+
* <p>The ID of the snapshot.</p>
|
|
182
|
+
*/
|
|
183
|
+
SnapshotId?: string;
|
|
184
|
+
/**
|
|
185
|
+
* <p>The date and time when the snapshot restore process started.</p>
|
|
186
|
+
*/
|
|
187
|
+
RestoreStartTime?: Date;
|
|
188
|
+
/**
|
|
189
|
+
* <p>For temporary restores only. The number of days for which the archived snapshot
|
|
190
|
+
* is temporarily restored.</p>
|
|
191
|
+
*/
|
|
192
|
+
RestoreDuration?: number;
|
|
193
|
+
/**
|
|
194
|
+
* <p>Indicates whether the snapshot is permanently restored. <code>true</code> indicates a permanent
|
|
195
|
+
* restore. <code>false</code> indicates a temporary restore.</p>
|
|
196
|
+
*/
|
|
197
|
+
IsPermanentRestore?: boolean;
|
|
198
|
+
}
|
|
199
|
+
export declare namespace RestoreSnapshotTierResult {
|
|
200
|
+
/**
|
|
201
|
+
* @internal
|
|
202
|
+
*/
|
|
203
|
+
const filterSensitiveLog: (obj: RestoreSnapshotTierResult) => any;
|
|
204
|
+
}
|
|
205
|
+
export interface RevokeClientVpnIngressRequest {
|
|
206
|
+
/**
|
|
207
|
+
* <p>The ID of the Client VPN endpoint with which the authorization rule is associated.</p>
|
|
208
|
+
*/
|
|
209
|
+
ClientVpnEndpointId: string | undefined;
|
|
210
|
+
/**
|
|
211
|
+
* <p>The IPv4 address range, in CIDR notation, of the network for which access is being removed.</p>
|
|
212
|
+
*/
|
|
213
|
+
TargetNetworkCidr: string | undefined;
|
|
214
|
+
/**
|
|
215
|
+
* <p>The ID of the Active Directory group for which to revoke access. </p>
|
|
216
|
+
*/
|
|
217
|
+
AccessGroupId?: string;
|
|
218
|
+
/**
|
|
219
|
+
* <p>Indicates whether access should be revoked for all clients.</p>
|
|
220
|
+
*/
|
|
221
|
+
RevokeAllGroups?: boolean;
|
|
222
|
+
/**
|
|
223
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
224
|
+
*/
|
|
225
|
+
DryRun?: boolean;
|
|
226
|
+
}
|
|
227
|
+
export declare namespace RevokeClientVpnIngressRequest {
|
|
228
|
+
/**
|
|
229
|
+
* @internal
|
|
230
|
+
*/
|
|
231
|
+
const filterSensitiveLog: (obj: RevokeClientVpnIngressRequest) => any;
|
|
232
|
+
}
|
|
233
|
+
export interface RevokeClientVpnIngressResult {
|
|
234
|
+
/**
|
|
235
|
+
* <p>The current state of the authorization rule.</p>
|
|
236
|
+
*/
|
|
237
|
+
Status?: ClientVpnAuthorizationRuleStatus;
|
|
238
|
+
}
|
|
239
|
+
export declare namespace RevokeClientVpnIngressResult {
|
|
240
|
+
/**
|
|
241
|
+
* @internal
|
|
242
|
+
*/
|
|
243
|
+
const filterSensitiveLog: (obj: RevokeClientVpnIngressResult) => any;
|
|
244
|
+
}
|
|
245
|
+
export interface RevokeSecurityGroupEgressRequest {
|
|
246
|
+
/**
|
|
247
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
248
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
249
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
250
|
+
*/
|
|
251
|
+
DryRun?: boolean;
|
|
252
|
+
/**
|
|
253
|
+
* <p>The ID of the security group.</p>
|
|
254
|
+
*/
|
|
255
|
+
GroupId: string | undefined;
|
|
256
|
+
/**
|
|
257
|
+
* <p>The sets of IP permissions. You can't specify a destination security group and a CIDR IP address range in the same set of permissions.</p>
|
|
258
|
+
*/
|
|
259
|
+
IpPermissions?: IpPermission[];
|
|
260
|
+
/**
|
|
261
|
+
* <p>The IDs of the security group rules.</p>
|
|
262
|
+
*/
|
|
263
|
+
SecurityGroupRuleIds?: string[];
|
|
264
|
+
/**
|
|
265
|
+
* <p>Not supported. Use a set of IP permissions to specify the CIDR.</p>
|
|
266
|
+
*/
|
|
267
|
+
CidrIp?: string;
|
|
268
|
+
/**
|
|
269
|
+
* <p>Not supported. Use a set of IP permissions to specify the port.</p>
|
|
270
|
+
*/
|
|
271
|
+
FromPort?: number;
|
|
272
|
+
/**
|
|
273
|
+
* <p>Not supported. Use a set of IP permissions to specify the protocol name or
|
|
274
|
+
* number.</p>
|
|
275
|
+
*/
|
|
276
|
+
IpProtocol?: string;
|
|
277
|
+
/**
|
|
278
|
+
* <p>Not supported. Use a set of IP permissions to specify the port.</p>
|
|
279
|
+
*/
|
|
280
|
+
ToPort?: number;
|
|
281
|
+
/**
|
|
282
|
+
* <p>Not supported. Use a set of IP permissions to specify a
|
|
283
|
+
* destination security group.</p>
|
|
284
|
+
*/
|
|
285
|
+
SourceSecurityGroupName?: string;
|
|
286
|
+
/**
|
|
287
|
+
* <p>Not supported. Use a set of IP permissions to specify a destination security
|
|
288
|
+
* group.</p>
|
|
289
|
+
*/
|
|
290
|
+
SourceSecurityGroupOwnerId?: string;
|
|
291
|
+
}
|
|
292
|
+
export declare namespace RevokeSecurityGroupEgressRequest {
|
|
293
|
+
/**
|
|
294
|
+
* @internal
|
|
295
|
+
*/
|
|
296
|
+
const filterSensitiveLog: (obj: RevokeSecurityGroupEgressRequest) => any;
|
|
297
|
+
}
|
|
298
|
+
export interface RevokeSecurityGroupEgressResult {
|
|
299
|
+
/**
|
|
300
|
+
* <p>Returns <code>true</code> if the request succeeds; otherwise, returns an error.</p>
|
|
301
|
+
*/
|
|
302
|
+
Return?: boolean;
|
|
303
|
+
/**
|
|
304
|
+
* <p>The outbound rules that were unknown to the service. In some cases,
|
|
305
|
+
* <code>unknownIpPermissionSet</code> might be in a different format from the request
|
|
306
|
+
* parameter. </p>
|
|
307
|
+
*/
|
|
308
|
+
UnknownIpPermissions?: IpPermission[];
|
|
309
|
+
}
|
|
310
|
+
export declare namespace RevokeSecurityGroupEgressResult {
|
|
311
|
+
/**
|
|
312
|
+
* @internal
|
|
313
|
+
*/
|
|
314
|
+
const filterSensitiveLog: (obj: RevokeSecurityGroupEgressResult) => any;
|
|
315
|
+
}
|
|
316
|
+
export interface RevokeSecurityGroupIngressRequest {
|
|
317
|
+
/**
|
|
318
|
+
* <p>The CIDR IP address range. You can't specify this parameter when specifying a source security group.</p>
|
|
319
|
+
*/
|
|
320
|
+
CidrIp?: string;
|
|
321
|
+
/**
|
|
322
|
+
* <p>The start of port range for the TCP and UDP protocols, or an ICMP type number. For the ICMP type number,
|
|
323
|
+
* use <code>-1</code> to specify all ICMP types.</p>
|
|
324
|
+
*/
|
|
325
|
+
FromPort?: number;
|
|
326
|
+
/**
|
|
327
|
+
* <p>The ID of the security group. You must specify either the security group ID or the
|
|
328
|
+
* security group name in the request. For security groups in a nondefault VPC, you must
|
|
329
|
+
* specify the security group ID.</p>
|
|
330
|
+
*/
|
|
331
|
+
GroupId?: string;
|
|
332
|
+
/**
|
|
333
|
+
* <p>[EC2-Classic, default VPC] The name of the security group. You must specify either the
|
|
334
|
+
* security group ID or the security group name in the request.</p>
|
|
335
|
+
*/
|
|
336
|
+
GroupName?: string;
|
|
337
|
+
/**
|
|
338
|
+
* <p>The sets of IP permissions. You can't specify a source security group and a CIDR IP address range in the same set of permissions.</p>
|
|
339
|
+
*/
|
|
340
|
+
IpPermissions?: IpPermission[];
|
|
341
|
+
/**
|
|
342
|
+
* <p>The IP protocol name (<code>tcp</code>, <code>udp</code>, <code>icmp</code>) or number
|
|
343
|
+
* (see <a href="http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml">Protocol Numbers</a>).
|
|
344
|
+
* Use <code>-1</code> to specify all.</p>
|
|
345
|
+
*/
|
|
346
|
+
IpProtocol?: string;
|
|
347
|
+
/**
|
|
348
|
+
* <p>[EC2-Classic, default VPC] The name of the source security group. You can't specify this parameter in combination with the following parameters: the CIDR IP address range, the start of the port range, the IP protocol, and the end of the port range. For EC2-VPC, the source security group must be in the same VPC. To revoke a specific rule for an IP protocol and port range, use a set of IP permissions instead.</p>
|
|
349
|
+
*/
|
|
350
|
+
SourceSecurityGroupName?: string;
|
|
351
|
+
/**
|
|
352
|
+
* <p>[EC2-Classic] The Amazon Web Services account ID of the source security group, if the source security group is in a different account. You can't specify this parameter in combination with the following parameters: the CIDR IP address range, the IP protocol, the start of the port range, and the end of the port range. To revoke a specific rule for an IP protocol and port range, use a set of IP permissions instead.</p>
|
|
353
|
+
*/
|
|
354
|
+
SourceSecurityGroupOwnerId?: string;
|
|
355
|
+
/**
|
|
356
|
+
* <p>The end of port range for the TCP and UDP protocols, or an ICMP code number. For the ICMP code number,
|
|
357
|
+
* use <code>-1</code> to specify all ICMP codes for the ICMP type.</p>
|
|
358
|
+
*/
|
|
359
|
+
ToPort?: number;
|
|
360
|
+
/**
|
|
361
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
362
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
363
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
364
|
+
*/
|
|
365
|
+
DryRun?: boolean;
|
|
366
|
+
/**
|
|
367
|
+
* <p>The IDs of the security group rules.</p>
|
|
368
|
+
*/
|
|
369
|
+
SecurityGroupRuleIds?: string[];
|
|
370
|
+
}
|
|
371
|
+
export declare namespace RevokeSecurityGroupIngressRequest {
|
|
372
|
+
/**
|
|
373
|
+
* @internal
|
|
374
|
+
*/
|
|
375
|
+
const filterSensitiveLog: (obj: RevokeSecurityGroupIngressRequest) => any;
|
|
376
|
+
}
|
|
377
|
+
export interface RevokeSecurityGroupIngressResult {
|
|
378
|
+
/**
|
|
379
|
+
* <p>Returns <code>true</code> if the request succeeds; otherwise, returns an error.</p>
|
|
380
|
+
*/
|
|
381
|
+
Return?: boolean;
|
|
382
|
+
/**
|
|
383
|
+
* <p>The inbound rules that were unknown to the service. In some cases,
|
|
384
|
+
* <code>unknownIpPermissionSet</code> might be in a different format from the request
|
|
385
|
+
* parameter. </p>
|
|
386
|
+
*/
|
|
387
|
+
UnknownIpPermissions?: IpPermission[];
|
|
388
|
+
}
|
|
389
|
+
export declare namespace RevokeSecurityGroupIngressResult {
|
|
390
|
+
/**
|
|
391
|
+
* @internal
|
|
392
|
+
*/
|
|
393
|
+
const filterSensitiveLog: (obj: RevokeSecurityGroupIngressResult) => any;
|
|
394
|
+
}
|
|
395
|
+
/**
|
|
396
|
+
* <p>The CPU options for the instance. Both the core count and threads per core must be
|
|
397
|
+
* specified in the request.</p>
|
|
398
|
+
*/
|
|
399
|
+
export interface CpuOptionsRequest {
|
|
400
|
+
/**
|
|
401
|
+
* <p>The number of CPU cores for the instance.</p>
|
|
402
|
+
*/
|
|
403
|
+
CoreCount?: number;
|
|
404
|
+
/**
|
|
405
|
+
* <p>The number of threads per CPU core. To disable multithreading for
|
|
406
|
+
* the instance, specify a value of <code>1</code>. Otherwise, specify the default value of
|
|
407
|
+
* <code>2</code>.</p>
|
|
408
|
+
*/
|
|
409
|
+
ThreadsPerCore?: number;
|
|
410
|
+
}
|
|
411
|
+
export declare namespace CpuOptionsRequest {
|
|
412
|
+
/**
|
|
413
|
+
* @internal
|
|
414
|
+
*/
|
|
415
|
+
const filterSensitiveLog: (obj: CpuOptionsRequest) => any;
|
|
416
|
+
}
|
|
7
417
|
/**
|
|
8
418
|
* <p>
|
|
9
419
|
* Describes an elastic inference accelerator.
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { DescribeFastLaunchImagesCommandInput, DescribeFastLaunchImagesCommandOutput } from "../commands/DescribeFastLaunchImagesCommand";
|
|
3
|
+
import { EC2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateDescribeFastLaunchImages(config: EC2PaginationConfiguration, input: DescribeFastLaunchImagesCommandInput, ...additionalArguments: any): Paginator<DescribeFastLaunchImagesCommandOutput>;
|
|
@@ -14,6 +14,7 @@ export * from "./DescribeCoipPoolsPaginator";
|
|
|
14
14
|
export * from "./DescribeDhcpOptionsPaginator";
|
|
15
15
|
export * from "./DescribeEgressOnlyInternetGatewaysPaginator";
|
|
16
16
|
export * from "./DescribeExportImageTasksPaginator";
|
|
17
|
+
export * from "./DescribeFastLaunchImagesPaginator";
|
|
17
18
|
export * from "./DescribeFastSnapshotRestoresPaginator";
|
|
18
19
|
export * from "./DescribeFleetsPaginator";
|
|
19
20
|
export * from "./DescribeFlowLogsPaginator";
|
|
@@ -210,6 +210,7 @@ import { DescribeEgressOnlyInternetGatewaysCommandInput, DescribeEgressOnlyInter
|
|
|
210
210
|
import { DescribeElasticGpusCommandInput, DescribeElasticGpusCommandOutput } from "../commands/DescribeElasticGpusCommand";
|
|
211
211
|
import { DescribeExportImageTasksCommandInput, DescribeExportImageTasksCommandOutput } from "../commands/DescribeExportImageTasksCommand";
|
|
212
212
|
import { DescribeExportTasksCommandInput, DescribeExportTasksCommandOutput } from "../commands/DescribeExportTasksCommand";
|
|
213
|
+
import { DescribeFastLaunchImagesCommandInput, DescribeFastLaunchImagesCommandOutput } from "../commands/DescribeFastLaunchImagesCommand";
|
|
213
214
|
import { DescribeFastSnapshotRestoresCommandInput, DescribeFastSnapshotRestoresCommandOutput } from "../commands/DescribeFastSnapshotRestoresCommand";
|
|
214
215
|
import { DescribeFleetHistoryCommandInput, DescribeFleetHistoryCommandOutput } from "../commands/DescribeFleetHistoryCommand";
|
|
215
216
|
import { DescribeFleetInstancesCommandInput, DescribeFleetInstancesCommandOutput } from "../commands/DescribeFleetInstancesCommand";
|
|
@@ -324,6 +325,7 @@ import { DetachNetworkInterfaceCommandInput, DetachNetworkInterfaceCommandOutput
|
|
|
324
325
|
import { DetachVolumeCommandInput, DetachVolumeCommandOutput } from "../commands/DetachVolumeCommand";
|
|
325
326
|
import { DetachVpnGatewayCommandInput, DetachVpnGatewayCommandOutput } from "../commands/DetachVpnGatewayCommand";
|
|
326
327
|
import { DisableEbsEncryptionByDefaultCommandInput, DisableEbsEncryptionByDefaultCommandOutput } from "../commands/DisableEbsEncryptionByDefaultCommand";
|
|
328
|
+
import { DisableFastLaunchCommandInput, DisableFastLaunchCommandOutput } from "../commands/DisableFastLaunchCommand";
|
|
327
329
|
import { DisableFastSnapshotRestoresCommandInput, DisableFastSnapshotRestoresCommandOutput } from "../commands/DisableFastSnapshotRestoresCommand";
|
|
328
330
|
import { DisableImageDeprecationCommandInput, DisableImageDeprecationCommandOutput } from "../commands/DisableImageDeprecationCommand";
|
|
329
331
|
import { DisableIpamOrganizationAdminAccountCommandInput, DisableIpamOrganizationAdminAccountCommandOutput } from "../commands/DisableIpamOrganizationAdminAccountCommand";
|
|
@@ -344,6 +346,7 @@ import { DisassociateTransitGatewayRouteTableCommandInput, DisassociateTransitGa
|
|
|
344
346
|
import { DisassociateTrunkInterfaceCommandInput, DisassociateTrunkInterfaceCommandOutput } from "../commands/DisassociateTrunkInterfaceCommand";
|
|
345
347
|
import { DisassociateVpcCidrBlockCommandInput, DisassociateVpcCidrBlockCommandOutput } from "../commands/DisassociateVpcCidrBlockCommand";
|
|
346
348
|
import { EnableEbsEncryptionByDefaultCommandInput, EnableEbsEncryptionByDefaultCommandOutput } from "../commands/EnableEbsEncryptionByDefaultCommand";
|
|
349
|
+
import { EnableFastLaunchCommandInput, EnableFastLaunchCommandOutput } from "../commands/EnableFastLaunchCommand";
|
|
347
350
|
import { EnableFastSnapshotRestoresCommandInput, EnableFastSnapshotRestoresCommandOutput } from "../commands/EnableFastSnapshotRestoresCommand";
|
|
348
351
|
import { EnableImageDeprecationCommandInput, EnableImageDeprecationCommandOutput } from "../commands/EnableImageDeprecationCommand";
|
|
349
352
|
import { EnableIpamOrganizationAdminAccountCommandInput, EnableIpamOrganizationAdminAccountCommandOutput } from "../commands/EnableIpamOrganizationAdminAccountCommand";
|
|
@@ -726,6 +729,7 @@ export declare const serializeAws_ec2DescribeEgressOnlyInternetGatewaysCommand:
|
|
|
726
729
|
export declare const serializeAws_ec2DescribeElasticGpusCommand: (input: DescribeElasticGpusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
727
730
|
export declare const serializeAws_ec2DescribeExportImageTasksCommand: (input: DescribeExportImageTasksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
728
731
|
export declare const serializeAws_ec2DescribeExportTasksCommand: (input: DescribeExportTasksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
732
|
+
export declare const serializeAws_ec2DescribeFastLaunchImagesCommand: (input: DescribeFastLaunchImagesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
729
733
|
export declare const serializeAws_ec2DescribeFastSnapshotRestoresCommand: (input: DescribeFastSnapshotRestoresCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
730
734
|
export declare const serializeAws_ec2DescribeFleetHistoryCommand: (input: DescribeFleetHistoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
731
735
|
export declare const serializeAws_ec2DescribeFleetInstancesCommand: (input: DescribeFleetInstancesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -840,6 +844,7 @@ export declare const serializeAws_ec2DetachNetworkInterfaceCommand: (input: Deta
|
|
|
840
844
|
export declare const serializeAws_ec2DetachVolumeCommand: (input: DetachVolumeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
841
845
|
export declare const serializeAws_ec2DetachVpnGatewayCommand: (input: DetachVpnGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
842
846
|
export declare const serializeAws_ec2DisableEbsEncryptionByDefaultCommand: (input: DisableEbsEncryptionByDefaultCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
847
|
+
export declare const serializeAws_ec2DisableFastLaunchCommand: (input: DisableFastLaunchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
843
848
|
export declare const serializeAws_ec2DisableFastSnapshotRestoresCommand: (input: DisableFastSnapshotRestoresCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
844
849
|
export declare const serializeAws_ec2DisableImageDeprecationCommand: (input: DisableImageDeprecationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
845
850
|
export declare const serializeAws_ec2DisableIpamOrganizationAdminAccountCommand: (input: DisableIpamOrganizationAdminAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -860,6 +865,7 @@ export declare const serializeAws_ec2DisassociateTransitGatewayRouteTableCommand
|
|
|
860
865
|
export declare const serializeAws_ec2DisassociateTrunkInterfaceCommand: (input: DisassociateTrunkInterfaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
861
866
|
export declare const serializeAws_ec2DisassociateVpcCidrBlockCommand: (input: DisassociateVpcCidrBlockCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
862
867
|
export declare const serializeAws_ec2EnableEbsEncryptionByDefaultCommand: (input: EnableEbsEncryptionByDefaultCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
868
|
+
export declare const serializeAws_ec2EnableFastLaunchCommand: (input: EnableFastLaunchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
863
869
|
export declare const serializeAws_ec2EnableFastSnapshotRestoresCommand: (input: EnableFastSnapshotRestoresCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
864
870
|
export declare const serializeAws_ec2EnableImageDeprecationCommand: (input: EnableImageDeprecationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
865
871
|
export declare const serializeAws_ec2EnableIpamOrganizationAdminAccountCommand: (input: EnableIpamOrganizationAdminAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -1242,6 +1248,7 @@ export declare const deserializeAws_ec2DescribeEgressOnlyInternetGatewaysCommand
|
|
|
1242
1248
|
export declare const deserializeAws_ec2DescribeElasticGpusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeElasticGpusCommandOutput>;
|
|
1243
1249
|
export declare const deserializeAws_ec2DescribeExportImageTasksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeExportImageTasksCommandOutput>;
|
|
1244
1250
|
export declare const deserializeAws_ec2DescribeExportTasksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeExportTasksCommandOutput>;
|
|
1251
|
+
export declare const deserializeAws_ec2DescribeFastLaunchImagesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFastLaunchImagesCommandOutput>;
|
|
1245
1252
|
export declare const deserializeAws_ec2DescribeFastSnapshotRestoresCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFastSnapshotRestoresCommandOutput>;
|
|
1246
1253
|
export declare const deserializeAws_ec2DescribeFleetHistoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFleetHistoryCommandOutput>;
|
|
1247
1254
|
export declare const deserializeAws_ec2DescribeFleetInstancesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFleetInstancesCommandOutput>;
|
|
@@ -1356,6 +1363,7 @@ export declare const deserializeAws_ec2DetachNetworkInterfaceCommand: (output: _
|
|
|
1356
1363
|
export declare const deserializeAws_ec2DetachVolumeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DetachVolumeCommandOutput>;
|
|
1357
1364
|
export declare const deserializeAws_ec2DetachVpnGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DetachVpnGatewayCommandOutput>;
|
|
1358
1365
|
export declare const deserializeAws_ec2DisableEbsEncryptionByDefaultCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableEbsEncryptionByDefaultCommandOutput>;
|
|
1366
|
+
export declare const deserializeAws_ec2DisableFastLaunchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableFastLaunchCommandOutput>;
|
|
1359
1367
|
export declare const deserializeAws_ec2DisableFastSnapshotRestoresCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableFastSnapshotRestoresCommandOutput>;
|
|
1360
1368
|
export declare const deserializeAws_ec2DisableImageDeprecationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableImageDeprecationCommandOutput>;
|
|
1361
1369
|
export declare const deserializeAws_ec2DisableIpamOrganizationAdminAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableIpamOrganizationAdminAccountCommandOutput>;
|
|
@@ -1376,6 +1384,7 @@ export declare const deserializeAws_ec2DisassociateTransitGatewayRouteTableComma
|
|
|
1376
1384
|
export declare const deserializeAws_ec2DisassociateTrunkInterfaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateTrunkInterfaceCommandOutput>;
|
|
1377
1385
|
export declare const deserializeAws_ec2DisassociateVpcCidrBlockCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateVpcCidrBlockCommandOutput>;
|
|
1378
1386
|
export declare const deserializeAws_ec2EnableEbsEncryptionByDefaultCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableEbsEncryptionByDefaultCommandOutput>;
|
|
1387
|
+
export declare const deserializeAws_ec2EnableFastLaunchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableFastLaunchCommandOutput>;
|
|
1379
1388
|
export declare const deserializeAws_ec2EnableFastSnapshotRestoresCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableFastSnapshotRestoresCommandOutput>;
|
|
1380
1389
|
export declare const deserializeAws_ec2EnableImageDeprecationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableImageDeprecationCommandOutput>;
|
|
1381
1390
|
export declare const deserializeAws_ec2EnableIpamOrganizationAdminAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableIpamOrganizationAdminAccountCommandOutput>;
|
|
@@ -209,6 +209,7 @@ import { DescribeEgressOnlyInternetGatewaysCommandInput, DescribeEgressOnlyInter
|
|
|
209
209
|
import { DescribeElasticGpusCommandInput, DescribeElasticGpusCommandOutput } from "./commands/DescribeElasticGpusCommand";
|
|
210
210
|
import { DescribeExportImageTasksCommandInput, DescribeExportImageTasksCommandOutput } from "./commands/DescribeExportImageTasksCommand";
|
|
211
211
|
import { DescribeExportTasksCommandInput, DescribeExportTasksCommandOutput } from "./commands/DescribeExportTasksCommand";
|
|
212
|
+
import { DescribeFastLaunchImagesCommandInput, DescribeFastLaunchImagesCommandOutput } from "./commands/DescribeFastLaunchImagesCommand";
|
|
212
213
|
import { DescribeFastSnapshotRestoresCommandInput, DescribeFastSnapshotRestoresCommandOutput } from "./commands/DescribeFastSnapshotRestoresCommand";
|
|
213
214
|
import { DescribeFleetHistoryCommandInput, DescribeFleetHistoryCommandOutput } from "./commands/DescribeFleetHistoryCommand";
|
|
214
215
|
import { DescribeFleetInstancesCommandInput, DescribeFleetInstancesCommandOutput } from "./commands/DescribeFleetInstancesCommand";
|
|
@@ -323,6 +324,7 @@ import { DetachNetworkInterfaceCommandInput, DetachNetworkInterfaceCommandOutput
|
|
|
323
324
|
import { DetachVolumeCommandInput, DetachVolumeCommandOutput } from "./commands/DetachVolumeCommand";
|
|
324
325
|
import { DetachVpnGatewayCommandInput, DetachVpnGatewayCommandOutput } from "./commands/DetachVpnGatewayCommand";
|
|
325
326
|
import { DisableEbsEncryptionByDefaultCommandInput, DisableEbsEncryptionByDefaultCommandOutput } from "./commands/DisableEbsEncryptionByDefaultCommand";
|
|
327
|
+
import { DisableFastLaunchCommandInput, DisableFastLaunchCommandOutput } from "./commands/DisableFastLaunchCommand";
|
|
326
328
|
import { DisableFastSnapshotRestoresCommandInput, DisableFastSnapshotRestoresCommandOutput } from "./commands/DisableFastSnapshotRestoresCommand";
|
|
327
329
|
import { DisableImageDeprecationCommandInput, DisableImageDeprecationCommandOutput } from "./commands/DisableImageDeprecationCommand";
|
|
328
330
|
import { DisableIpamOrganizationAdminAccountCommandInput, DisableIpamOrganizationAdminAccountCommandOutput } from "./commands/DisableIpamOrganizationAdminAccountCommand";
|
|
@@ -343,6 +345,7 @@ import { DisassociateTransitGatewayRouteTableCommandInput, DisassociateTransitGa
|
|
|
343
345
|
import { DisassociateTrunkInterfaceCommandInput, DisassociateTrunkInterfaceCommandOutput } from "./commands/DisassociateTrunkInterfaceCommand";
|
|
344
346
|
import { DisassociateVpcCidrBlockCommandInput, DisassociateVpcCidrBlockCommandOutput } from "./commands/DisassociateVpcCidrBlockCommand";
|
|
345
347
|
import { EnableEbsEncryptionByDefaultCommandInput, EnableEbsEncryptionByDefaultCommandOutput } from "./commands/EnableEbsEncryptionByDefaultCommand";
|
|
348
|
+
import { EnableFastLaunchCommandInput, EnableFastLaunchCommandOutput } from "./commands/EnableFastLaunchCommand";
|
|
346
349
|
import { EnableFastSnapshotRestoresCommandInput, EnableFastSnapshotRestoresCommandOutput } from "./commands/EnableFastSnapshotRestoresCommand";
|
|
347
350
|
import { EnableImageDeprecationCommandInput, EnableImageDeprecationCommandOutput } from "./commands/EnableImageDeprecationCommand";
|
|
348
351
|
import { EnableIpamOrganizationAdminAccountCommandInput, EnableIpamOrganizationAdminAccountCommandOutput } from "./commands/EnableIpamOrganizationAdminAccountCommand";
|
|
@@ -1359,6 +1362,10 @@ export declare class EC2 extends EC2Client {
|
|
|
1359
1362
|
describeExportTasks(args: DescribeExportTasksCommandInput, cb: (err: any, data?: DescribeExportTasksCommandOutput) => void): void;
|
|
1360
1363
|
describeExportTasks(args: DescribeExportTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeExportTasksCommandOutput) => void): void;
|
|
1361
1364
|
|
|
1365
|
+
describeFastLaunchImages(args: DescribeFastLaunchImagesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFastLaunchImagesCommandOutput>;
|
|
1366
|
+
describeFastLaunchImages(args: DescribeFastLaunchImagesCommandInput, cb: (err: any, data?: DescribeFastLaunchImagesCommandOutput) => void): void;
|
|
1367
|
+
describeFastLaunchImages(args: DescribeFastLaunchImagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFastLaunchImagesCommandOutput) => void): void;
|
|
1368
|
+
|
|
1362
1369
|
describeFastSnapshotRestores(args: DescribeFastSnapshotRestoresCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFastSnapshotRestoresCommandOutput>;
|
|
1363
1370
|
describeFastSnapshotRestores(args: DescribeFastSnapshotRestoresCommandInput, cb: (err: any, data?: DescribeFastSnapshotRestoresCommandOutput) => void): void;
|
|
1364
1371
|
describeFastSnapshotRestores(args: DescribeFastSnapshotRestoresCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFastSnapshotRestoresCommandOutput) => void): void;
|
|
@@ -1815,6 +1822,10 @@ export declare class EC2 extends EC2Client {
|
|
|
1815
1822
|
disableEbsEncryptionByDefault(args: DisableEbsEncryptionByDefaultCommandInput, cb: (err: any, data?: DisableEbsEncryptionByDefaultCommandOutput) => void): void;
|
|
1816
1823
|
disableEbsEncryptionByDefault(args: DisableEbsEncryptionByDefaultCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableEbsEncryptionByDefaultCommandOutput) => void): void;
|
|
1817
1824
|
|
|
1825
|
+
disableFastLaunch(args: DisableFastLaunchCommandInput, options?: __HttpHandlerOptions): Promise<DisableFastLaunchCommandOutput>;
|
|
1826
|
+
disableFastLaunch(args: DisableFastLaunchCommandInput, cb: (err: any, data?: DisableFastLaunchCommandOutput) => void): void;
|
|
1827
|
+
disableFastLaunch(args: DisableFastLaunchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableFastLaunchCommandOutput) => void): void;
|
|
1828
|
+
|
|
1818
1829
|
disableFastSnapshotRestores(args: DisableFastSnapshotRestoresCommandInput, options?: __HttpHandlerOptions): Promise<DisableFastSnapshotRestoresCommandOutput>;
|
|
1819
1830
|
disableFastSnapshotRestores(args: DisableFastSnapshotRestoresCommandInput, cb: (err: any, data?: DisableFastSnapshotRestoresCommandOutput) => void): void;
|
|
1820
1831
|
disableFastSnapshotRestores(args: DisableFastSnapshotRestoresCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableFastSnapshotRestoresCommandOutput) => void): void;
|
|
@@ -1895,6 +1906,10 @@ export declare class EC2 extends EC2Client {
|
|
|
1895
1906
|
enableEbsEncryptionByDefault(args: EnableEbsEncryptionByDefaultCommandInput, cb: (err: any, data?: EnableEbsEncryptionByDefaultCommandOutput) => void): void;
|
|
1896
1907
|
enableEbsEncryptionByDefault(args: EnableEbsEncryptionByDefaultCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableEbsEncryptionByDefaultCommandOutput) => void): void;
|
|
1897
1908
|
|
|
1909
|
+
enableFastLaunch(args: EnableFastLaunchCommandInput, options?: __HttpHandlerOptions): Promise<EnableFastLaunchCommandOutput>;
|
|
1910
|
+
enableFastLaunch(args: EnableFastLaunchCommandInput, cb: (err: any, data?: EnableFastLaunchCommandOutput) => void): void;
|
|
1911
|
+
enableFastLaunch(args: EnableFastLaunchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableFastLaunchCommandOutput) => void): void;
|
|
1912
|
+
|
|
1898
1913
|
enableFastSnapshotRestores(args: EnableFastSnapshotRestoresCommandInput, options?: __HttpHandlerOptions): Promise<EnableFastSnapshotRestoresCommandOutput>;
|
|
1899
1914
|
enableFastSnapshotRestores(args: EnableFastSnapshotRestoresCommandInput, cb: (err: any, data?: EnableFastSnapshotRestoresCommandOutput) => void): void;
|
|
1900
1915
|
enableFastSnapshotRestores(args: EnableFastSnapshotRestoresCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableFastSnapshotRestoresCommandOutput) => void): void;
|