@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
|
@@ -40,8 +40,13 @@ import {
|
|
|
40
40
|
LocalGatewayRouteTableVpcAssociation,
|
|
41
41
|
ManagedPrefixList,
|
|
42
42
|
SubnetCidrReservation,
|
|
43
|
+
TrafficMirrorFilterRule,
|
|
43
44
|
VolumeType,
|
|
44
45
|
} from "./models_1";
|
|
46
|
+
export interface CreateTrafficMirrorFilterRuleResult {
|
|
47
|
+
TrafficMirrorFilterRule?: TrafficMirrorFilterRule;
|
|
48
|
+
ClientToken?: string;
|
|
49
|
+
}
|
|
45
50
|
export interface CreateTrafficMirrorSessionRequest {
|
|
46
51
|
NetworkInterfaceId: string | undefined;
|
|
47
52
|
TrafficMirrorTargetId: string | undefined;
|
|
@@ -79,10 +84,11 @@ export interface CreateTrafficMirrorTargetRequest {
|
|
|
79
84
|
ClientToken?: string;
|
|
80
85
|
GatewayLoadBalancerEndpointId?: string;
|
|
81
86
|
}
|
|
82
|
-
export declare
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
87
|
+
export declare enum TrafficMirrorTargetType {
|
|
88
|
+
gateway_load_balancer_endpoint = "gateway-load-balancer-endpoint",
|
|
89
|
+
network_interface = "network-interface",
|
|
90
|
+
network_load_balancer = "network-load-balancer",
|
|
91
|
+
}
|
|
86
92
|
export interface TrafficMirrorTarget {
|
|
87
93
|
TrafficMirrorTargetId?: string;
|
|
88
94
|
NetworkInterfaceId?: string;
|
|
@@ -97,11 +103,26 @@ export interface CreateTrafficMirrorTargetResult {
|
|
|
97
103
|
TrafficMirrorTarget?: TrafficMirrorTarget;
|
|
98
104
|
ClientToken?: string;
|
|
99
105
|
}
|
|
100
|
-
export declare
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
export declare
|
|
106
|
+
export declare enum AutoAcceptSharedAttachmentsValue {
|
|
107
|
+
disable = "disable",
|
|
108
|
+
enable = "enable",
|
|
109
|
+
}
|
|
110
|
+
export declare enum DefaultRouteTableAssociationValue {
|
|
111
|
+
disable = "disable",
|
|
112
|
+
enable = "enable",
|
|
113
|
+
}
|
|
114
|
+
export declare enum DefaultRouteTablePropagationValue {
|
|
115
|
+
disable = "disable",
|
|
116
|
+
enable = "enable",
|
|
117
|
+
}
|
|
118
|
+
export declare enum MulticastSupportValue {
|
|
119
|
+
disable = "disable",
|
|
120
|
+
enable = "enable",
|
|
121
|
+
}
|
|
122
|
+
export declare enum VpnEcmpSupportValue {
|
|
123
|
+
disable = "disable",
|
|
124
|
+
enable = "enable",
|
|
125
|
+
}
|
|
105
126
|
export interface TransitGatewayRequestOptions {
|
|
106
127
|
AmazonSideAsn?: number;
|
|
107
128
|
AutoAcceptSharedAttachments?: AutoAcceptSharedAttachmentsValue | string;
|
|
@@ -130,12 +151,13 @@ export interface TransitGatewayOptions {
|
|
|
130
151
|
DnsSupport?: DnsSupportValue | string;
|
|
131
152
|
MulticastSupport?: MulticastSupportValue | string;
|
|
132
153
|
}
|
|
133
|
-
export declare
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
154
|
+
export declare enum TransitGatewayState {
|
|
155
|
+
available = "available",
|
|
156
|
+
deleted = "deleted",
|
|
157
|
+
deleting = "deleting",
|
|
158
|
+
modifying = "modifying",
|
|
159
|
+
pending = "pending",
|
|
160
|
+
}
|
|
139
161
|
export interface TransitGateway {
|
|
140
162
|
TransitGatewayId?: string;
|
|
141
163
|
TransitGatewayArn?: string;
|
|
@@ -149,7 +171,9 @@ export interface TransitGateway {
|
|
|
149
171
|
export interface CreateTransitGatewayResult {
|
|
150
172
|
TransitGateway?: TransitGateway;
|
|
151
173
|
}
|
|
152
|
-
export declare
|
|
174
|
+
export declare enum ProtocolValue {
|
|
175
|
+
gre = "gre",
|
|
176
|
+
}
|
|
153
177
|
export interface CreateTransitGatewayConnectRequestOptions {
|
|
154
178
|
Protocol: ProtocolValue | string | undefined;
|
|
155
179
|
}
|
|
@@ -186,7 +210,10 @@ export interface CreateTransitGatewayConnectPeerRequest {
|
|
|
186
210
|
TagSpecifications?: TagSpecification[];
|
|
187
211
|
DryRun?: boolean;
|
|
188
212
|
}
|
|
189
|
-
export declare
|
|
213
|
+
export declare enum BgpStatus {
|
|
214
|
+
down = "down",
|
|
215
|
+
up = "up",
|
|
216
|
+
}
|
|
190
217
|
export interface TransitGatewayAttachmentBgpConfiguration {
|
|
191
218
|
TransitGatewayAsn?: number;
|
|
192
219
|
PeerAsn?: number;
|
|
@@ -201,11 +228,12 @@ export interface TransitGatewayConnectPeerConfiguration {
|
|
|
201
228
|
Protocol?: ProtocolValue | string;
|
|
202
229
|
BgpConfigurations?: TransitGatewayAttachmentBgpConfiguration[];
|
|
203
230
|
}
|
|
204
|
-
export declare
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
231
|
+
export declare enum TransitGatewayConnectPeerState {
|
|
232
|
+
available = "available",
|
|
233
|
+
deleted = "deleted",
|
|
234
|
+
deleting = "deleting",
|
|
235
|
+
pending = "pending",
|
|
236
|
+
}
|
|
209
237
|
export interface TransitGatewayConnectPeer {
|
|
210
238
|
TransitGatewayAttachmentId?: string;
|
|
211
239
|
TransitGatewayConnectPeerId?: string;
|
|
@@ -217,9 +245,18 @@ export interface TransitGatewayConnectPeer {
|
|
|
217
245
|
export interface CreateTransitGatewayConnectPeerResult {
|
|
218
246
|
TransitGatewayConnectPeer?: TransitGatewayConnectPeer;
|
|
219
247
|
}
|
|
220
|
-
export declare
|
|
221
|
-
|
|
222
|
-
|
|
248
|
+
export declare enum AutoAcceptSharedAssociationsValue {
|
|
249
|
+
disable = "disable",
|
|
250
|
+
enable = "enable",
|
|
251
|
+
}
|
|
252
|
+
export declare enum Igmpv2SupportValue {
|
|
253
|
+
disable = "disable",
|
|
254
|
+
enable = "enable",
|
|
255
|
+
}
|
|
256
|
+
export declare enum StaticSourcesSupportValue {
|
|
257
|
+
disable = "disable",
|
|
258
|
+
enable = "enable",
|
|
259
|
+
}
|
|
223
260
|
export interface CreateTransitGatewayMulticastDomainRequestOptions {
|
|
224
261
|
Igmpv2Support?: Igmpv2SupportValue | string;
|
|
225
262
|
StaticSourcesSupport?: StaticSourcesSupportValue | string;
|
|
@@ -236,11 +273,12 @@ export interface TransitGatewayMulticastDomainOptions {
|
|
|
236
273
|
StaticSourcesSupport?: StaticSourcesSupportValue | string;
|
|
237
274
|
AutoAcceptSharedAssociations?: AutoAcceptSharedAssociationsValue | string;
|
|
238
275
|
}
|
|
239
|
-
export declare
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
276
|
+
export declare enum TransitGatewayMulticastDomainState {
|
|
277
|
+
available = "available",
|
|
278
|
+
deleted = "deleted",
|
|
279
|
+
deleting = "deleting",
|
|
280
|
+
pending = "pending",
|
|
281
|
+
}
|
|
244
282
|
export interface TransitGatewayMulticastDomain {
|
|
245
283
|
TransitGatewayMulticastDomainId?: string;
|
|
246
284
|
TransitGatewayId?: string;
|
|
@@ -297,11 +335,12 @@ export interface CreateTransitGatewayPrefixListReferenceRequest {
|
|
|
297
335
|
Blackhole?: boolean;
|
|
298
336
|
DryRun?: boolean;
|
|
299
337
|
}
|
|
300
|
-
export declare
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
338
|
+
export declare enum TransitGatewayPrefixListReferenceState {
|
|
339
|
+
available = "available",
|
|
340
|
+
deleting = "deleting",
|
|
341
|
+
modifying = "modifying",
|
|
342
|
+
pending = "pending",
|
|
343
|
+
}
|
|
305
344
|
export interface TransitGatewayPrefixListAttachment {
|
|
306
345
|
TransitGatewayAttachmentId?: string;
|
|
307
346
|
ResourceType?: TransitGatewayAttachmentResourceType | string;
|
|
@@ -325,18 +364,22 @@ export interface CreateTransitGatewayRouteRequest {
|
|
|
325
364
|
Blackhole?: boolean;
|
|
326
365
|
DryRun?: boolean;
|
|
327
366
|
}
|
|
328
|
-
export declare
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
367
|
+
export declare enum TransitGatewayRouteState {
|
|
368
|
+
active = "active",
|
|
369
|
+
blackhole = "blackhole",
|
|
370
|
+
deleted = "deleted",
|
|
371
|
+
deleting = "deleting",
|
|
372
|
+
pending = "pending",
|
|
373
|
+
}
|
|
334
374
|
export interface TransitGatewayRouteAttachment {
|
|
335
375
|
ResourceId?: string;
|
|
336
376
|
TransitGatewayAttachmentId?: string;
|
|
337
377
|
ResourceType?: TransitGatewayAttachmentResourceType | string;
|
|
338
378
|
}
|
|
339
|
-
export declare
|
|
379
|
+
export declare enum TransitGatewayRouteType {
|
|
380
|
+
propagated = "propagated",
|
|
381
|
+
static = "static",
|
|
382
|
+
}
|
|
340
383
|
export interface TransitGatewayRoute {
|
|
341
384
|
DestinationCidrBlock?: string;
|
|
342
385
|
PrefixListId?: string;
|
|
@@ -353,11 +396,12 @@ export interface CreateTransitGatewayRouteTableRequest {
|
|
|
353
396
|
TagSpecifications?: TagSpecification[];
|
|
354
397
|
DryRun?: boolean;
|
|
355
398
|
}
|
|
356
|
-
export declare
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
399
|
+
export declare enum TransitGatewayRouteTableState {
|
|
400
|
+
available = "available",
|
|
401
|
+
deleted = "deleted",
|
|
402
|
+
deleting = "deleting",
|
|
403
|
+
pending = "pending",
|
|
404
|
+
}
|
|
361
405
|
export interface TransitGatewayRouteTable {
|
|
362
406
|
TransitGatewayRouteTableId?: string;
|
|
363
407
|
TransitGatewayId?: string;
|
|
@@ -437,13 +481,14 @@ export interface CreateVolumeRequest {
|
|
|
437
481
|
Throughput?: number;
|
|
438
482
|
ClientToken?: string;
|
|
439
483
|
}
|
|
440
|
-
export declare
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
484
|
+
export declare enum VolumeState {
|
|
485
|
+
available = "available",
|
|
486
|
+
creating = "creating",
|
|
487
|
+
deleted = "deleted",
|
|
488
|
+
deleting = "deleting",
|
|
489
|
+
error = "error",
|
|
490
|
+
in_use = "in-use",
|
|
491
|
+
}
|
|
447
492
|
export interface Volume {
|
|
448
493
|
Attachments?: VolumeAttachment[];
|
|
449
494
|
AvailabilityZone?: string;
|
|
@@ -666,7 +711,10 @@ export interface CreateVpcPeeringConnectionRequest {
|
|
|
666
711
|
export interface CreateVpcPeeringConnectionResult {
|
|
667
712
|
VpcPeeringConnection?: VpcPeeringConnection;
|
|
668
713
|
}
|
|
669
|
-
export declare
|
|
714
|
+
export declare enum TunnelInsideIpVersion {
|
|
715
|
+
ipv4 = "ipv4",
|
|
716
|
+
ipv6 = "ipv6",
|
|
717
|
+
}
|
|
670
718
|
export interface IKEVersionsRequestListValue {
|
|
671
719
|
Value?: string;
|
|
672
720
|
}
|
|
@@ -807,14 +855,24 @@ export interface VpnConnectionOptions {
|
|
|
807
855
|
TunnelInsideIpVersion?: TunnelInsideIpVersion | string;
|
|
808
856
|
TunnelOptions?: TunnelOption[];
|
|
809
857
|
}
|
|
810
|
-
export declare
|
|
811
|
-
|
|
858
|
+
export declare enum VpnStaticRouteSource {
|
|
859
|
+
Static = "Static",
|
|
860
|
+
}
|
|
861
|
+
export declare enum VpnState {
|
|
862
|
+
available = "available",
|
|
863
|
+
deleted = "deleted",
|
|
864
|
+
deleting = "deleting",
|
|
865
|
+
pending = "pending",
|
|
866
|
+
}
|
|
812
867
|
export interface VpnStaticRoute {
|
|
813
868
|
DestinationCidrBlock?: string;
|
|
814
869
|
Source?: VpnStaticRouteSource | string;
|
|
815
870
|
State?: VpnState | string;
|
|
816
871
|
}
|
|
817
|
-
export declare
|
|
872
|
+
export declare enum TelemetryStatus {
|
|
873
|
+
DOWN = "DOWN",
|
|
874
|
+
UP = "UP",
|
|
875
|
+
}
|
|
818
876
|
export interface VgwTelemetry {
|
|
819
877
|
AcceptedRouteCount?: number;
|
|
820
878
|
LastStatusChange?: Date;
|
|
@@ -1500,9 +1558,9 @@ export interface DescribeAddressesAttributeResult {
|
|
|
1500
1558
|
Addresses?: AddressAttribute[];
|
|
1501
1559
|
NextToken?: string;
|
|
1502
1560
|
}
|
|
1503
|
-
export
|
|
1504
|
-
|
|
1505
|
-
|
|
1561
|
+
export declare const CreateTrafficMirrorFilterRuleResultFilterSensitiveLog: (
|
|
1562
|
+
obj: CreateTrafficMirrorFilterRuleResult
|
|
1563
|
+
) => any;
|
|
1506
1564
|
export declare const CreateTrafficMirrorSessionRequestFilterSensitiveLog: (
|
|
1507
1565
|
obj: CreateTrafficMirrorSessionRequest
|
|
1508
1566
|
) => any;
|
|
@@ -2248,6 +2306,3 @@ export declare const DescribeAddressesAttributeRequestFilterSensitiveLog: (
|
|
|
2248
2306
|
export declare const DescribeAddressesAttributeResultFilterSensitiveLog: (
|
|
2249
2307
|
obj: DescribeAddressesAttributeResult
|
|
2250
2308
|
) => any;
|
|
2251
|
-
export declare const DescribeAggregateIdFormatRequestFilterSensitiveLog: (
|
|
2252
|
-
obj: DescribeAggregateIdFormatRequest
|
|
2253
|
-
) => any;
|