@aws-sdk/client-ec2 3.171.0 → 3.174.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 +22 -0
- package/dist-cjs/commands/CreateTrafficMirrorFilterRuleCommand.js +3 -3
- package/dist-cjs/commands/DescribeAddressesAttributeCommand.js +3 -3
- package/dist-cjs/commands/DescribeAggregateIdFormatCommand.js +1 -2
- package/dist-cjs/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.js +2 -1
- package/dist-cjs/commands/DescribeLocalGatewayVirtualInterfacesCommand.js +1 -2
- package/dist-cjs/commands/MonitorInstancesCommand.js +3 -3
- package/dist-cjs/models/models_0.js +978 -27
- package/dist-cjs/models/models_1.js +250 -18
- package/dist-cjs/models/models_2.js +152 -18
- package/dist-cjs/models/models_3.js +279 -18
- package/dist-cjs/models/models_4.js +106 -18
- package/dist-cjs/models/models_5.js +62 -18
- package/dist-cjs/models/models_6.js +46 -3
- package/dist-cjs/protocols/Aws_ec2.js +88 -0
- package/dist-es/commands/CreateTrafficMirrorFilterRuleCommand.js +1 -1
- package/dist-es/commands/DescribeAddressesAttributeCommand.js +1 -1
- package/dist-es/commands/DescribeAggregateIdFormatCommand.js +1 -2
- package/dist-es/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.js +2 -1
- package/dist-es/commands/DescribeLocalGatewayVirtualInterfacesCommand.js +1 -2
- package/dist-es/commands/MonitorInstancesCommand.js +1 -1
- package/dist-es/models/models_0.js +966 -12
- package/dist-es/models/models_1.js +235 -3
- package/dist-es/models/models_2.js +137 -3
- package/dist-es/models/models_3.js +264 -3
- package/dist-es/models/models_4.js +91 -3
- package/dist-es/models/models_5.js +47 -3
- package/dist-es/models/models_6.js +33 -0
- package/dist-es/protocols/Aws_ec2.js +88 -0
- package/dist-types/EC2.d.ts +13 -30
- package/dist-types/commands/CreateTrafficMirrorFilterRuleCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAddressesAttributeCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAggregateIdFormatCommand.d.ts +1 -2
- package/dist-types/commands/DescribeInstancesCommand.d.ts +0 -3
- package/dist-types/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeLocalGatewayVirtualInterfacesCommand.d.ts +1 -2
- package/dist-types/commands/DescribeReservedInstancesCommand.d.ts +0 -3
- package/dist-types/commands/DescribeReservedInstancesModificationsCommand.d.ts +0 -3
- package/dist-types/commands/DescribeReservedInstancesOfferingsCommand.d.ts +0 -3
- package/dist-types/commands/DescribeScheduledInstanceAvailabilityCommand.d.ts +0 -4
- package/dist-types/commands/DescribeScheduledInstancesCommand.d.ts +0 -4
- package/dist-types/commands/ModifyReservedInstancesCommand.d.ts +4 -6
- package/dist-types/commands/MonitorInstancesCommand.d.ts +1 -1
- package/dist-types/commands/PurchaseReservedInstancesOfferingCommand.d.ts +3 -0
- package/dist-types/commands/PurchaseScheduledInstancesCommand.d.ts +4 -1
- package/dist-types/commands/RequestSpotInstancesCommand.d.ts +1 -1
- package/dist-types/commands/RunInstancesCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +975 -108
- package/dist-types/models/models_1.d.ts +288 -143
- package/dist-types/models/models_2.d.ts +202 -79
- package/dist-types/models/models_3.d.ts +291 -161
- package/dist-types/models/models_4.d.ts +221 -103
- package/dist-types/models/models_5.d.ts +102 -61
- package/dist-types/models/models_6.d.ts +78 -14
- package/dist-types/ts3.4/commands/CreateTrafficMirrorFilterRuleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeAddressesAttributeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeAggregateIdFormatCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeLocalGatewayVirtualInterfacesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/MonitorInstancesCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +935 -846
- package/dist-types/ts3.4/models/models_1.d.ts +216 -154
- package/dist-types/ts3.4/models/models_2.d.ts +145 -83
- package/dist-types/ts3.4/models/models_3.d.ts +248 -171
- package/dist-types/ts3.4/models/models_4.d.ts +104 -72
- package/dist-types/ts3.4/models/models_5.d.ts +61 -47
- package/dist-types/ts3.4/models/models_6.d.ts +47 -19
- package/package.json +1 -1
|
@@ -1,4 +1,44 @@
|
|
|
1
1
|
import { __assign } from "tslib";
|
|
2
|
+
export var AvailabilityZoneOptInStatus;
|
|
3
|
+
(function (AvailabilityZoneOptInStatus) {
|
|
4
|
+
AvailabilityZoneOptInStatus["not_opted_in"] = "not-opted-in";
|
|
5
|
+
AvailabilityZoneOptInStatus["opt_in_not_required"] = "opt-in-not-required";
|
|
6
|
+
AvailabilityZoneOptInStatus["opted_in"] = "opted-in";
|
|
7
|
+
})(AvailabilityZoneOptInStatus || (AvailabilityZoneOptInStatus = {}));
|
|
8
|
+
export var AvailabilityZoneState;
|
|
9
|
+
(function (AvailabilityZoneState) {
|
|
10
|
+
AvailabilityZoneState["available"] = "available";
|
|
11
|
+
AvailabilityZoneState["impaired"] = "impaired";
|
|
12
|
+
AvailabilityZoneState["information"] = "information";
|
|
13
|
+
AvailabilityZoneState["unavailable"] = "unavailable";
|
|
14
|
+
})(AvailabilityZoneState || (AvailabilityZoneState = {}));
|
|
15
|
+
export var ClientVpnConnectionStatusCode;
|
|
16
|
+
(function (ClientVpnConnectionStatusCode) {
|
|
17
|
+
ClientVpnConnectionStatusCode["active"] = "active";
|
|
18
|
+
ClientVpnConnectionStatusCode["failed_to_terminate"] = "failed-to-terminate";
|
|
19
|
+
ClientVpnConnectionStatusCode["terminated"] = "terminated";
|
|
20
|
+
ClientVpnConnectionStatusCode["terminating"] = "terminating";
|
|
21
|
+
})(ClientVpnConnectionStatusCode || (ClientVpnConnectionStatusCode = {}));
|
|
22
|
+
export var AssociatedNetworkType;
|
|
23
|
+
(function (AssociatedNetworkType) {
|
|
24
|
+
AssociatedNetworkType["vpc"] = "vpc";
|
|
25
|
+
})(AssociatedNetworkType || (AssociatedNetworkType = {}));
|
|
26
|
+
export var ClientVpnEndpointAttributeStatusCode;
|
|
27
|
+
(function (ClientVpnEndpointAttributeStatusCode) {
|
|
28
|
+
ClientVpnEndpointAttributeStatusCode["applied"] = "applied";
|
|
29
|
+
ClientVpnEndpointAttributeStatusCode["applying"] = "applying";
|
|
30
|
+
})(ClientVpnEndpointAttributeStatusCode || (ClientVpnEndpointAttributeStatusCode = {}));
|
|
31
|
+
export var VpnProtocol;
|
|
32
|
+
(function (VpnProtocol) {
|
|
33
|
+
VpnProtocol["openvpn"] = "openvpn";
|
|
34
|
+
})(VpnProtocol || (VpnProtocol = {}));
|
|
35
|
+
export var ConversionTaskState;
|
|
36
|
+
(function (ConversionTaskState) {
|
|
37
|
+
ConversionTaskState["active"] = "active";
|
|
38
|
+
ConversionTaskState["cancelled"] = "cancelled";
|
|
39
|
+
ConversionTaskState["cancelling"] = "cancelling";
|
|
40
|
+
ConversionTaskState["completed"] = "completed";
|
|
41
|
+
})(ConversionTaskState || (ConversionTaskState = {}));
|
|
2
42
|
export var ElasticGpuStatus;
|
|
3
43
|
(function (ElasticGpuStatus) {
|
|
4
44
|
ElasticGpuStatus["Impaired"] = "IMPAIRED";
|
|
@@ -21,6 +61,14 @@ export var FastLaunchStateCode;
|
|
|
21
61
|
FastLaunchStateCode["enabling"] = "enabling";
|
|
22
62
|
FastLaunchStateCode["enabling_failed"] = "enabling-failed";
|
|
23
63
|
})(FastLaunchStateCode || (FastLaunchStateCode = {}));
|
|
64
|
+
export var FastSnapshotRestoreStateCode;
|
|
65
|
+
(function (FastSnapshotRestoreStateCode) {
|
|
66
|
+
FastSnapshotRestoreStateCode["disabled"] = "disabled";
|
|
67
|
+
FastSnapshotRestoreStateCode["disabling"] = "disabling";
|
|
68
|
+
FastSnapshotRestoreStateCode["enabled"] = "enabled";
|
|
69
|
+
FastSnapshotRestoreStateCode["enabling"] = "enabling";
|
|
70
|
+
FastSnapshotRestoreStateCode["optimizing"] = "optimizing";
|
|
71
|
+
})(FastSnapshotRestoreStateCode || (FastSnapshotRestoreStateCode = {}));
|
|
24
72
|
export var FleetEventType;
|
|
25
73
|
(function (FleetEventType) {
|
|
26
74
|
FleetEventType["FLEET_CHANGE"] = "fleet-change";
|
|
@@ -34,6 +82,29 @@ export var FleetActivityStatus;
|
|
|
34
82
|
FleetActivityStatus["PENDING_FULFILLMENT"] = "pending_fulfillment";
|
|
35
83
|
FleetActivityStatus["PENDING_TERMINATION"] = "pending_termination";
|
|
36
84
|
})(FleetActivityStatus || (FleetActivityStatus = {}));
|
|
85
|
+
export var FpgaImageAttributeName;
|
|
86
|
+
(function (FpgaImageAttributeName) {
|
|
87
|
+
FpgaImageAttributeName["description"] = "description";
|
|
88
|
+
FpgaImageAttributeName["loadPermission"] = "loadPermission";
|
|
89
|
+
FpgaImageAttributeName["name"] = "name";
|
|
90
|
+
FpgaImageAttributeName["productCodes"] = "productCodes";
|
|
91
|
+
})(FpgaImageAttributeName || (FpgaImageAttributeName = {}));
|
|
92
|
+
export var PermissionGroup;
|
|
93
|
+
(function (PermissionGroup) {
|
|
94
|
+
PermissionGroup["all"] = "all";
|
|
95
|
+
})(PermissionGroup || (PermissionGroup = {}));
|
|
96
|
+
export var ProductCodeValues;
|
|
97
|
+
(function (ProductCodeValues) {
|
|
98
|
+
ProductCodeValues["devpay"] = "devpay";
|
|
99
|
+
ProductCodeValues["marketplace"] = "marketplace";
|
|
100
|
+
})(ProductCodeValues || (ProductCodeValues = {}));
|
|
101
|
+
export var FpgaImageStateCode;
|
|
102
|
+
(function (FpgaImageStateCode) {
|
|
103
|
+
FpgaImageStateCode["available"] = "available";
|
|
104
|
+
FpgaImageStateCode["failed"] = "failed";
|
|
105
|
+
FpgaImageStateCode["pending"] = "pending";
|
|
106
|
+
FpgaImageStateCode["unavailable"] = "unavailable";
|
|
107
|
+
})(FpgaImageStateCode || (FpgaImageStateCode = {}));
|
|
37
108
|
export var PaymentOption;
|
|
38
109
|
(function (PaymentOption) {
|
|
39
110
|
PaymentOption["ALL_UPFRONT"] = "AllUpfront";
|
|
@@ -47,15 +118,101 @@ export var ReservationState;
|
|
|
47
118
|
ReservationState["PAYMENT_PENDING"] = "payment-pending";
|
|
48
119
|
ReservationState["RETIRED"] = "retired";
|
|
49
120
|
})(ReservationState || (ReservationState = {}));
|
|
121
|
+
export var ImageAttributeName;
|
|
122
|
+
(function (ImageAttributeName) {
|
|
123
|
+
ImageAttributeName["blockDeviceMapping"] = "blockDeviceMapping";
|
|
124
|
+
ImageAttributeName["bootMode"] = "bootMode";
|
|
125
|
+
ImageAttributeName["description"] = "description";
|
|
126
|
+
ImageAttributeName["kernel"] = "kernel";
|
|
127
|
+
ImageAttributeName["lastLaunchedTime"] = "lastLaunchedTime";
|
|
128
|
+
ImageAttributeName["launchPermission"] = "launchPermission";
|
|
129
|
+
ImageAttributeName["productCodes"] = "productCodes";
|
|
130
|
+
ImageAttributeName["ramdisk"] = "ramdisk";
|
|
131
|
+
ImageAttributeName["sriovNetSupport"] = "sriovNetSupport";
|
|
132
|
+
ImageAttributeName["tpmSupport"] = "tpmSupport";
|
|
133
|
+
ImageAttributeName["uefiData"] = "uefiData";
|
|
134
|
+
})(ImageAttributeName || (ImageAttributeName = {}));
|
|
135
|
+
export var ArchitectureValues;
|
|
136
|
+
(function (ArchitectureValues) {
|
|
137
|
+
ArchitectureValues["arm64"] = "arm64";
|
|
138
|
+
ArchitectureValues["i386"] = "i386";
|
|
139
|
+
ArchitectureValues["x86_64"] = "x86_64";
|
|
140
|
+
ArchitectureValues["x86_64_mac"] = "x86_64_mac";
|
|
141
|
+
})(ArchitectureValues || (ArchitectureValues = {}));
|
|
142
|
+
export var BootModeValues;
|
|
143
|
+
(function (BootModeValues) {
|
|
144
|
+
BootModeValues["legacy_bios"] = "legacy-bios";
|
|
145
|
+
BootModeValues["uefi"] = "uefi";
|
|
146
|
+
})(BootModeValues || (BootModeValues = {}));
|
|
147
|
+
export var HypervisorType;
|
|
148
|
+
(function (HypervisorType) {
|
|
149
|
+
HypervisorType["ovm"] = "ovm";
|
|
150
|
+
HypervisorType["xen"] = "xen";
|
|
151
|
+
})(HypervisorType || (HypervisorType = {}));
|
|
152
|
+
export var ImageTypeValues;
|
|
153
|
+
(function (ImageTypeValues) {
|
|
154
|
+
ImageTypeValues["kernel"] = "kernel";
|
|
155
|
+
ImageTypeValues["machine"] = "machine";
|
|
156
|
+
ImageTypeValues["ramdisk"] = "ramdisk";
|
|
157
|
+
})(ImageTypeValues || (ImageTypeValues = {}));
|
|
158
|
+
export var DeviceType;
|
|
159
|
+
(function (DeviceType) {
|
|
160
|
+
DeviceType["ebs"] = "ebs";
|
|
161
|
+
DeviceType["instance_store"] = "instance-store";
|
|
162
|
+
})(DeviceType || (DeviceType = {}));
|
|
163
|
+
export var ImageState;
|
|
164
|
+
(function (ImageState) {
|
|
165
|
+
ImageState["available"] = "available";
|
|
166
|
+
ImageState["deregistered"] = "deregistered";
|
|
167
|
+
ImageState["error"] = "error";
|
|
168
|
+
ImageState["failed"] = "failed";
|
|
169
|
+
ImageState["invalid"] = "invalid";
|
|
170
|
+
ImageState["pending"] = "pending";
|
|
171
|
+
ImageState["transient"] = "transient";
|
|
172
|
+
})(ImageState || (ImageState = {}));
|
|
50
173
|
export var TpmSupportValues;
|
|
51
174
|
(function (TpmSupportValues) {
|
|
52
175
|
TpmSupportValues["v2_0"] = "v2.0";
|
|
53
176
|
})(TpmSupportValues || (TpmSupportValues = {}));
|
|
177
|
+
export var VirtualizationType;
|
|
178
|
+
(function (VirtualizationType) {
|
|
179
|
+
VirtualizationType["hvm"] = "hvm";
|
|
180
|
+
VirtualizationType["paravirtual"] = "paravirtual";
|
|
181
|
+
})(VirtualizationType || (VirtualizationType = {}));
|
|
182
|
+
export var InstanceAttributeName;
|
|
183
|
+
(function (InstanceAttributeName) {
|
|
184
|
+
InstanceAttributeName["blockDeviceMapping"] = "blockDeviceMapping";
|
|
185
|
+
InstanceAttributeName["disableApiStop"] = "disableApiStop";
|
|
186
|
+
InstanceAttributeName["disableApiTermination"] = "disableApiTermination";
|
|
187
|
+
InstanceAttributeName["ebsOptimized"] = "ebsOptimized";
|
|
188
|
+
InstanceAttributeName["enaSupport"] = "enaSupport";
|
|
189
|
+
InstanceAttributeName["enclaveOptions"] = "enclaveOptions";
|
|
190
|
+
InstanceAttributeName["groupSet"] = "groupSet";
|
|
191
|
+
InstanceAttributeName["instanceInitiatedShutdownBehavior"] = "instanceInitiatedShutdownBehavior";
|
|
192
|
+
InstanceAttributeName["instanceType"] = "instanceType";
|
|
193
|
+
InstanceAttributeName["kernel"] = "kernel";
|
|
194
|
+
InstanceAttributeName["productCodes"] = "productCodes";
|
|
195
|
+
InstanceAttributeName["ramdisk"] = "ramdisk";
|
|
196
|
+
InstanceAttributeName["rootDeviceName"] = "rootDeviceName";
|
|
197
|
+
InstanceAttributeName["sourceDestCheck"] = "sourceDestCheck";
|
|
198
|
+
InstanceAttributeName["sriovNetSupport"] = "sriovNetSupport";
|
|
199
|
+
InstanceAttributeName["userData"] = "userData";
|
|
200
|
+
})(InstanceAttributeName || (InstanceAttributeName = {}));
|
|
201
|
+
export var InstanceLifecycleType;
|
|
202
|
+
(function (InstanceLifecycleType) {
|
|
203
|
+
InstanceLifecycleType["scheduled"] = "scheduled";
|
|
204
|
+
InstanceLifecycleType["spot"] = "spot";
|
|
205
|
+
})(InstanceLifecycleType || (InstanceLifecycleType = {}));
|
|
54
206
|
export var InstanceAutoRecoveryState;
|
|
55
207
|
(function (InstanceAutoRecoveryState) {
|
|
56
208
|
InstanceAutoRecoveryState["default"] = "default";
|
|
57
209
|
InstanceAutoRecoveryState["disabled"] = "disabled";
|
|
58
210
|
})(InstanceAutoRecoveryState || (InstanceAutoRecoveryState = {}));
|
|
211
|
+
export var InstanceMetadataEndpointState;
|
|
212
|
+
(function (InstanceMetadataEndpointState) {
|
|
213
|
+
InstanceMetadataEndpointState["disabled"] = "disabled";
|
|
214
|
+
InstanceMetadataEndpointState["enabled"] = "enabled";
|
|
215
|
+
})(InstanceMetadataEndpointState || (InstanceMetadataEndpointState = {}));
|
|
59
216
|
export var InstanceMetadataProtocolState;
|
|
60
217
|
(function (InstanceMetadataProtocolState) {
|
|
61
218
|
InstanceMetadataProtocolState["disabled"] = "disabled";
|
|
@@ -71,6 +228,71 @@ export var InstanceMetadataTagsState;
|
|
|
71
228
|
InstanceMetadataTagsState["disabled"] = "disabled";
|
|
72
229
|
InstanceMetadataTagsState["enabled"] = "enabled";
|
|
73
230
|
})(InstanceMetadataTagsState || (InstanceMetadataTagsState = {}));
|
|
231
|
+
export var InstanceMetadataOptionsState;
|
|
232
|
+
(function (InstanceMetadataOptionsState) {
|
|
233
|
+
InstanceMetadataOptionsState["applied"] = "applied";
|
|
234
|
+
InstanceMetadataOptionsState["pending"] = "pending";
|
|
235
|
+
})(InstanceMetadataOptionsState || (InstanceMetadataOptionsState = {}));
|
|
236
|
+
export var MonitoringState;
|
|
237
|
+
(function (MonitoringState) {
|
|
238
|
+
MonitoringState["disabled"] = "disabled";
|
|
239
|
+
MonitoringState["disabling"] = "disabling";
|
|
240
|
+
MonitoringState["enabled"] = "enabled";
|
|
241
|
+
MonitoringState["pending"] = "pending";
|
|
242
|
+
})(MonitoringState || (MonitoringState = {}));
|
|
243
|
+
export var InstanceStateName;
|
|
244
|
+
(function (InstanceStateName) {
|
|
245
|
+
InstanceStateName["pending"] = "pending";
|
|
246
|
+
InstanceStateName["running"] = "running";
|
|
247
|
+
InstanceStateName["shutting_down"] = "shutting-down";
|
|
248
|
+
InstanceStateName["stopped"] = "stopped";
|
|
249
|
+
InstanceStateName["stopping"] = "stopping";
|
|
250
|
+
InstanceStateName["terminated"] = "terminated";
|
|
251
|
+
})(InstanceStateName || (InstanceStateName = {}));
|
|
252
|
+
export var EventCode;
|
|
253
|
+
(function (EventCode) {
|
|
254
|
+
EventCode["instance_reboot"] = "instance-reboot";
|
|
255
|
+
EventCode["instance_retirement"] = "instance-retirement";
|
|
256
|
+
EventCode["instance_stop"] = "instance-stop";
|
|
257
|
+
EventCode["system_maintenance"] = "system-maintenance";
|
|
258
|
+
EventCode["system_reboot"] = "system-reboot";
|
|
259
|
+
})(EventCode || (EventCode = {}));
|
|
260
|
+
export var StatusName;
|
|
261
|
+
(function (StatusName) {
|
|
262
|
+
StatusName["reachability"] = "reachability";
|
|
263
|
+
})(StatusName || (StatusName = {}));
|
|
264
|
+
export var StatusType;
|
|
265
|
+
(function (StatusType) {
|
|
266
|
+
StatusType["failed"] = "failed";
|
|
267
|
+
StatusType["initializing"] = "initializing";
|
|
268
|
+
StatusType["insufficient_data"] = "insufficient-data";
|
|
269
|
+
StatusType["passed"] = "passed";
|
|
270
|
+
})(StatusType || (StatusType = {}));
|
|
271
|
+
export var SummaryStatus;
|
|
272
|
+
(function (SummaryStatus) {
|
|
273
|
+
SummaryStatus["impaired"] = "impaired";
|
|
274
|
+
SummaryStatus["initializing"] = "initializing";
|
|
275
|
+
SummaryStatus["insufficient_data"] = "insufficient-data";
|
|
276
|
+
SummaryStatus["not_applicable"] = "not-applicable";
|
|
277
|
+
SummaryStatus["ok"] = "ok";
|
|
278
|
+
})(SummaryStatus || (SummaryStatus = {}));
|
|
279
|
+
export var LocationType;
|
|
280
|
+
(function (LocationType) {
|
|
281
|
+
LocationType["availability_zone"] = "availability-zone";
|
|
282
|
+
LocationType["availability_zone_id"] = "availability-zone-id";
|
|
283
|
+
LocationType["region"] = "region";
|
|
284
|
+
})(LocationType || (LocationType = {}));
|
|
285
|
+
export var EbsOptimizedSupport;
|
|
286
|
+
(function (EbsOptimizedSupport) {
|
|
287
|
+
EbsOptimizedSupport["default"] = "default";
|
|
288
|
+
EbsOptimizedSupport["supported"] = "supported";
|
|
289
|
+
EbsOptimizedSupport["unsupported"] = "unsupported";
|
|
290
|
+
})(EbsOptimizedSupport || (EbsOptimizedSupport = {}));
|
|
291
|
+
export var EbsEncryptionSupport;
|
|
292
|
+
(function (EbsEncryptionSupport) {
|
|
293
|
+
EbsEncryptionSupport["supported"] = "supported";
|
|
294
|
+
EbsEncryptionSupport["unsupported"] = "unsupported";
|
|
295
|
+
})(EbsEncryptionSupport || (EbsEncryptionSupport = {}));
|
|
74
296
|
export var EbsNvmeSupport;
|
|
75
297
|
(function (EbsNvmeSupport) {
|
|
76
298
|
EbsNvmeSupport["REQUIRED"] = "required";
|
|
@@ -82,6 +304,11 @@ export var InstanceTypeHypervisor;
|
|
|
82
304
|
InstanceTypeHypervisor["NITRO"] = "nitro";
|
|
83
305
|
InstanceTypeHypervisor["XEN"] = "xen";
|
|
84
306
|
})(InstanceTypeHypervisor || (InstanceTypeHypervisor = {}));
|
|
307
|
+
export var DiskType;
|
|
308
|
+
(function (DiskType) {
|
|
309
|
+
DiskType["hdd"] = "hdd";
|
|
310
|
+
DiskType["ssd"] = "ssd";
|
|
311
|
+
})(DiskType || (DiskType = {}));
|
|
85
312
|
export var InstanceStorageEncryptionSupport;
|
|
86
313
|
(function (InstanceStorageEncryptionSupport) {
|
|
87
314
|
InstanceStorageEncryptionSupport["required"] = "required";
|
|
@@ -93,6 +320,43 @@ export var EphemeralNvmeSupport;
|
|
|
93
320
|
EphemeralNvmeSupport["SUPPORTED"] = "supported";
|
|
94
321
|
EphemeralNvmeSupport["UNSUPPORTED"] = "unsupported";
|
|
95
322
|
})(EphemeralNvmeSupport || (EphemeralNvmeSupport = {}));
|
|
323
|
+
export var EnaSupport;
|
|
324
|
+
(function (EnaSupport) {
|
|
325
|
+
EnaSupport["required"] = "required";
|
|
326
|
+
EnaSupport["supported"] = "supported";
|
|
327
|
+
EnaSupport["unsupported"] = "unsupported";
|
|
328
|
+
})(EnaSupport || (EnaSupport = {}));
|
|
329
|
+
export var PlacementGroupStrategy;
|
|
330
|
+
(function (PlacementGroupStrategy) {
|
|
331
|
+
PlacementGroupStrategy["cluster"] = "cluster";
|
|
332
|
+
PlacementGroupStrategy["partition"] = "partition";
|
|
333
|
+
PlacementGroupStrategy["spread"] = "spread";
|
|
334
|
+
})(PlacementGroupStrategy || (PlacementGroupStrategy = {}));
|
|
335
|
+
export var ArchitectureType;
|
|
336
|
+
(function (ArchitectureType) {
|
|
337
|
+
ArchitectureType["arm64"] = "arm64";
|
|
338
|
+
ArchitectureType["i386"] = "i386";
|
|
339
|
+
ArchitectureType["x86_64"] = "x86_64";
|
|
340
|
+
ArchitectureType["x86_64_mac"] = "x86_64_mac";
|
|
341
|
+
})(ArchitectureType || (ArchitectureType = {}));
|
|
342
|
+
export var BootModeType;
|
|
343
|
+
(function (BootModeType) {
|
|
344
|
+
BootModeType["legacy_bios"] = "legacy-bios";
|
|
345
|
+
BootModeType["uefi"] = "uefi";
|
|
346
|
+
})(BootModeType || (BootModeType = {}));
|
|
347
|
+
export var RootDeviceType;
|
|
348
|
+
(function (RootDeviceType) {
|
|
349
|
+
RootDeviceType["ebs"] = "ebs";
|
|
350
|
+
RootDeviceType["instance_store"] = "instance-store";
|
|
351
|
+
})(RootDeviceType || (RootDeviceType = {}));
|
|
352
|
+
export var UsageClassType;
|
|
353
|
+
(function (UsageClassType) {
|
|
354
|
+
UsageClassType["on_demand"] = "on-demand";
|
|
355
|
+
UsageClassType["spot"] = "spot";
|
|
356
|
+
})(UsageClassType || (UsageClassType = {}));
|
|
357
|
+
export var DescribeAddressesAttributeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
358
|
+
export var DescribeAddressesAttributeResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
359
|
+
export var DescribeAggregateIdFormatRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
96
360
|
export var IdFormatFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
97
361
|
export var DescribeAggregateIdFormatResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
98
362
|
export var DescribeAvailabilityZonesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -333,6 +597,3 @@ export var DescribeLocalGatewaysRequestFilterSensitiveLog = function (obj) { ret
|
|
|
333
597
|
export var LocalGatewayFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
334
598
|
export var DescribeLocalGatewaysResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
335
599
|
export var DescribeLocalGatewayVirtualInterfaceGroupsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
336
|
-
export var LocalGatewayVirtualInterfaceGroupFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
337
|
-
export var DescribeLocalGatewayVirtualInterfaceGroupsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
338
|
-
export var DescribeLocalGatewayVirtualInterfacesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1,20 +1,65 @@
|
|
|
1
1
|
import { __assign } from "tslib";
|
|
2
|
+
export var MoveStatus;
|
|
3
|
+
(function (MoveStatus) {
|
|
4
|
+
MoveStatus["movingToVpc"] = "movingToVpc";
|
|
5
|
+
MoveStatus["restoringToClassic"] = "restoringToClassic";
|
|
6
|
+
})(MoveStatus || (MoveStatus = {}));
|
|
2
7
|
export var FindingsFound;
|
|
3
8
|
(function (FindingsFound) {
|
|
4
9
|
FindingsFound["false"] = "false";
|
|
5
10
|
FindingsFound["true"] = "true";
|
|
6
11
|
FindingsFound["unknown"] = "unknown";
|
|
7
12
|
})(FindingsFound || (FindingsFound = {}));
|
|
13
|
+
export var AnalysisStatus;
|
|
14
|
+
(function (AnalysisStatus) {
|
|
15
|
+
AnalysisStatus["failed"] = "failed";
|
|
16
|
+
AnalysisStatus["running"] = "running";
|
|
17
|
+
AnalysisStatus["succeeded"] = "succeeded";
|
|
18
|
+
})(AnalysisStatus || (AnalysisStatus = {}));
|
|
19
|
+
export var NetworkInterfaceAttribute;
|
|
20
|
+
(function (NetworkInterfaceAttribute) {
|
|
21
|
+
NetworkInterfaceAttribute["attachment"] = "attachment";
|
|
22
|
+
NetworkInterfaceAttribute["description"] = "description";
|
|
23
|
+
NetworkInterfaceAttribute["groupSet"] = "groupSet";
|
|
24
|
+
NetworkInterfaceAttribute["sourceDestCheck"] = "sourceDestCheck";
|
|
25
|
+
})(NetworkInterfaceAttribute || (NetworkInterfaceAttribute = {}));
|
|
8
26
|
export var OfferingClassType;
|
|
9
27
|
(function (OfferingClassType) {
|
|
10
28
|
OfferingClassType["CONVERTIBLE"] = "convertible";
|
|
11
29
|
OfferingClassType["STANDARD"] = "standard";
|
|
12
30
|
})(OfferingClassType || (OfferingClassType = {}));
|
|
31
|
+
export var OfferingTypeValues;
|
|
32
|
+
(function (OfferingTypeValues) {
|
|
33
|
+
OfferingTypeValues["All_Upfront"] = "All Upfront";
|
|
34
|
+
OfferingTypeValues["Heavy_Utilization"] = "Heavy Utilization";
|
|
35
|
+
OfferingTypeValues["Light_Utilization"] = "Light Utilization";
|
|
36
|
+
OfferingTypeValues["Medium_Utilization"] = "Medium Utilization";
|
|
37
|
+
OfferingTypeValues["No_Upfront"] = "No Upfront";
|
|
38
|
+
OfferingTypeValues["Partial_Upfront"] = "Partial Upfront";
|
|
39
|
+
})(OfferingTypeValues || (OfferingTypeValues = {}));
|
|
40
|
+
export var RecurringChargeFrequency;
|
|
41
|
+
(function (RecurringChargeFrequency) {
|
|
42
|
+
RecurringChargeFrequency["Hourly"] = "Hourly";
|
|
43
|
+
})(RecurringChargeFrequency || (RecurringChargeFrequency = {}));
|
|
13
44
|
export var Scope;
|
|
14
45
|
(function (Scope) {
|
|
15
46
|
Scope["AVAILABILITY_ZONE"] = "Availability Zone";
|
|
16
47
|
Scope["REGIONAL"] = "Region";
|
|
17
48
|
})(Scope || (Scope = {}));
|
|
49
|
+
export var ReservedInstanceState;
|
|
50
|
+
(function (ReservedInstanceState) {
|
|
51
|
+
ReservedInstanceState["active"] = "active";
|
|
52
|
+
ReservedInstanceState["payment_failed"] = "payment-failed";
|
|
53
|
+
ReservedInstanceState["payment_pending"] = "payment-pending";
|
|
54
|
+
ReservedInstanceState["queued"] = "queued";
|
|
55
|
+
ReservedInstanceState["queued_deleted"] = "queued-deleted";
|
|
56
|
+
ReservedInstanceState["retired"] = "retired";
|
|
57
|
+
})(ReservedInstanceState || (ReservedInstanceState = {}));
|
|
58
|
+
export var SnapshotAttributeName;
|
|
59
|
+
(function (SnapshotAttributeName) {
|
|
60
|
+
SnapshotAttributeName["createVolumePermission"] = "createVolumePermission";
|
|
61
|
+
SnapshotAttributeName["productCodes"] = "productCodes";
|
|
62
|
+
})(SnapshotAttributeName || (SnapshotAttributeName = {}));
|
|
18
63
|
export var TieringOperationStatus;
|
|
19
64
|
(function (TieringOperationStatus) {
|
|
20
65
|
TieringOperationStatus["archival_completed"] = "archival-completed";
|
|
@@ -49,6 +94,52 @@ export var ReplacementStrategy;
|
|
|
49
94
|
ReplacementStrategy["LAUNCH"] = "launch";
|
|
50
95
|
ReplacementStrategy["LAUNCH_BEFORE_TERMINATE"] = "launch-before-terminate";
|
|
51
96
|
})(ReplacementStrategy || (ReplacementStrategy = {}));
|
|
97
|
+
export var SpotInstanceState;
|
|
98
|
+
(function (SpotInstanceState) {
|
|
99
|
+
SpotInstanceState["active"] = "active";
|
|
100
|
+
SpotInstanceState["cancelled"] = "cancelled";
|
|
101
|
+
SpotInstanceState["closed"] = "closed";
|
|
102
|
+
SpotInstanceState["failed"] = "failed";
|
|
103
|
+
SpotInstanceState["open"] = "open";
|
|
104
|
+
})(SpotInstanceState || (SpotInstanceState = {}));
|
|
105
|
+
export var VolumeAttributeName;
|
|
106
|
+
(function (VolumeAttributeName) {
|
|
107
|
+
VolumeAttributeName["autoEnableIO"] = "autoEnableIO";
|
|
108
|
+
VolumeAttributeName["productCodes"] = "productCodes";
|
|
109
|
+
})(VolumeAttributeName || (VolumeAttributeName = {}));
|
|
110
|
+
export var VolumeModificationState;
|
|
111
|
+
(function (VolumeModificationState) {
|
|
112
|
+
VolumeModificationState["completed"] = "completed";
|
|
113
|
+
VolumeModificationState["failed"] = "failed";
|
|
114
|
+
VolumeModificationState["modifying"] = "modifying";
|
|
115
|
+
VolumeModificationState["optimizing"] = "optimizing";
|
|
116
|
+
})(VolumeModificationState || (VolumeModificationState = {}));
|
|
117
|
+
export var VolumeStatusName;
|
|
118
|
+
(function (VolumeStatusName) {
|
|
119
|
+
VolumeStatusName["io_enabled"] = "io-enabled";
|
|
120
|
+
VolumeStatusName["io_performance"] = "io-performance";
|
|
121
|
+
})(VolumeStatusName || (VolumeStatusName = {}));
|
|
122
|
+
export var VolumeStatusInfoStatus;
|
|
123
|
+
(function (VolumeStatusInfoStatus) {
|
|
124
|
+
VolumeStatusInfoStatus["impaired"] = "impaired";
|
|
125
|
+
VolumeStatusInfoStatus["insufficient_data"] = "insufficient-data";
|
|
126
|
+
VolumeStatusInfoStatus["ok"] = "ok";
|
|
127
|
+
})(VolumeStatusInfoStatus || (VolumeStatusInfoStatus = {}));
|
|
128
|
+
export var VpcAttributeName;
|
|
129
|
+
(function (VpcAttributeName) {
|
|
130
|
+
VpcAttributeName["enableDnsHostnames"] = "enableDnsHostnames";
|
|
131
|
+
VpcAttributeName["enableDnsSupport"] = "enableDnsSupport";
|
|
132
|
+
})(VpcAttributeName || (VpcAttributeName = {}));
|
|
133
|
+
export var TransitGatewayPropagationState;
|
|
134
|
+
(function (TransitGatewayPropagationState) {
|
|
135
|
+
TransitGatewayPropagationState["disabled"] = "disabled";
|
|
136
|
+
TransitGatewayPropagationState["disabling"] = "disabling";
|
|
137
|
+
TransitGatewayPropagationState["enabled"] = "enabled";
|
|
138
|
+
TransitGatewayPropagationState["enabling"] = "enabling";
|
|
139
|
+
})(TransitGatewayPropagationState || (TransitGatewayPropagationState = {}));
|
|
140
|
+
export var LocalGatewayVirtualInterfaceGroupFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
141
|
+
export var DescribeLocalGatewayVirtualInterfaceGroupsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
142
|
+
export var DescribeLocalGatewayVirtualInterfacesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
52
143
|
export var LocalGatewayVirtualInterfaceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
53
144
|
export var DescribeLocalGatewayVirtualInterfacesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
54
145
|
export var DescribeManagedPrefixListsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -323,6 +414,3 @@ export var EnableFastLaunchRequestFilterSensitiveLog = function (obj) { return (
|
|
|
323
414
|
export var EnableFastLaunchResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
324
415
|
export var EnableFastSnapshotRestoresRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
325
416
|
export var EnableFastSnapshotRestoreSuccessItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
326
|
-
export var EnableFastSnapshotRestoreStateErrorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
327
|
-
export var EnableFastSnapshotRestoreStateErrorItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
328
|
-
export var EnableFastSnapshotRestoreErrorItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
import { __assign } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
|
+
export var ClientCertificateRevocationListStatusCode;
|
|
4
|
+
(function (ClientCertificateRevocationListStatusCode) {
|
|
5
|
+
ClientCertificateRevocationListStatusCode["active"] = "active";
|
|
6
|
+
ClientCertificateRevocationListStatusCode["pending"] = "pending";
|
|
7
|
+
})(ClientCertificateRevocationListStatusCode || (ClientCertificateRevocationListStatusCode = {}));
|
|
8
|
+
export var UnlimitedSupportedInstanceFamily;
|
|
9
|
+
(function (UnlimitedSupportedInstanceFamily) {
|
|
10
|
+
UnlimitedSupportedInstanceFamily["t2"] = "t2";
|
|
11
|
+
UnlimitedSupportedInstanceFamily["t3"] = "t3";
|
|
12
|
+
UnlimitedSupportedInstanceFamily["t3a"] = "t3a";
|
|
13
|
+
UnlimitedSupportedInstanceFamily["t4g"] = "t4g";
|
|
14
|
+
})(UnlimitedSupportedInstanceFamily || (UnlimitedSupportedInstanceFamily = {}));
|
|
3
15
|
export var PartitionLoadFrequency;
|
|
4
16
|
(function (PartitionLoadFrequency) {
|
|
5
17
|
PartitionLoadFrequency["DAILY"] = "daily";
|
|
@@ -42,6 +54,16 @@ export var IpamManagementState;
|
|
|
42
54
|
IpamManagementState["managed"] = "managed";
|
|
43
55
|
IpamManagementState["unmanaged"] = "unmanaged";
|
|
44
56
|
})(IpamManagementState || (IpamManagementState = {}));
|
|
57
|
+
export var ModifyAvailabilityZoneOptInStatus;
|
|
58
|
+
(function (ModifyAvailabilityZoneOptInStatus) {
|
|
59
|
+
ModifyAvailabilityZoneOptInStatus["not_opted_in"] = "not-opted-in";
|
|
60
|
+
ModifyAvailabilityZoneOptInStatus["opted_in"] = "opted-in";
|
|
61
|
+
})(ModifyAvailabilityZoneOptInStatus || (ModifyAvailabilityZoneOptInStatus = {}));
|
|
62
|
+
export var OperationType;
|
|
63
|
+
(function (OperationType) {
|
|
64
|
+
OperationType["add"] = "add";
|
|
65
|
+
OperationType["remove"] = "remove";
|
|
66
|
+
})(OperationType || (OperationType = {}));
|
|
45
67
|
export var UnsuccessfulInstanceCreditSpecificationErrorCode;
|
|
46
68
|
(function (UnsuccessfulInstanceCreditSpecificationErrorCode) {
|
|
47
69
|
UnsuccessfulInstanceCreditSpecificationErrorCode["INCORRECT_INSTANCE_STATE"] = "IncorrectInstanceState";
|
|
@@ -49,10 +71,35 @@ export var UnsuccessfulInstanceCreditSpecificationErrorCode;
|
|
|
49
71
|
UnsuccessfulInstanceCreditSpecificationErrorCode["INSTANCE_NOT_FOUND"] = "InvalidInstanceID.NotFound";
|
|
50
72
|
UnsuccessfulInstanceCreditSpecificationErrorCode["INVALID_INSTANCE_ID"] = "InvalidInstanceID.Malformed";
|
|
51
73
|
})(UnsuccessfulInstanceCreditSpecificationErrorCode || (UnsuccessfulInstanceCreditSpecificationErrorCode = {}));
|
|
74
|
+
export var HostTenancy;
|
|
75
|
+
(function (HostTenancy) {
|
|
76
|
+
HostTenancy["dedicated"] = "dedicated";
|
|
77
|
+
HostTenancy["host"] = "host";
|
|
78
|
+
})(HostTenancy || (HostTenancy = {}));
|
|
52
79
|
export var TargetStorageTier;
|
|
53
80
|
(function (TargetStorageTier) {
|
|
54
81
|
TargetStorageTier["archive"] = "archive";
|
|
55
82
|
})(TargetStorageTier || (TargetStorageTier = {}));
|
|
83
|
+
export var TrafficMirrorFilterRuleField;
|
|
84
|
+
(function (TrafficMirrorFilterRuleField) {
|
|
85
|
+
TrafficMirrorFilterRuleField["description"] = "description";
|
|
86
|
+
TrafficMirrorFilterRuleField["destination_port_range"] = "destination-port-range";
|
|
87
|
+
TrafficMirrorFilterRuleField["protocol"] = "protocol";
|
|
88
|
+
TrafficMirrorFilterRuleField["source_port_range"] = "source-port-range";
|
|
89
|
+
})(TrafficMirrorFilterRuleField || (TrafficMirrorFilterRuleField = {}));
|
|
90
|
+
export var TrafficMirrorSessionField;
|
|
91
|
+
(function (TrafficMirrorSessionField) {
|
|
92
|
+
TrafficMirrorSessionField["description"] = "description";
|
|
93
|
+
TrafficMirrorSessionField["packet_length"] = "packet-length";
|
|
94
|
+
TrafficMirrorSessionField["virtual_network_id"] = "virtual-network-id";
|
|
95
|
+
})(TrafficMirrorSessionField || (TrafficMirrorSessionField = {}));
|
|
96
|
+
export var VpcTenancy;
|
|
97
|
+
(function (VpcTenancy) {
|
|
98
|
+
VpcTenancy["default"] = "default";
|
|
99
|
+
})(VpcTenancy || (VpcTenancy = {}));
|
|
100
|
+
export var EnableFastSnapshotRestoreStateErrorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
101
|
+
export var EnableFastSnapshotRestoreStateErrorItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
102
|
+
export var EnableFastSnapshotRestoreErrorItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
56
103
|
export var EnableFastSnapshotRestoresResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
57
104
|
export var EnableImageDeprecationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
58
105
|
export var EnableImageDeprecationResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -336,6 +383,3 @@ export var ModifyVpnTunnelCertificateResultFilterSensitiveLog = function (obj) {
|
|
|
336
383
|
export var ModifyVpnTunnelOptionsSpecificationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
337
384
|
export var ModifyVpnTunnelOptionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
338
385
|
export var ModifyVpnTunnelOptionsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
339
|
-
export var MonitorInstancesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
340
|
-
export var InstanceMonitoringFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
341
|
-
export var MonitorInstancesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -6,6 +6,39 @@ export var Status;
|
|
|
6
6
|
Status["inVpc"] = "InVpc";
|
|
7
7
|
Status["moveInProgress"] = "MoveInProgress";
|
|
8
8
|
})(Status || (Status = {}));
|
|
9
|
+
export var ReportInstanceReasonCodes;
|
|
10
|
+
(function (ReportInstanceReasonCodes) {
|
|
11
|
+
ReportInstanceReasonCodes["instance_stuck_in_state"] = "instance-stuck-in-state";
|
|
12
|
+
ReportInstanceReasonCodes["not_accepting_credentials"] = "not-accepting-credentials";
|
|
13
|
+
ReportInstanceReasonCodes["other"] = "other";
|
|
14
|
+
ReportInstanceReasonCodes["password_not_available"] = "password-not-available";
|
|
15
|
+
ReportInstanceReasonCodes["performance_ebs_volume"] = "performance-ebs-volume";
|
|
16
|
+
ReportInstanceReasonCodes["performance_instance_store"] = "performance-instance-store";
|
|
17
|
+
ReportInstanceReasonCodes["performance_network"] = "performance-network";
|
|
18
|
+
ReportInstanceReasonCodes["performance_other"] = "performance-other";
|
|
19
|
+
ReportInstanceReasonCodes["unresponsive"] = "unresponsive";
|
|
20
|
+
})(ReportInstanceReasonCodes || (ReportInstanceReasonCodes = {}));
|
|
21
|
+
export var ReportStatusType;
|
|
22
|
+
(function (ReportStatusType) {
|
|
23
|
+
ReportStatusType["impaired"] = "impaired";
|
|
24
|
+
ReportStatusType["ok"] = "ok";
|
|
25
|
+
})(ReportStatusType || (ReportStatusType = {}));
|
|
26
|
+
export var ResetFpgaImageAttributeName;
|
|
27
|
+
(function (ResetFpgaImageAttributeName) {
|
|
28
|
+
ResetFpgaImageAttributeName["loadPermission"] = "loadPermission";
|
|
29
|
+
})(ResetFpgaImageAttributeName || (ResetFpgaImageAttributeName = {}));
|
|
30
|
+
export var ResetImageAttributeName;
|
|
31
|
+
(function (ResetImageAttributeName) {
|
|
32
|
+
ResetImageAttributeName["launchPermission"] = "launchPermission";
|
|
33
|
+
})(ResetImageAttributeName || (ResetImageAttributeName = {}));
|
|
34
|
+
export var MembershipType;
|
|
35
|
+
(function (MembershipType) {
|
|
36
|
+
MembershipType["igmp"] = "igmp";
|
|
37
|
+
MembershipType["static"] = "static";
|
|
38
|
+
})(MembershipType || (MembershipType = {}));
|
|
39
|
+
export var MonitorInstancesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
40
|
+
export var InstanceMonitoringFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
41
|
+
export var MonitorInstancesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
9
42
|
export var MoveAddressToVpcRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
10
43
|
export var MoveAddressToVpcResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
11
44
|
export var MoveByoipCidrToIpamRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|