@aws-sdk/client-ec2 3.171.0 → 3.172.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/commands/CreateTrafficMirrorFilterRuleCommand.js +2 -1
- package/dist-cjs/commands/DescribeAggregateIdFormatCommand.js +1 -2
- package/dist-cjs/commands/DescribeLocalGatewayVirtualInterfacesCommand.js +1 -2
- package/dist-cjs/commands/MonitorInstancesCommand.js +2 -1
- package/dist-cjs/models/models_0.js +970 -19
- package/dist-cjs/models/models_1.js +242 -10
- package/dist-cjs/models/models_2.js +144 -10
- package/dist-cjs/models/models_3.js +271 -10
- package/dist-cjs/models/models_4.js +98 -10
- package/dist-cjs/models/models_5.js +54 -10
- package/dist-cjs/models/models_6.js +38 -3
- package/dist-cjs/protocols/Aws_ec2.js +61 -0
- package/dist-es/commands/CreateTrafficMirrorFilterRuleCommand.js +2 -1
- package/dist-es/commands/DescribeAggregateIdFormatCommand.js +1 -2
- package/dist-es/commands/DescribeLocalGatewayVirtualInterfacesCommand.js +1 -2
- package/dist-es/commands/MonitorInstancesCommand.js +2 -1
- package/dist-es/models/models_0.js +961 -10
- package/dist-es/models/models_1.js +233 -1
- package/dist-es/models/models_2.js +135 -1
- package/dist-es/models/models_3.js +262 -1
- package/dist-es/models/models_4.js +89 -1
- package/dist-es/models/models_5.js +45 -1
- package/dist-es/models/models_6.js +31 -0
- package/dist-es/protocols/Aws_ec2.js +61 -0
- package/dist-types/commands/CreateTrafficMirrorFilterRuleCommand.d.ts +2 -1
- package/dist-types/commands/DescribeAggregateIdFormatCommand.d.ts +1 -2
- package/dist-types/commands/DescribeLocalGatewayVirtualInterfacesCommand.d.ts +1 -2
- package/dist-types/commands/MonitorInstancesCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +950 -79
- package/dist-types/models/models_1.d.ts +222 -51
- package/dist-types/models/models_2.d.ts +126 -36
- package/dist-types/models/models_3.d.ts +235 -106
- package/dist-types/models/models_4.d.ts +145 -30
- package/dist-types/models/models_5.d.ts +59 -20
- package/dist-types/models/models_6.d.ts +35 -5
- package/dist-types/ts3.4/commands/CreateTrafficMirrorFilterRuleCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeAggregateIdFormatCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeLocalGatewayVirtualInterfacesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/MonitorInstancesCommand.d.ts +2 -4
- package/dist-types/ts3.4/models/models_0.d.ts +925 -834
- package/dist-types/ts3.4/models/models_1.d.ts +204 -130
- package/dist-types/ts3.4/models/models_2.d.ts +119 -64
- package/dist-types/ts3.4/models/models_3.d.ts +228 -153
- package/dist-types/ts3.4/models/models_4.d.ts +86 -57
- package/dist-types/ts3.4/models/models_5.d.ts +46 -30
- package/dist-types/ts3.4/models/models_6.d.ts +31 -14
- package/package.json +1 -1
|
@@ -55,6 +55,12 @@ export var SpotAllocationStrategy;
|
|
|
55
55
|
SpotAllocationStrategy["DIVERSIFIED"] = "diversified";
|
|
56
56
|
SpotAllocationStrategy["LOWEST_PRICE"] = "lowest-price";
|
|
57
57
|
})(SpotAllocationStrategy || (SpotAllocationStrategy = {}));
|
|
58
|
+
export var SpotInstanceInterruptionBehavior;
|
|
59
|
+
(function (SpotInstanceInterruptionBehavior) {
|
|
60
|
+
SpotInstanceInterruptionBehavior["hibernate"] = "hibernate";
|
|
61
|
+
SpotInstanceInterruptionBehavior["stop"] = "stop";
|
|
62
|
+
SpotInstanceInterruptionBehavior["terminate"] = "terminate";
|
|
63
|
+
})(SpotInstanceInterruptionBehavior || (SpotInstanceInterruptionBehavior = {}));
|
|
58
64
|
export var FleetReplacementStrategy;
|
|
59
65
|
(function (FleetReplacementStrategy) {
|
|
60
66
|
FleetReplacementStrategy["LAUNCH"] = "launch";
|
|
@@ -82,11 +88,68 @@ export var InstanceLifecycle;
|
|
|
82
88
|
InstanceLifecycle["ON_DEMAND"] = "on-demand";
|
|
83
89
|
InstanceLifecycle["SPOT"] = "spot";
|
|
84
90
|
})(InstanceLifecycle || (InstanceLifecycle = {}));
|
|
91
|
+
export var PlatformValues;
|
|
92
|
+
(function (PlatformValues) {
|
|
93
|
+
PlatformValues["Windows"] = "Windows";
|
|
94
|
+
})(PlatformValues || (PlatformValues = {}));
|
|
85
95
|
export var DestinationFileFormat;
|
|
86
96
|
(function (DestinationFileFormat) {
|
|
87
97
|
DestinationFileFormat["parquet"] = "parquet";
|
|
88
98
|
DestinationFileFormat["plain_text"] = "plain-text";
|
|
89
99
|
})(DestinationFileFormat || (DestinationFileFormat = {}));
|
|
100
|
+
export var LogDestinationType;
|
|
101
|
+
(function (LogDestinationType) {
|
|
102
|
+
LogDestinationType["cloud_watch_logs"] = "cloud-watch-logs";
|
|
103
|
+
LogDestinationType["kinesis_data_firehose"] = "kinesis-data-firehose";
|
|
104
|
+
LogDestinationType["s3"] = "s3";
|
|
105
|
+
})(LogDestinationType || (LogDestinationType = {}));
|
|
106
|
+
export var FlowLogsResourceType;
|
|
107
|
+
(function (FlowLogsResourceType) {
|
|
108
|
+
FlowLogsResourceType["NetworkInterface"] = "NetworkInterface";
|
|
109
|
+
FlowLogsResourceType["Subnet"] = "Subnet";
|
|
110
|
+
FlowLogsResourceType["TransitGateway"] = "TransitGateway";
|
|
111
|
+
FlowLogsResourceType["TransitGatewayAttachment"] = "TransitGatewayAttachment";
|
|
112
|
+
FlowLogsResourceType["VPC"] = "VPC";
|
|
113
|
+
})(FlowLogsResourceType || (FlowLogsResourceType = {}));
|
|
114
|
+
export var TrafficType;
|
|
115
|
+
(function (TrafficType) {
|
|
116
|
+
TrafficType["ACCEPT"] = "ACCEPT";
|
|
117
|
+
TrafficType["ALL"] = "ALL";
|
|
118
|
+
TrafficType["REJECT"] = "REJECT";
|
|
119
|
+
})(TrafficType || (TrafficType = {}));
|
|
120
|
+
export var VolumeType;
|
|
121
|
+
(function (VolumeType) {
|
|
122
|
+
VolumeType["gp2"] = "gp2";
|
|
123
|
+
VolumeType["gp3"] = "gp3";
|
|
124
|
+
VolumeType["io1"] = "io1";
|
|
125
|
+
VolumeType["io2"] = "io2";
|
|
126
|
+
VolumeType["sc1"] = "sc1";
|
|
127
|
+
VolumeType["st1"] = "st1";
|
|
128
|
+
VolumeType["standard"] = "standard";
|
|
129
|
+
})(VolumeType || (VolumeType = {}));
|
|
130
|
+
export var ContainerFormat;
|
|
131
|
+
(function (ContainerFormat) {
|
|
132
|
+
ContainerFormat["ova"] = "ova";
|
|
133
|
+
})(ContainerFormat || (ContainerFormat = {}));
|
|
134
|
+
export var DiskImageFormat;
|
|
135
|
+
(function (DiskImageFormat) {
|
|
136
|
+
DiskImageFormat["RAW"] = "RAW";
|
|
137
|
+
DiskImageFormat["VHD"] = "VHD";
|
|
138
|
+
DiskImageFormat["VMDK"] = "VMDK";
|
|
139
|
+
})(DiskImageFormat || (DiskImageFormat = {}));
|
|
140
|
+
export var ExportEnvironment;
|
|
141
|
+
(function (ExportEnvironment) {
|
|
142
|
+
ExportEnvironment["citrix"] = "citrix";
|
|
143
|
+
ExportEnvironment["microsoft"] = "microsoft";
|
|
144
|
+
ExportEnvironment["vmware"] = "vmware";
|
|
145
|
+
})(ExportEnvironment || (ExportEnvironment = {}));
|
|
146
|
+
export var ExportTaskState;
|
|
147
|
+
(function (ExportTaskState) {
|
|
148
|
+
ExportTaskState["active"] = "active";
|
|
149
|
+
ExportTaskState["cancelled"] = "cancelled";
|
|
150
|
+
ExportTaskState["cancelling"] = "cancelling";
|
|
151
|
+
ExportTaskState["completed"] = "completed";
|
|
152
|
+
})(ExportTaskState || (ExportTaskState = {}));
|
|
90
153
|
export var IpamState;
|
|
91
154
|
(function (IpamState) {
|
|
92
155
|
IpamState["create_complete"] = "create-complete";
|
|
@@ -151,11 +214,41 @@ export var KeyType;
|
|
|
151
214
|
KeyType["ed25519"] = "ed25519";
|
|
152
215
|
KeyType["rsa"] = "rsa";
|
|
153
216
|
})(KeyType || (KeyType = {}));
|
|
217
|
+
export var CapacityReservationPreference;
|
|
218
|
+
(function (CapacityReservationPreference) {
|
|
219
|
+
CapacityReservationPreference["none"] = "none";
|
|
220
|
+
CapacityReservationPreference["open"] = "open";
|
|
221
|
+
})(CapacityReservationPreference || (CapacityReservationPreference = {}));
|
|
222
|
+
export var ShutdownBehavior;
|
|
223
|
+
(function (ShutdownBehavior) {
|
|
224
|
+
ShutdownBehavior["stop"] = "stop";
|
|
225
|
+
ShutdownBehavior["terminate"] = "terminate";
|
|
226
|
+
})(ShutdownBehavior || (ShutdownBehavior = {}));
|
|
227
|
+
export var MarketType;
|
|
228
|
+
(function (MarketType) {
|
|
229
|
+
MarketType["spot"] = "spot";
|
|
230
|
+
})(MarketType || (MarketType = {}));
|
|
231
|
+
export var InstanceInterruptionBehavior;
|
|
232
|
+
(function (InstanceInterruptionBehavior) {
|
|
233
|
+
InstanceInterruptionBehavior["hibernate"] = "hibernate";
|
|
234
|
+
InstanceInterruptionBehavior["stop"] = "stop";
|
|
235
|
+
InstanceInterruptionBehavior["terminate"] = "terminate";
|
|
236
|
+
})(InstanceInterruptionBehavior || (InstanceInterruptionBehavior = {}));
|
|
237
|
+
export var SpotInstanceType;
|
|
238
|
+
(function (SpotInstanceType) {
|
|
239
|
+
SpotInstanceType["one_time"] = "one-time";
|
|
240
|
+
SpotInstanceType["persistent"] = "persistent";
|
|
241
|
+
})(SpotInstanceType || (SpotInstanceType = {}));
|
|
154
242
|
export var LaunchTemplateAutoRecoveryState;
|
|
155
243
|
(function (LaunchTemplateAutoRecoveryState) {
|
|
156
244
|
LaunchTemplateAutoRecoveryState["default"] = "default";
|
|
157
245
|
LaunchTemplateAutoRecoveryState["disabled"] = "disabled";
|
|
158
246
|
})(LaunchTemplateAutoRecoveryState || (LaunchTemplateAutoRecoveryState = {}));
|
|
247
|
+
export var LaunchTemplateInstanceMetadataEndpointState;
|
|
248
|
+
(function (LaunchTemplateInstanceMetadataEndpointState) {
|
|
249
|
+
LaunchTemplateInstanceMetadataEndpointState["disabled"] = "disabled";
|
|
250
|
+
LaunchTemplateInstanceMetadataEndpointState["enabled"] = "enabled";
|
|
251
|
+
})(LaunchTemplateInstanceMetadataEndpointState || (LaunchTemplateInstanceMetadataEndpointState = {}));
|
|
159
252
|
export var LaunchTemplateInstanceMetadataProtocolIpv6;
|
|
160
253
|
(function (LaunchTemplateInstanceMetadataProtocolIpv6) {
|
|
161
254
|
LaunchTemplateInstanceMetadataProtocolIpv6["disabled"] = "disabled";
|
|
@@ -171,11 +264,44 @@ export var LaunchTemplateInstanceMetadataTagsState;
|
|
|
171
264
|
LaunchTemplateInstanceMetadataTagsState["disabled"] = "disabled";
|
|
172
265
|
LaunchTemplateInstanceMetadataTagsState["enabled"] = "enabled";
|
|
173
266
|
})(LaunchTemplateInstanceMetadataTagsState || (LaunchTemplateInstanceMetadataTagsState = {}));
|
|
267
|
+
export var LaunchTemplateInstanceMetadataOptionsState;
|
|
268
|
+
(function (LaunchTemplateInstanceMetadataOptionsState) {
|
|
269
|
+
LaunchTemplateInstanceMetadataOptionsState["applied"] = "applied";
|
|
270
|
+
LaunchTemplateInstanceMetadataOptionsState["pending"] = "pending";
|
|
271
|
+
})(LaunchTemplateInstanceMetadataOptionsState || (LaunchTemplateInstanceMetadataOptionsState = {}));
|
|
272
|
+
export var LocalGatewayRouteState;
|
|
273
|
+
(function (LocalGatewayRouteState) {
|
|
274
|
+
LocalGatewayRouteState["active"] = "active";
|
|
275
|
+
LocalGatewayRouteState["blackhole"] = "blackhole";
|
|
276
|
+
LocalGatewayRouteState["deleted"] = "deleted";
|
|
277
|
+
LocalGatewayRouteState["deleting"] = "deleting";
|
|
278
|
+
LocalGatewayRouteState["pending"] = "pending";
|
|
279
|
+
})(LocalGatewayRouteState || (LocalGatewayRouteState = {}));
|
|
280
|
+
export var LocalGatewayRouteType;
|
|
281
|
+
(function (LocalGatewayRouteType) {
|
|
282
|
+
LocalGatewayRouteType["propagated"] = "propagated";
|
|
283
|
+
LocalGatewayRouteType["static"] = "static";
|
|
284
|
+
})(LocalGatewayRouteType || (LocalGatewayRouteType = {}));
|
|
174
285
|
export var LocalGatewayRouteTableMode;
|
|
175
286
|
(function (LocalGatewayRouteTableMode) {
|
|
176
287
|
LocalGatewayRouteTableMode["coip"] = "coip";
|
|
177
288
|
LocalGatewayRouteTableMode["direct_vpc_routing"] = "direct-vpc-routing";
|
|
178
289
|
})(LocalGatewayRouteTableMode || (LocalGatewayRouteTableMode = {}));
|
|
290
|
+
export var PrefixListState;
|
|
291
|
+
(function (PrefixListState) {
|
|
292
|
+
PrefixListState["create_complete"] = "create-complete";
|
|
293
|
+
PrefixListState["create_failed"] = "create-failed";
|
|
294
|
+
PrefixListState["create_in_progress"] = "create-in-progress";
|
|
295
|
+
PrefixListState["delete_complete"] = "delete-complete";
|
|
296
|
+
PrefixListState["delete_failed"] = "delete-failed";
|
|
297
|
+
PrefixListState["delete_in_progress"] = "delete-in-progress";
|
|
298
|
+
PrefixListState["modify_complete"] = "modify-complete";
|
|
299
|
+
PrefixListState["modify_failed"] = "modify-failed";
|
|
300
|
+
PrefixListState["modify_in_progress"] = "modify-in-progress";
|
|
301
|
+
PrefixListState["restore_complete"] = "restore-complete";
|
|
302
|
+
PrefixListState["restore_failed"] = "restore-failed";
|
|
303
|
+
PrefixListState["restore_in_progress"] = "restore-in-progress";
|
|
304
|
+
})(PrefixListState || (PrefixListState = {}));
|
|
179
305
|
export var ConnectivityType;
|
|
180
306
|
(function (ConnectivityType) {
|
|
181
307
|
ConnectivityType["PRIVATE"] = "private";
|
|
@@ -189,11 +315,75 @@ export var NatGatewayState;
|
|
|
189
315
|
NatGatewayState["FAILED"] = "failed";
|
|
190
316
|
NatGatewayState["PENDING"] = "pending";
|
|
191
317
|
})(NatGatewayState || (NatGatewayState = {}));
|
|
318
|
+
export var RuleAction;
|
|
319
|
+
(function (RuleAction) {
|
|
320
|
+
RuleAction["allow"] = "allow";
|
|
321
|
+
RuleAction["deny"] = "deny";
|
|
322
|
+
})(RuleAction || (RuleAction = {}));
|
|
323
|
+
export var NetworkInterfaceCreationType;
|
|
324
|
+
(function (NetworkInterfaceCreationType) {
|
|
325
|
+
NetworkInterfaceCreationType["branch"] = "branch";
|
|
326
|
+
NetworkInterfaceCreationType["efa"] = "efa";
|
|
327
|
+
NetworkInterfaceCreationType["trunk"] = "trunk";
|
|
328
|
+
})(NetworkInterfaceCreationType || (NetworkInterfaceCreationType = {}));
|
|
329
|
+
export var NetworkInterfaceType;
|
|
330
|
+
(function (NetworkInterfaceType) {
|
|
331
|
+
NetworkInterfaceType["api_gateway_managed"] = "api_gateway_managed";
|
|
332
|
+
NetworkInterfaceType["aws_codestar_connections_managed"] = "aws_codestar_connections_managed";
|
|
333
|
+
NetworkInterfaceType["branch"] = "branch";
|
|
334
|
+
NetworkInterfaceType["efa"] = "efa";
|
|
335
|
+
NetworkInterfaceType["gateway_load_balancer"] = "gateway_load_balancer";
|
|
336
|
+
NetworkInterfaceType["gateway_load_balancer_endpoint"] = "gateway_load_balancer_endpoint";
|
|
337
|
+
NetworkInterfaceType["global_accelerator_managed"] = "global_accelerator_managed";
|
|
338
|
+
NetworkInterfaceType["interface"] = "interface";
|
|
339
|
+
NetworkInterfaceType["iot_rules_managed"] = "iot_rules_managed";
|
|
340
|
+
NetworkInterfaceType["lambda"] = "lambda";
|
|
341
|
+
NetworkInterfaceType["load_balancer"] = "load_balancer";
|
|
342
|
+
NetworkInterfaceType["natGateway"] = "natGateway";
|
|
343
|
+
NetworkInterfaceType["network_load_balancer"] = "network_load_balancer";
|
|
344
|
+
NetworkInterfaceType["quicksight"] = "quicksight";
|
|
345
|
+
NetworkInterfaceType["transit_gateway"] = "transit_gateway";
|
|
346
|
+
NetworkInterfaceType["trunk"] = "trunk";
|
|
347
|
+
NetworkInterfaceType["vpc_endpoint"] = "vpc_endpoint";
|
|
348
|
+
})(NetworkInterfaceType || (NetworkInterfaceType = {}));
|
|
349
|
+
export var NetworkInterfaceStatus;
|
|
350
|
+
(function (NetworkInterfaceStatus) {
|
|
351
|
+
NetworkInterfaceStatus["associated"] = "associated";
|
|
352
|
+
NetworkInterfaceStatus["attaching"] = "attaching";
|
|
353
|
+
NetworkInterfaceStatus["available"] = "available";
|
|
354
|
+
NetworkInterfaceStatus["detaching"] = "detaching";
|
|
355
|
+
NetworkInterfaceStatus["in_use"] = "in-use";
|
|
356
|
+
})(NetworkInterfaceStatus || (NetworkInterfaceStatus = {}));
|
|
357
|
+
export var InterfacePermissionType;
|
|
358
|
+
(function (InterfacePermissionType) {
|
|
359
|
+
InterfacePermissionType["EIP_ASSOCIATE"] = "EIP-ASSOCIATE";
|
|
360
|
+
InterfacePermissionType["INSTANCE_ATTACH"] = "INSTANCE-ATTACH";
|
|
361
|
+
})(InterfacePermissionType || (InterfacePermissionType = {}));
|
|
362
|
+
export var NetworkInterfacePermissionStateCode;
|
|
363
|
+
(function (NetworkInterfacePermissionStateCode) {
|
|
364
|
+
NetworkInterfacePermissionStateCode["granted"] = "granted";
|
|
365
|
+
NetworkInterfacePermissionStateCode["pending"] = "pending";
|
|
366
|
+
NetworkInterfacePermissionStateCode["revoked"] = "revoked";
|
|
367
|
+
NetworkInterfacePermissionStateCode["revoking"] = "revoking";
|
|
368
|
+
})(NetworkInterfacePermissionStateCode || (NetworkInterfacePermissionStateCode = {}));
|
|
192
369
|
export var SpreadLevel;
|
|
193
370
|
(function (SpreadLevel) {
|
|
194
371
|
SpreadLevel["host"] = "host";
|
|
195
372
|
SpreadLevel["rack"] = "rack";
|
|
196
373
|
})(SpreadLevel || (SpreadLevel = {}));
|
|
374
|
+
export var PlacementStrategy;
|
|
375
|
+
(function (PlacementStrategy) {
|
|
376
|
+
PlacementStrategy["cluster"] = "cluster";
|
|
377
|
+
PlacementStrategy["partition"] = "partition";
|
|
378
|
+
PlacementStrategy["spread"] = "spread";
|
|
379
|
+
})(PlacementStrategy || (PlacementStrategy = {}));
|
|
380
|
+
export var PlacementGroupState;
|
|
381
|
+
(function (PlacementGroupState) {
|
|
382
|
+
PlacementGroupState["available"] = "available";
|
|
383
|
+
PlacementGroupState["deleted"] = "deleted";
|
|
384
|
+
PlacementGroupState["deleting"] = "deleting";
|
|
385
|
+
PlacementGroupState["pending"] = "pending";
|
|
386
|
+
})(PlacementGroupState || (PlacementGroupState = {}));
|
|
197
387
|
export var ReplaceRootVolumeTaskState;
|
|
198
388
|
(function (ReplaceRootVolumeTaskState) {
|
|
199
389
|
ReplaceRootVolumeTaskState["failed"] = "failed";
|
|
@@ -203,16 +393,59 @@ export var ReplaceRootVolumeTaskState;
|
|
|
203
393
|
ReplaceRootVolumeTaskState["pending"] = "pending";
|
|
204
394
|
ReplaceRootVolumeTaskState["succeeded"] = "succeeded";
|
|
205
395
|
})(ReplaceRootVolumeTaskState || (ReplaceRootVolumeTaskState = {}));
|
|
396
|
+
export var RouteOrigin;
|
|
397
|
+
(function (RouteOrigin) {
|
|
398
|
+
RouteOrigin["CreateRoute"] = "CreateRoute";
|
|
399
|
+
RouteOrigin["CreateRouteTable"] = "CreateRouteTable";
|
|
400
|
+
RouteOrigin["EnableVgwRoutePropagation"] = "EnableVgwRoutePropagation";
|
|
401
|
+
})(RouteOrigin || (RouteOrigin = {}));
|
|
402
|
+
export var RouteState;
|
|
403
|
+
(function (RouteState) {
|
|
404
|
+
RouteState["active"] = "active";
|
|
405
|
+
RouteState["blackhole"] = "blackhole";
|
|
406
|
+
})(RouteState || (RouteState = {}));
|
|
407
|
+
export var SnapshotState;
|
|
408
|
+
(function (SnapshotState) {
|
|
409
|
+
SnapshotState["completed"] = "completed";
|
|
410
|
+
SnapshotState["error"] = "error";
|
|
411
|
+
SnapshotState["pending"] = "pending";
|
|
412
|
+
SnapshotState["recoverable"] = "recoverable";
|
|
413
|
+
SnapshotState["recovering"] = "recovering";
|
|
414
|
+
})(SnapshotState || (SnapshotState = {}));
|
|
206
415
|
export var StorageTier;
|
|
207
416
|
(function (StorageTier) {
|
|
208
417
|
StorageTier["archive"] = "archive";
|
|
209
418
|
StorageTier["standard"] = "standard";
|
|
210
419
|
})(StorageTier || (StorageTier = {}));
|
|
420
|
+
export var CopyTagsFromSource;
|
|
421
|
+
(function (CopyTagsFromSource) {
|
|
422
|
+
CopyTagsFromSource["volume"] = "volume";
|
|
423
|
+
})(CopyTagsFromSource || (CopyTagsFromSource = {}));
|
|
424
|
+
export var DatafeedSubscriptionState;
|
|
425
|
+
(function (DatafeedSubscriptionState) {
|
|
426
|
+
DatafeedSubscriptionState["Active"] = "Active";
|
|
427
|
+
DatafeedSubscriptionState["Inactive"] = "Inactive";
|
|
428
|
+
})(DatafeedSubscriptionState || (DatafeedSubscriptionState = {}));
|
|
211
429
|
export var SubnetCidrReservationType;
|
|
212
430
|
(function (SubnetCidrReservationType) {
|
|
213
431
|
SubnetCidrReservationType["explicit"] = "explicit";
|
|
214
432
|
SubnetCidrReservationType["prefix"] = "prefix";
|
|
215
433
|
})(SubnetCidrReservationType || (SubnetCidrReservationType = {}));
|
|
434
|
+
export var TrafficMirrorRuleAction;
|
|
435
|
+
(function (TrafficMirrorRuleAction) {
|
|
436
|
+
TrafficMirrorRuleAction["accept"] = "accept";
|
|
437
|
+
TrafficMirrorRuleAction["reject"] = "reject";
|
|
438
|
+
})(TrafficMirrorRuleAction || (TrafficMirrorRuleAction = {}));
|
|
439
|
+
export var TrafficDirection;
|
|
440
|
+
(function (TrafficDirection) {
|
|
441
|
+
TrafficDirection["egress"] = "egress";
|
|
442
|
+
TrafficDirection["ingress"] = "ingress";
|
|
443
|
+
})(TrafficDirection || (TrafficDirection = {}));
|
|
444
|
+
export var TrafficMirrorNetworkService;
|
|
445
|
+
(function (TrafficMirrorNetworkService) {
|
|
446
|
+
TrafficMirrorNetworkService["amazon_dns"] = "amazon-dns";
|
|
447
|
+
})(TrafficMirrorNetworkService || (TrafficMirrorNetworkService = {}));
|
|
448
|
+
export var DhcpOptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
216
449
|
export var CreateDhcpOptionsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
217
450
|
export var CreateEgressOnlyInternetGatewayRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
218
451
|
export var InternetGatewayAttachmentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -442,4 +675,3 @@ export var TrafficMirrorFilterFilterSensitiveLog = function (obj) { return (__as
|
|
|
442
675
|
export var CreateTrafficMirrorFilterResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
443
676
|
export var TrafficMirrorPortRangeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
444
677
|
export var CreateTrafficMirrorFilterRuleRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
445
|
-
export var CreateTrafficMirrorFilterRuleResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1,4 +1,81 @@
|
|
|
1
1
|
import { __assign } from "tslib";
|
|
2
|
+
export var TrafficMirrorTargetType;
|
|
3
|
+
(function (TrafficMirrorTargetType) {
|
|
4
|
+
TrafficMirrorTargetType["gateway_load_balancer_endpoint"] = "gateway-load-balancer-endpoint";
|
|
5
|
+
TrafficMirrorTargetType["network_interface"] = "network-interface";
|
|
6
|
+
TrafficMirrorTargetType["network_load_balancer"] = "network-load-balancer";
|
|
7
|
+
})(TrafficMirrorTargetType || (TrafficMirrorTargetType = {}));
|
|
8
|
+
export var AutoAcceptSharedAttachmentsValue;
|
|
9
|
+
(function (AutoAcceptSharedAttachmentsValue) {
|
|
10
|
+
AutoAcceptSharedAttachmentsValue["disable"] = "disable";
|
|
11
|
+
AutoAcceptSharedAttachmentsValue["enable"] = "enable";
|
|
12
|
+
})(AutoAcceptSharedAttachmentsValue || (AutoAcceptSharedAttachmentsValue = {}));
|
|
13
|
+
export var DefaultRouteTableAssociationValue;
|
|
14
|
+
(function (DefaultRouteTableAssociationValue) {
|
|
15
|
+
DefaultRouteTableAssociationValue["disable"] = "disable";
|
|
16
|
+
DefaultRouteTableAssociationValue["enable"] = "enable";
|
|
17
|
+
})(DefaultRouteTableAssociationValue || (DefaultRouteTableAssociationValue = {}));
|
|
18
|
+
export var DefaultRouteTablePropagationValue;
|
|
19
|
+
(function (DefaultRouteTablePropagationValue) {
|
|
20
|
+
DefaultRouteTablePropagationValue["disable"] = "disable";
|
|
21
|
+
DefaultRouteTablePropagationValue["enable"] = "enable";
|
|
22
|
+
})(DefaultRouteTablePropagationValue || (DefaultRouteTablePropagationValue = {}));
|
|
23
|
+
export var MulticastSupportValue;
|
|
24
|
+
(function (MulticastSupportValue) {
|
|
25
|
+
MulticastSupportValue["disable"] = "disable";
|
|
26
|
+
MulticastSupportValue["enable"] = "enable";
|
|
27
|
+
})(MulticastSupportValue || (MulticastSupportValue = {}));
|
|
28
|
+
export var VpnEcmpSupportValue;
|
|
29
|
+
(function (VpnEcmpSupportValue) {
|
|
30
|
+
VpnEcmpSupportValue["disable"] = "disable";
|
|
31
|
+
VpnEcmpSupportValue["enable"] = "enable";
|
|
32
|
+
})(VpnEcmpSupportValue || (VpnEcmpSupportValue = {}));
|
|
33
|
+
export var TransitGatewayState;
|
|
34
|
+
(function (TransitGatewayState) {
|
|
35
|
+
TransitGatewayState["available"] = "available";
|
|
36
|
+
TransitGatewayState["deleted"] = "deleted";
|
|
37
|
+
TransitGatewayState["deleting"] = "deleting";
|
|
38
|
+
TransitGatewayState["modifying"] = "modifying";
|
|
39
|
+
TransitGatewayState["pending"] = "pending";
|
|
40
|
+
})(TransitGatewayState || (TransitGatewayState = {}));
|
|
41
|
+
export var ProtocolValue;
|
|
42
|
+
(function (ProtocolValue) {
|
|
43
|
+
ProtocolValue["gre"] = "gre";
|
|
44
|
+
})(ProtocolValue || (ProtocolValue = {}));
|
|
45
|
+
export var BgpStatus;
|
|
46
|
+
(function (BgpStatus) {
|
|
47
|
+
BgpStatus["down"] = "down";
|
|
48
|
+
BgpStatus["up"] = "up";
|
|
49
|
+
})(BgpStatus || (BgpStatus = {}));
|
|
50
|
+
export var TransitGatewayConnectPeerState;
|
|
51
|
+
(function (TransitGatewayConnectPeerState) {
|
|
52
|
+
TransitGatewayConnectPeerState["available"] = "available";
|
|
53
|
+
TransitGatewayConnectPeerState["deleted"] = "deleted";
|
|
54
|
+
TransitGatewayConnectPeerState["deleting"] = "deleting";
|
|
55
|
+
TransitGatewayConnectPeerState["pending"] = "pending";
|
|
56
|
+
})(TransitGatewayConnectPeerState || (TransitGatewayConnectPeerState = {}));
|
|
57
|
+
export var AutoAcceptSharedAssociationsValue;
|
|
58
|
+
(function (AutoAcceptSharedAssociationsValue) {
|
|
59
|
+
AutoAcceptSharedAssociationsValue["disable"] = "disable";
|
|
60
|
+
AutoAcceptSharedAssociationsValue["enable"] = "enable";
|
|
61
|
+
})(AutoAcceptSharedAssociationsValue || (AutoAcceptSharedAssociationsValue = {}));
|
|
62
|
+
export var Igmpv2SupportValue;
|
|
63
|
+
(function (Igmpv2SupportValue) {
|
|
64
|
+
Igmpv2SupportValue["disable"] = "disable";
|
|
65
|
+
Igmpv2SupportValue["enable"] = "enable";
|
|
66
|
+
})(Igmpv2SupportValue || (Igmpv2SupportValue = {}));
|
|
67
|
+
export var StaticSourcesSupportValue;
|
|
68
|
+
(function (StaticSourcesSupportValue) {
|
|
69
|
+
StaticSourcesSupportValue["disable"] = "disable";
|
|
70
|
+
StaticSourcesSupportValue["enable"] = "enable";
|
|
71
|
+
})(StaticSourcesSupportValue || (StaticSourcesSupportValue = {}));
|
|
72
|
+
export var TransitGatewayMulticastDomainState;
|
|
73
|
+
(function (TransitGatewayMulticastDomainState) {
|
|
74
|
+
TransitGatewayMulticastDomainState["available"] = "available";
|
|
75
|
+
TransitGatewayMulticastDomainState["deleted"] = "deleted";
|
|
76
|
+
TransitGatewayMulticastDomainState["deleting"] = "deleting";
|
|
77
|
+
TransitGatewayMulticastDomainState["pending"] = "pending";
|
|
78
|
+
})(TransitGatewayMulticastDomainState || (TransitGatewayMulticastDomainState = {}));
|
|
2
79
|
export var TransitGatewayPolicyTableState;
|
|
3
80
|
(function (TransitGatewayPolicyTableState) {
|
|
4
81
|
TransitGatewayPolicyTableState["available"] = "available";
|
|
@@ -6,6 +83,33 @@ export var TransitGatewayPolicyTableState;
|
|
|
6
83
|
TransitGatewayPolicyTableState["deleting"] = "deleting";
|
|
7
84
|
TransitGatewayPolicyTableState["pending"] = "pending";
|
|
8
85
|
})(TransitGatewayPolicyTableState || (TransitGatewayPolicyTableState = {}));
|
|
86
|
+
export var TransitGatewayPrefixListReferenceState;
|
|
87
|
+
(function (TransitGatewayPrefixListReferenceState) {
|
|
88
|
+
TransitGatewayPrefixListReferenceState["available"] = "available";
|
|
89
|
+
TransitGatewayPrefixListReferenceState["deleting"] = "deleting";
|
|
90
|
+
TransitGatewayPrefixListReferenceState["modifying"] = "modifying";
|
|
91
|
+
TransitGatewayPrefixListReferenceState["pending"] = "pending";
|
|
92
|
+
})(TransitGatewayPrefixListReferenceState || (TransitGatewayPrefixListReferenceState = {}));
|
|
93
|
+
export var TransitGatewayRouteState;
|
|
94
|
+
(function (TransitGatewayRouteState) {
|
|
95
|
+
TransitGatewayRouteState["active"] = "active";
|
|
96
|
+
TransitGatewayRouteState["blackhole"] = "blackhole";
|
|
97
|
+
TransitGatewayRouteState["deleted"] = "deleted";
|
|
98
|
+
TransitGatewayRouteState["deleting"] = "deleting";
|
|
99
|
+
TransitGatewayRouteState["pending"] = "pending";
|
|
100
|
+
})(TransitGatewayRouteState || (TransitGatewayRouteState = {}));
|
|
101
|
+
export var TransitGatewayRouteType;
|
|
102
|
+
(function (TransitGatewayRouteType) {
|
|
103
|
+
TransitGatewayRouteType["propagated"] = "propagated";
|
|
104
|
+
TransitGatewayRouteType["static"] = "static";
|
|
105
|
+
})(TransitGatewayRouteType || (TransitGatewayRouteType = {}));
|
|
106
|
+
export var TransitGatewayRouteTableState;
|
|
107
|
+
(function (TransitGatewayRouteTableState) {
|
|
108
|
+
TransitGatewayRouteTableState["available"] = "available";
|
|
109
|
+
TransitGatewayRouteTableState["deleted"] = "deleted";
|
|
110
|
+
TransitGatewayRouteTableState["deleting"] = "deleting";
|
|
111
|
+
TransitGatewayRouteTableState["pending"] = "pending";
|
|
112
|
+
})(TransitGatewayRouteTableState || (TransitGatewayRouteTableState = {}));
|
|
9
113
|
export var TransitGatewayRouteTableAnnouncementDirection;
|
|
10
114
|
(function (TransitGatewayRouteTableAnnouncementDirection) {
|
|
11
115
|
TransitGatewayRouteTableAnnouncementDirection["incoming"] = "incoming";
|
|
@@ -20,6 +124,15 @@ export var TransitGatewayRouteTableAnnouncementState;
|
|
|
20
124
|
TransitGatewayRouteTableAnnouncementState["failing"] = "failing";
|
|
21
125
|
TransitGatewayRouteTableAnnouncementState["pending"] = "pending";
|
|
22
126
|
})(TransitGatewayRouteTableAnnouncementState || (TransitGatewayRouteTableAnnouncementState = {}));
|
|
127
|
+
export var VolumeState;
|
|
128
|
+
(function (VolumeState) {
|
|
129
|
+
VolumeState["available"] = "available";
|
|
130
|
+
VolumeState["creating"] = "creating";
|
|
131
|
+
VolumeState["deleted"] = "deleted";
|
|
132
|
+
VolumeState["deleting"] = "deleting";
|
|
133
|
+
VolumeState["error"] = "error";
|
|
134
|
+
VolumeState["in_use"] = "in-use";
|
|
135
|
+
})(VolumeState || (VolumeState = {}));
|
|
23
136
|
export var DnsRecordIpType;
|
|
24
137
|
(function (DnsRecordIpType) {
|
|
25
138
|
DnsRecordIpType["dualstack"] = "dualstack";
|
|
@@ -88,6 +201,11 @@ export var ServiceConnectivityType;
|
|
|
88
201
|
ServiceConnectivityType["ipv4"] = "ipv4";
|
|
89
202
|
ServiceConnectivityType["ipv6"] = "ipv6";
|
|
90
203
|
})(ServiceConnectivityType || (ServiceConnectivityType = {}));
|
|
204
|
+
export var TunnelInsideIpVersion;
|
|
205
|
+
(function (TunnelInsideIpVersion) {
|
|
206
|
+
TunnelInsideIpVersion["ipv4"] = "ipv4";
|
|
207
|
+
TunnelInsideIpVersion["ipv6"] = "ipv6";
|
|
208
|
+
})(TunnelInsideIpVersion || (TunnelInsideIpVersion = {}));
|
|
91
209
|
export var GatewayAssociationState;
|
|
92
210
|
(function (GatewayAssociationState) {
|
|
93
211
|
GatewayAssociationState["associated"] = "associated";
|
|
@@ -95,6 +213,22 @@ export var GatewayAssociationState;
|
|
|
95
213
|
GatewayAssociationState["disassociating"] = "disassociating";
|
|
96
214
|
GatewayAssociationState["not_associated"] = "not-associated";
|
|
97
215
|
})(GatewayAssociationState || (GatewayAssociationState = {}));
|
|
216
|
+
export var VpnStaticRouteSource;
|
|
217
|
+
(function (VpnStaticRouteSource) {
|
|
218
|
+
VpnStaticRouteSource["Static"] = "Static";
|
|
219
|
+
})(VpnStaticRouteSource || (VpnStaticRouteSource = {}));
|
|
220
|
+
export var VpnState;
|
|
221
|
+
(function (VpnState) {
|
|
222
|
+
VpnState["available"] = "available";
|
|
223
|
+
VpnState["deleted"] = "deleted";
|
|
224
|
+
VpnState["deleting"] = "deleting";
|
|
225
|
+
VpnState["pending"] = "pending";
|
|
226
|
+
})(VpnState || (VpnState = {}));
|
|
227
|
+
export var TelemetryStatus;
|
|
228
|
+
(function (TelemetryStatus) {
|
|
229
|
+
TelemetryStatus["DOWN"] = "DOWN";
|
|
230
|
+
TelemetryStatus["UP"] = "UP";
|
|
231
|
+
})(TelemetryStatus || (TelemetryStatus = {}));
|
|
98
232
|
export var FleetStateCode;
|
|
99
233
|
(function (FleetStateCode) {
|
|
100
234
|
FleetStateCode["ACTIVE"] = "active";
|
|
@@ -142,6 +276,7 @@ export var IpamPoolCidrState;
|
|
|
142
276
|
IpamPoolCidrState["pending_provision"] = "pending-provision";
|
|
143
277
|
IpamPoolCidrState["provisioned"] = "provisioned";
|
|
144
278
|
})(IpamPoolCidrState || (IpamPoolCidrState = {}));
|
|
279
|
+
export var CreateTrafficMirrorFilterRuleResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
145
280
|
export var CreateTrafficMirrorSessionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
146
281
|
export var TrafficMirrorSessionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
147
282
|
export var CreateTrafficMirrorSessionResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -397,4 +532,3 @@ export var DescribeAddressesRequestFilterSensitiveLog = function (obj) { return
|
|
|
397
532
|
export var DescribeAddressesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
398
533
|
export var DescribeAddressesAttributeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
399
534
|
export var DescribeAddressesAttributeResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
400
|
-
export var DescribeAggregateIdFormatRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|