@aws-sdk/client-ec2 3.174.0 → 3.175.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/CreateDefaultVpcCommand.js +2 -1
- package/dist-cjs/commands/CreateDhcpOptionsCommand.js +1 -2
- package/dist-cjs/commands/CreateTrafficMirrorFilterCommand.js +2 -1
- package/dist-cjs/commands/DescribeAddressesCommand.js +3 -3
- package/dist-cjs/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.js +1 -2
- package/dist-cjs/commands/DescribeLocalGatewaysCommand.js +2 -1
- package/dist-cjs/models/models_0.js +18 -18
- package/dist-cjs/models/models_1.js +17 -17
- package/dist-cjs/models/models_2.js +18 -18
- package/dist-cjs/models/models_3.js +17 -17
- package/dist-cjs/models/models_4.js +13 -13
- package/dist-cjs/protocols/Aws_ec2.js +23 -0
- package/dist-es/commands/CreateDefaultVpcCommand.js +2 -1
- package/dist-es/commands/CreateDhcpOptionsCommand.js +1 -2
- package/dist-es/commands/CreateTrafficMirrorFilterCommand.js +2 -1
- package/dist-es/commands/DescribeAddressesCommand.js +1 -1
- package/dist-es/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.js +1 -2
- package/dist-es/commands/DescribeLocalGatewaysCommand.js +2 -1
- package/dist-es/models/models_0.js +4 -4
- package/dist-es/models/models_1.js +3 -6
- package/dist-es/models/models_2.js +6 -3
- package/dist-es/models/models_3.js +3 -3
- package/dist-es/models/models_4.js +3 -3
- package/dist-es/protocols/Aws_ec2.js +23 -0
- package/dist-types/commands/CreateDefaultVpcCommand.d.ts +2 -1
- package/dist-types/commands/CreateDhcpOptionsCommand.d.ts +1 -2
- package/dist-types/commands/CreateTrafficMirrorFilterCommand.d.ts +2 -1
- package/dist-types/commands/DescribeAddressesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.d.ts +1 -2
- package/dist-types/commands/DescribeLocalGatewaysCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +297 -61
- package/dist-types/models/models_1.d.ts +46 -49
- package/dist-types/models/models_2.d.ts +49 -105
- package/dist-types/models/models_3.d.ts +106 -90
- package/dist-types/models/models_4.d.ts +159 -276
- package/dist-types/models/models_5.d.ts +3 -3
- package/dist-types/models/models_6.d.ts +2 -2
- package/dist-types/ts3.4/commands/CreateDefaultVpcCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateDhcpOptionsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/CreateTrafficMirrorFilterCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeAddressesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeLocalGatewaysCommand.d.ts +2 -4
- package/dist-types/ts3.4/models/models_0.d.ts +81 -29
- package/dist-types/ts3.4/models/models_1.d.ts +22 -21
- package/dist-types/ts3.4/models/models_2.d.ts +21 -21
- package/dist-types/ts3.4/models/models_3.d.ts +22 -30
- package/dist-types/ts3.4/models/models_4.d.ts +28 -76
- package/dist-types/ts3.4/models/models_5.d.ts +3 -3
- package/dist-types/ts3.4/models/models_6.d.ts +1 -1
- package/package.json +1 -1
|
@@ -262,12 +262,15 @@ export interface AdditionalDetail {
|
|
|
262
262
|
AdditionalDetailType?: string;
|
|
263
263
|
Component?: AnalysisComponent;
|
|
264
264
|
}
|
|
265
|
-
export interface
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
265
|
+
export interface AnalysisLoadBalancerListener {
|
|
266
|
+
LoadBalancerPort?: number;
|
|
267
|
+
InstancePort?: number;
|
|
268
|
+
}
|
|
269
|
+
export interface AnalysisLoadBalancerTarget {
|
|
270
|
+
Address?: string;
|
|
271
|
+
AvailabilityZone?: string;
|
|
272
|
+
Instance?: AnalysisComponent;
|
|
273
|
+
Port?: number;
|
|
271
274
|
}
|
|
272
275
|
export interface AnalysisRouteTableRoute {
|
|
273
276
|
DestinationCidr?: string;
|
|
@@ -280,6 +283,7 @@ export interface AnalysisRouteTableRoute {
|
|
|
280
283
|
Origin?: string;
|
|
281
284
|
TransitGatewayId?: string;
|
|
282
285
|
VpcPeeringConnectionId?: string;
|
|
286
|
+
State?: string;
|
|
283
287
|
}
|
|
284
288
|
export interface AnalysisSecurityGroupRule {
|
|
285
289
|
Cidr?: string;
|
|
@@ -298,6 +302,66 @@ export interface TransitGatewayRouteTableRoute {
|
|
|
298
302
|
ResourceId?: string;
|
|
299
303
|
ResourceType?: string;
|
|
300
304
|
}
|
|
305
|
+
export interface Explanation {
|
|
306
|
+
Acl?: AnalysisComponent;
|
|
307
|
+
AclRule?: AnalysisAclRule;
|
|
308
|
+
Address?: string;
|
|
309
|
+
Addresses?: string[];
|
|
310
|
+
AttachedTo?: AnalysisComponent;
|
|
311
|
+
AvailabilityZones?: string[];
|
|
312
|
+
Cidrs?: string[];
|
|
313
|
+
Component?: AnalysisComponent;
|
|
314
|
+
CustomerGateway?: AnalysisComponent;
|
|
315
|
+
Destination?: AnalysisComponent;
|
|
316
|
+
DestinationVpc?: AnalysisComponent;
|
|
317
|
+
Direction?: string;
|
|
318
|
+
ExplanationCode?: string;
|
|
319
|
+
IngressRouteTable?: AnalysisComponent;
|
|
320
|
+
InternetGateway?: AnalysisComponent;
|
|
321
|
+
LoadBalancerArn?: string;
|
|
322
|
+
ClassicLoadBalancerListener?: AnalysisLoadBalancerListener;
|
|
323
|
+
LoadBalancerListenerPort?: number;
|
|
324
|
+
LoadBalancerTarget?: AnalysisLoadBalancerTarget;
|
|
325
|
+
LoadBalancerTargetGroup?: AnalysisComponent;
|
|
326
|
+
LoadBalancerTargetGroups?: AnalysisComponent[];
|
|
327
|
+
LoadBalancerTargetPort?: number;
|
|
328
|
+
ElasticLoadBalancerListener?: AnalysisComponent;
|
|
329
|
+
MissingComponent?: string;
|
|
330
|
+
NatGateway?: AnalysisComponent;
|
|
331
|
+
NetworkInterface?: AnalysisComponent;
|
|
332
|
+
PacketField?: string;
|
|
333
|
+
VpcPeeringConnection?: AnalysisComponent;
|
|
334
|
+
Port?: number;
|
|
335
|
+
PortRanges?: PortRange[];
|
|
336
|
+
PrefixList?: AnalysisComponent;
|
|
337
|
+
Protocols?: string[];
|
|
338
|
+
RouteTableRoute?: AnalysisRouteTableRoute;
|
|
339
|
+
RouteTable?: AnalysisComponent;
|
|
340
|
+
SecurityGroup?: AnalysisComponent;
|
|
341
|
+
SecurityGroupRule?: AnalysisSecurityGroupRule;
|
|
342
|
+
SecurityGroups?: AnalysisComponent[];
|
|
343
|
+
SourceVpc?: AnalysisComponent;
|
|
344
|
+
State?: string;
|
|
345
|
+
Subnet?: AnalysisComponent;
|
|
346
|
+
SubnetRouteTable?: AnalysisComponent;
|
|
347
|
+
Vpc?: AnalysisComponent;
|
|
348
|
+
VpcEndpoint?: AnalysisComponent;
|
|
349
|
+
VpnConnection?: AnalysisComponent;
|
|
350
|
+
VpnGateway?: AnalysisComponent;
|
|
351
|
+
TransitGateway?: AnalysisComponent;
|
|
352
|
+
TransitGatewayRouteTable?: AnalysisComponent;
|
|
353
|
+
TransitGatewayRouteTableRoute?: TransitGatewayRouteTableRoute;
|
|
354
|
+
TransitGatewayAttachment?: AnalysisComponent;
|
|
355
|
+
ComponentAccount?: string;
|
|
356
|
+
ComponentRegion?: string;
|
|
357
|
+
}
|
|
358
|
+
export interface AnalysisPacketHeader {
|
|
359
|
+
DestinationAddresses?: string[];
|
|
360
|
+
DestinationPortRanges?: PortRange[];
|
|
361
|
+
Protocol?: string;
|
|
362
|
+
SourceAddresses?: string[];
|
|
363
|
+
SourcePortRanges?: PortRange[];
|
|
364
|
+
}
|
|
301
365
|
export interface PathComponent {
|
|
302
366
|
SequenceNumber?: number;
|
|
303
367
|
AclRule?: AnalysisAclRule;
|
|
@@ -314,6 +378,8 @@ export interface PathComponent {
|
|
|
314
378
|
AdditionalDetails?: AdditionalDetail[];
|
|
315
379
|
TransitGateway?: AnalysisComponent;
|
|
316
380
|
TransitGatewayRouteTableRoute?: TransitGatewayRouteTableRoute;
|
|
381
|
+
Explanations?: Explanation[];
|
|
382
|
+
ElasticLoadBalancerListener?: AnalysisComponent;
|
|
317
383
|
}
|
|
318
384
|
export interface AccessScopeAnalysisFinding {
|
|
319
385
|
NetworkInsightsAccessScopeAnalysisId?: string;
|
|
@@ -2371,18 +2437,6 @@ export interface Vpc {
|
|
|
2371
2437
|
IsDefault?: boolean;
|
|
2372
2438
|
Tags?: Tag[];
|
|
2373
2439
|
}
|
|
2374
|
-
export interface CreateDefaultVpcResult {
|
|
2375
|
-
Vpc?: Vpc;
|
|
2376
|
-
}
|
|
2377
|
-
export interface NewDhcpConfiguration {
|
|
2378
|
-
Key?: string;
|
|
2379
|
-
Values?: string[];
|
|
2380
|
-
}
|
|
2381
|
-
export interface CreateDhcpOptionsRequest {
|
|
2382
|
-
DhcpConfigurations: NewDhcpConfiguration[] | undefined;
|
|
2383
|
-
TagSpecifications?: TagSpecification[];
|
|
2384
|
-
DryRun?: boolean;
|
|
2385
|
-
}
|
|
2386
2440
|
export declare const AcceleratorCountFilterSensitiveLog: (
|
|
2387
2441
|
obj: AcceleratorCount
|
|
2388
2442
|
) => any;
|
|
@@ -2491,8 +2545,11 @@ export declare const AnalysisComponentFilterSensitiveLog: (
|
|
|
2491
2545
|
export declare const AdditionalDetailFilterSensitiveLog: (
|
|
2492
2546
|
obj: AdditionalDetail
|
|
2493
2547
|
) => any;
|
|
2494
|
-
export declare const
|
|
2495
|
-
obj:
|
|
2548
|
+
export declare const AnalysisLoadBalancerListenerFilterSensitiveLog: (
|
|
2549
|
+
obj: AnalysisLoadBalancerListener
|
|
2550
|
+
) => any;
|
|
2551
|
+
export declare const AnalysisLoadBalancerTargetFilterSensitiveLog: (
|
|
2552
|
+
obj: AnalysisLoadBalancerTarget
|
|
2496
2553
|
) => any;
|
|
2497
2554
|
export declare const AnalysisRouteTableRouteFilterSensitiveLog: (
|
|
2498
2555
|
obj: AnalysisRouteTableRoute
|
|
@@ -2503,6 +2560,10 @@ export declare const AnalysisSecurityGroupRuleFilterSensitiveLog: (
|
|
|
2503
2560
|
export declare const TransitGatewayRouteTableRouteFilterSensitiveLog: (
|
|
2504
2561
|
obj: TransitGatewayRouteTableRoute
|
|
2505
2562
|
) => any;
|
|
2563
|
+
export declare const ExplanationFilterSensitiveLog: (obj: Explanation) => any;
|
|
2564
|
+
export declare const AnalysisPacketHeaderFilterSensitiveLog: (
|
|
2565
|
+
obj: AnalysisPacketHeader
|
|
2566
|
+
) => any;
|
|
2506
2567
|
export declare const PathComponentFilterSensitiveLog: (
|
|
2507
2568
|
obj: PathComponent
|
|
2508
2569
|
) => any;
|
|
@@ -3038,12 +3099,3 @@ export declare const CreateDefaultVpcRequestFilterSensitiveLog: (
|
|
|
3038
3099
|
obj: CreateDefaultVpcRequest
|
|
3039
3100
|
) => any;
|
|
3040
3101
|
export declare const VpcFilterSensitiveLog: (obj: Vpc) => any;
|
|
3041
|
-
export declare const CreateDefaultVpcResultFilterSensitiveLog: (
|
|
3042
|
-
obj: CreateDefaultVpcResult
|
|
3043
|
-
) => any;
|
|
3044
|
-
export declare const NewDhcpConfigurationFilterSensitiveLog: (
|
|
3045
|
-
obj: NewDhcpConfiguration
|
|
3046
|
-
) => any;
|
|
3047
|
-
export declare const CreateDhcpOptionsRequestFilterSensitiveLog: (
|
|
3048
|
-
obj: CreateDhcpOptionsRequest
|
|
3049
|
-
) => any;
|
|
@@ -27,8 +27,21 @@ import {
|
|
|
27
27
|
TagSpecification,
|
|
28
28
|
Tenancy,
|
|
29
29
|
UnsuccessfulItem,
|
|
30
|
+
Vpc,
|
|
30
31
|
WeekDay,
|
|
31
32
|
} from "./models_0";
|
|
33
|
+
export interface CreateDefaultVpcResult {
|
|
34
|
+
Vpc?: Vpc;
|
|
35
|
+
}
|
|
36
|
+
export interface NewDhcpConfiguration {
|
|
37
|
+
Key?: string;
|
|
38
|
+
Values?: string[];
|
|
39
|
+
}
|
|
40
|
+
export interface CreateDhcpOptionsRequest {
|
|
41
|
+
DhcpConfigurations: NewDhcpConfiguration[] | undefined;
|
|
42
|
+
TagSpecifications?: TagSpecification[];
|
|
43
|
+
DryRun?: boolean;
|
|
44
|
+
}
|
|
32
45
|
export interface AttributeValue {
|
|
33
46
|
Value?: string;
|
|
34
47
|
}
|
|
@@ -1921,21 +1934,15 @@ export interface TrafficMirrorFilterRule {
|
|
|
1921
1934
|
SourceCidrBlock?: string;
|
|
1922
1935
|
Description?: string;
|
|
1923
1936
|
}
|
|
1924
|
-
export declare
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
export
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
Tags?: Tag[];
|
|
1934
|
-
}
|
|
1935
|
-
export interface CreateTrafficMirrorFilterResult {
|
|
1936
|
-
TrafficMirrorFilter?: TrafficMirrorFilter;
|
|
1937
|
-
ClientToken?: string;
|
|
1938
|
-
}
|
|
1937
|
+
export declare const CreateDefaultVpcResultFilterSensitiveLog: (
|
|
1938
|
+
obj: CreateDefaultVpcResult
|
|
1939
|
+
) => any;
|
|
1940
|
+
export declare const NewDhcpConfigurationFilterSensitiveLog: (
|
|
1941
|
+
obj: NewDhcpConfiguration
|
|
1942
|
+
) => any;
|
|
1943
|
+
export declare const CreateDhcpOptionsRequestFilterSensitiveLog: (
|
|
1944
|
+
obj: CreateDhcpOptionsRequest
|
|
1945
|
+
) => any;
|
|
1939
1946
|
export declare const AttributeValueFilterSensitiveLog: (
|
|
1940
1947
|
obj: AttributeValue
|
|
1941
1948
|
) => any;
|
|
@@ -2586,9 +2593,3 @@ export declare const TrafficMirrorPortRangeFilterSensitiveLog: (
|
|
|
2586
2593
|
export declare const TrafficMirrorFilterRuleFilterSensitiveLog: (
|
|
2587
2594
|
obj: TrafficMirrorFilterRule
|
|
2588
2595
|
) => any;
|
|
2589
|
-
export declare const TrafficMirrorFilterFilterSensitiveLog: (
|
|
2590
|
-
obj: TrafficMirrorFilter
|
|
2591
|
-
) => any;
|
|
2592
|
-
export declare const CreateTrafficMirrorFilterResultFilterSensitiveLog: (
|
|
2593
|
-
obj: CreateTrafficMirrorFilterResult
|
|
2594
|
-
) => any;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
AccountAttribute,
|
|
3
3
|
AccountAttributeName,
|
|
4
|
-
Address,
|
|
5
4
|
ApplianceModeSupportValue,
|
|
6
5
|
ByoipCidr,
|
|
7
6
|
CarrierGateway,
|
|
@@ -43,6 +42,21 @@ import {
|
|
|
43
42
|
TrafficMirrorRuleAction,
|
|
44
43
|
VolumeType,
|
|
45
44
|
} from "./models_1";
|
|
45
|
+
export declare enum TrafficMirrorNetworkService {
|
|
46
|
+
amazon_dns = "amazon-dns",
|
|
47
|
+
}
|
|
48
|
+
export interface TrafficMirrorFilter {
|
|
49
|
+
TrafficMirrorFilterId?: string;
|
|
50
|
+
IngressFilterRules?: TrafficMirrorFilterRule[];
|
|
51
|
+
EgressFilterRules?: TrafficMirrorFilterRule[];
|
|
52
|
+
NetworkServices?: (TrafficMirrorNetworkService | string)[];
|
|
53
|
+
Description?: string;
|
|
54
|
+
Tags?: Tag[];
|
|
55
|
+
}
|
|
56
|
+
export interface CreateTrafficMirrorFilterResult {
|
|
57
|
+
TrafficMirrorFilter?: TrafficMirrorFilter;
|
|
58
|
+
ClientToken?: string;
|
|
59
|
+
}
|
|
46
60
|
export interface TrafficMirrorPortRangeRequest {
|
|
47
61
|
FromPort?: number;
|
|
48
62
|
ToPort?: number;
|
|
@@ -1552,19 +1566,12 @@ export interface DescribeAccountAttributesRequest {
|
|
|
1552
1566
|
export interface DescribeAccountAttributesResult {
|
|
1553
1567
|
AccountAttributes?: AccountAttribute[];
|
|
1554
1568
|
}
|
|
1555
|
-
export
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
PublicIps?: string[];
|
|
1562
|
-
AllocationIds?: string[];
|
|
1563
|
-
DryRun?: boolean;
|
|
1564
|
-
}
|
|
1565
|
-
export interface DescribeAddressesResult {
|
|
1566
|
-
Addresses?: Address[];
|
|
1567
|
-
}
|
|
1569
|
+
export declare const TrafficMirrorFilterFilterSensitiveLog: (
|
|
1570
|
+
obj: TrafficMirrorFilter
|
|
1571
|
+
) => any;
|
|
1572
|
+
export declare const CreateTrafficMirrorFilterResultFilterSensitiveLog: (
|
|
1573
|
+
obj: CreateTrafficMirrorFilterResult
|
|
1574
|
+
) => any;
|
|
1568
1575
|
export declare const TrafficMirrorPortRangeRequestFilterSensitiveLog: (
|
|
1569
1576
|
obj: TrafficMirrorPortRangeRequest
|
|
1570
1577
|
) => any;
|
|
@@ -2306,10 +2313,3 @@ export declare const DescribeAccountAttributesRequestFilterSensitiveLog: (
|
|
|
2306
2313
|
export declare const DescribeAccountAttributesResultFilterSensitiveLog: (
|
|
2307
2314
|
obj: DescribeAccountAttributesResult
|
|
2308
2315
|
) => any;
|
|
2309
|
-
export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
2310
|
-
export declare const DescribeAddressesRequestFilterSensitiveLog: (
|
|
2311
|
-
obj: DescribeAddressesRequest
|
|
2312
|
-
) => any;
|
|
2313
|
-
export declare const DescribeAddressesResultFilterSensitiveLog: (
|
|
2314
|
-
obj: DescribeAddressesResult
|
|
2315
|
-
) => any;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
_InstanceType,
|
|
3
3
|
ActiveInstance,
|
|
4
|
+
Address,
|
|
4
5
|
AddressAttribute,
|
|
5
6
|
AddressAttributeName,
|
|
6
7
|
AllocationState,
|
|
@@ -73,11 +74,20 @@ import {
|
|
|
73
74
|
TargetCapacityUnitType,
|
|
74
75
|
TrafficType,
|
|
75
76
|
} from "./models_1";
|
|
76
|
-
import {
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
}
|
|
77
|
+
import { FleetStateCode, InstanceTagNotificationAttribute } from "./models_2";
|
|
78
|
+
export interface Filter {
|
|
79
|
+
Name?: string;
|
|
80
|
+
Values?: string[];
|
|
81
|
+
}
|
|
82
|
+
export interface DescribeAddressesRequest {
|
|
83
|
+
Filters?: Filter[];
|
|
84
|
+
PublicIps?: string[];
|
|
85
|
+
AllocationIds?: string[];
|
|
86
|
+
DryRun?: boolean;
|
|
87
|
+
}
|
|
88
|
+
export interface DescribeAddressesResult {
|
|
89
|
+
Addresses?: Address[];
|
|
90
|
+
}
|
|
81
91
|
export interface DescribeAddressesAttributeRequest {
|
|
82
92
|
AllocationIds?: string[];
|
|
83
93
|
Attribute?: AddressAttributeName | string;
|
|
@@ -1939,24 +1949,13 @@ export interface DescribeLocalGatewaysRequest {
|
|
|
1939
1949
|
NextToken?: string;
|
|
1940
1950
|
DryRun?: boolean;
|
|
1941
1951
|
}
|
|
1942
|
-
export
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
export interface DescribeLocalGatewaysResult {
|
|
1950
|
-
LocalGateways?: LocalGateway[];
|
|
1951
|
-
NextToken?: string;
|
|
1952
|
-
}
|
|
1953
|
-
export interface DescribeLocalGatewayVirtualInterfaceGroupsRequest {
|
|
1954
|
-
LocalGatewayVirtualInterfaceGroupIds?: string[];
|
|
1955
|
-
Filters?: Filter[];
|
|
1956
|
-
MaxResults?: number;
|
|
1957
|
-
NextToken?: string;
|
|
1958
|
-
DryRun?: boolean;
|
|
1959
|
-
}
|
|
1952
|
+
export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
1953
|
+
export declare const DescribeAddressesRequestFilterSensitiveLog: (
|
|
1954
|
+
obj: DescribeAddressesRequest
|
|
1955
|
+
) => any;
|
|
1956
|
+
export declare const DescribeAddressesResultFilterSensitiveLog: (
|
|
1957
|
+
obj: DescribeAddressesResult
|
|
1958
|
+
) => any;
|
|
1960
1959
|
export declare const DescribeAddressesAttributeRequestFilterSensitiveLog: (
|
|
1961
1960
|
obj: DescribeAddressesAttributeRequest
|
|
1962
1961
|
) => any;
|
|
@@ -2625,10 +2624,3 @@ export declare const DescribeLocalGatewayRouteTableVpcAssociationsResultFilterSe
|
|
|
2625
2624
|
export declare const DescribeLocalGatewaysRequestFilterSensitiveLog: (
|
|
2626
2625
|
obj: DescribeLocalGatewaysRequest
|
|
2627
2626
|
) => any;
|
|
2628
|
-
export declare const LocalGatewayFilterSensitiveLog: (obj: LocalGateway) => any;
|
|
2629
|
-
export declare const DescribeLocalGatewaysResultFilterSensitiveLog: (
|
|
2630
|
-
obj: DescribeLocalGatewaysResult
|
|
2631
|
-
) => any;
|
|
2632
|
-
export declare const DescribeLocalGatewayVirtualInterfaceGroupsRequestFilterSensitiveLog: (
|
|
2633
|
-
obj: DescribeLocalGatewayVirtualInterfaceGroupsRequest
|
|
2634
|
-
) => any;
|
|
@@ -5,19 +5,15 @@ import {
|
|
|
5
5
|
AllocationStrategy,
|
|
6
6
|
AllowedPrincipal,
|
|
7
7
|
AlternatePathHint,
|
|
8
|
-
AnalysisAclRule,
|
|
9
|
-
AnalysisComponent,
|
|
10
|
-
AnalysisRouteTableRoute,
|
|
11
|
-
AnalysisSecurityGroupRule,
|
|
12
8
|
AssociationStatus,
|
|
13
9
|
BatchState,
|
|
14
10
|
CurrencyCodeValues,
|
|
11
|
+
Explanation,
|
|
15
12
|
IamInstanceProfileAssociation,
|
|
16
13
|
IamInstanceProfileSpecification,
|
|
17
14
|
InstanceEventWindow,
|
|
18
15
|
IpPermission,
|
|
19
16
|
PathComponent,
|
|
20
|
-
PortRange,
|
|
21
17
|
ReservedInstancesListing,
|
|
22
18
|
ResourceType,
|
|
23
19
|
SecurityGroupRule,
|
|
@@ -33,7 +29,6 @@ import {
|
|
|
33
29
|
TransitGatewayMulticastDomainAssociations,
|
|
34
30
|
TransitGatewayPeeringAttachment,
|
|
35
31
|
TransitGatewayPolicyTableAssociation,
|
|
36
|
-
TransitGatewayRouteTableRoute,
|
|
37
32
|
TransitGatewayVpcAttachment,
|
|
38
33
|
TrunkInterfaceAssociation,
|
|
39
34
|
UserIdGroupPair,
|
|
@@ -72,20 +67,19 @@ import {
|
|
|
72
67
|
SpotInstanceType,
|
|
73
68
|
StorageTier,
|
|
74
69
|
TargetCapacityUnitType,
|
|
75
|
-
TrafficMirrorFilter,
|
|
76
70
|
VolumeType,
|
|
77
71
|
} from "./models_1";
|
|
78
72
|
import {
|
|
79
73
|
ConnectionNotification,
|
|
80
74
|
DnsEntry,
|
|
81
75
|
DnsNameState,
|
|
82
|
-
Filter,
|
|
83
76
|
IpAddressType,
|
|
84
77
|
PayerResponsibility,
|
|
85
78
|
ServiceConfiguration,
|
|
86
79
|
ServiceConnectivityType,
|
|
87
80
|
ServiceTypeDetail,
|
|
88
81
|
State,
|
|
82
|
+
TrafficMirrorFilter,
|
|
89
83
|
TrafficMirrorSession,
|
|
90
84
|
TrafficMirrorTarget,
|
|
91
85
|
TransitGateway,
|
|
@@ -108,10 +102,29 @@ import {
|
|
|
108
102
|
FastLaunchSnapshotConfigurationResponse,
|
|
109
103
|
FastLaunchStateCode,
|
|
110
104
|
FastSnapshotRestoreStateCode,
|
|
105
|
+
Filter,
|
|
111
106
|
IdFormat,
|
|
112
107
|
PermissionGroup,
|
|
113
108
|
ProductCode,
|
|
114
109
|
} from "./models_3";
|
|
110
|
+
export interface LocalGateway {
|
|
111
|
+
LocalGatewayId?: string;
|
|
112
|
+
OutpostArn?: string;
|
|
113
|
+
OwnerId?: string;
|
|
114
|
+
State?: string;
|
|
115
|
+
Tags?: Tag[];
|
|
116
|
+
}
|
|
117
|
+
export interface DescribeLocalGatewaysResult {
|
|
118
|
+
LocalGateways?: LocalGateway[];
|
|
119
|
+
NextToken?: string;
|
|
120
|
+
}
|
|
121
|
+
export interface DescribeLocalGatewayVirtualInterfaceGroupsRequest {
|
|
122
|
+
LocalGatewayVirtualInterfaceGroupIds?: string[];
|
|
123
|
+
Filters?: Filter[];
|
|
124
|
+
MaxResults?: number;
|
|
125
|
+
NextToken?: string;
|
|
126
|
+
DryRun?: boolean;
|
|
127
|
+
}
|
|
115
128
|
export interface LocalGatewayVirtualInterfaceGroup {
|
|
116
129
|
LocalGatewayVirtualInterfaceGroupId?: string;
|
|
117
130
|
LocalGatewayVirtualInterfaceIds?: string[];
|
|
@@ -255,67 +268,6 @@ export interface DescribeNetworkInsightsAnalysesRequest {
|
|
|
255
268
|
DryRun?: boolean;
|
|
256
269
|
NextToken?: string;
|
|
257
270
|
}
|
|
258
|
-
export interface AnalysisLoadBalancerListener {
|
|
259
|
-
LoadBalancerPort?: number;
|
|
260
|
-
InstancePort?: number;
|
|
261
|
-
}
|
|
262
|
-
export interface AnalysisLoadBalancerTarget {
|
|
263
|
-
Address?: string;
|
|
264
|
-
AvailabilityZone?: string;
|
|
265
|
-
Instance?: AnalysisComponent;
|
|
266
|
-
Port?: number;
|
|
267
|
-
}
|
|
268
|
-
export interface Explanation {
|
|
269
|
-
Acl?: AnalysisComponent;
|
|
270
|
-
AclRule?: AnalysisAclRule;
|
|
271
|
-
Address?: string;
|
|
272
|
-
Addresses?: string[];
|
|
273
|
-
AttachedTo?: AnalysisComponent;
|
|
274
|
-
AvailabilityZones?: string[];
|
|
275
|
-
Cidrs?: string[];
|
|
276
|
-
Component?: AnalysisComponent;
|
|
277
|
-
CustomerGateway?: AnalysisComponent;
|
|
278
|
-
Destination?: AnalysisComponent;
|
|
279
|
-
DestinationVpc?: AnalysisComponent;
|
|
280
|
-
Direction?: string;
|
|
281
|
-
ExplanationCode?: string;
|
|
282
|
-
IngressRouteTable?: AnalysisComponent;
|
|
283
|
-
InternetGateway?: AnalysisComponent;
|
|
284
|
-
LoadBalancerArn?: string;
|
|
285
|
-
ClassicLoadBalancerListener?: AnalysisLoadBalancerListener;
|
|
286
|
-
LoadBalancerListenerPort?: number;
|
|
287
|
-
LoadBalancerTarget?: AnalysisLoadBalancerTarget;
|
|
288
|
-
LoadBalancerTargetGroup?: AnalysisComponent;
|
|
289
|
-
LoadBalancerTargetGroups?: AnalysisComponent[];
|
|
290
|
-
LoadBalancerTargetPort?: number;
|
|
291
|
-
ElasticLoadBalancerListener?: AnalysisComponent;
|
|
292
|
-
MissingComponent?: string;
|
|
293
|
-
NatGateway?: AnalysisComponent;
|
|
294
|
-
NetworkInterface?: AnalysisComponent;
|
|
295
|
-
PacketField?: string;
|
|
296
|
-
VpcPeeringConnection?: AnalysisComponent;
|
|
297
|
-
Port?: number;
|
|
298
|
-
PortRanges?: PortRange[];
|
|
299
|
-
PrefixList?: AnalysisComponent;
|
|
300
|
-
Protocols?: string[];
|
|
301
|
-
RouteTableRoute?: AnalysisRouteTableRoute;
|
|
302
|
-
RouteTable?: AnalysisComponent;
|
|
303
|
-
SecurityGroup?: AnalysisComponent;
|
|
304
|
-
SecurityGroupRule?: AnalysisSecurityGroupRule;
|
|
305
|
-
SecurityGroups?: AnalysisComponent[];
|
|
306
|
-
SourceVpc?: AnalysisComponent;
|
|
307
|
-
State?: string;
|
|
308
|
-
Subnet?: AnalysisComponent;
|
|
309
|
-
SubnetRouteTable?: AnalysisComponent;
|
|
310
|
-
Vpc?: AnalysisComponent;
|
|
311
|
-
VpcEndpoint?: AnalysisComponent;
|
|
312
|
-
VpnConnection?: AnalysisComponent;
|
|
313
|
-
VpnGateway?: AnalysisComponent;
|
|
314
|
-
TransitGateway?: AnalysisComponent;
|
|
315
|
-
TransitGatewayRouteTable?: AnalysisComponent;
|
|
316
|
-
TransitGatewayRouteTableRoute?: TransitGatewayRouteTableRoute;
|
|
317
|
-
TransitGatewayAttachment?: AnalysisComponent;
|
|
318
|
-
}
|
|
319
271
|
export interface NetworkInsightsAnalysis {
|
|
320
272
|
NetworkInsightsAnalysisId?: string;
|
|
321
273
|
NetworkInsightsAnalysisArn?: string;
|
|
@@ -1931,6 +1883,13 @@ export interface EnableFastSnapshotRestoreSuccessItem {
|
|
|
1931
1883
|
DisablingTime?: Date;
|
|
1932
1884
|
DisabledTime?: Date;
|
|
1933
1885
|
}
|
|
1886
|
+
export declare const LocalGatewayFilterSensitiveLog: (obj: LocalGateway) => any;
|
|
1887
|
+
export declare const DescribeLocalGatewaysResultFilterSensitiveLog: (
|
|
1888
|
+
obj: DescribeLocalGatewaysResult
|
|
1889
|
+
) => any;
|
|
1890
|
+
export declare const DescribeLocalGatewayVirtualInterfaceGroupsRequestFilterSensitiveLog: (
|
|
1891
|
+
obj: DescribeLocalGatewayVirtualInterfaceGroupsRequest
|
|
1892
|
+
) => any;
|
|
1934
1893
|
export declare const LocalGatewayVirtualInterfaceGroupFilterSensitiveLog: (
|
|
1935
1894
|
obj: LocalGatewayVirtualInterfaceGroup
|
|
1936
1895
|
) => any;
|
|
@@ -1991,13 +1950,6 @@ export declare const DescribeNetworkInsightsAccessScopesResultFilterSensitiveLog
|
|
|
1991
1950
|
export declare const DescribeNetworkInsightsAnalysesRequestFilterSensitiveLog: (
|
|
1992
1951
|
obj: DescribeNetworkInsightsAnalysesRequest
|
|
1993
1952
|
) => any;
|
|
1994
|
-
export declare const AnalysisLoadBalancerListenerFilterSensitiveLog: (
|
|
1995
|
-
obj: AnalysisLoadBalancerListener
|
|
1996
|
-
) => any;
|
|
1997
|
-
export declare const AnalysisLoadBalancerTargetFilterSensitiveLog: (
|
|
1998
|
-
obj: AnalysisLoadBalancerTarget
|
|
1999
|
-
) => any;
|
|
2000
|
-
export declare const ExplanationFilterSensitiveLog: (obj: Explanation) => any;
|
|
2001
1953
|
export declare const NetworkInsightsAnalysisFilterSensitiveLog: (
|
|
2002
1954
|
obj: NetworkInsightsAnalysis
|
|
2003
1955
|
) => any;
|
|
@@ -57,9 +57,7 @@ import {
|
|
|
57
57
|
TargetCapacitySpecificationRequest,
|
|
58
58
|
TargetCapacityUnitType,
|
|
59
59
|
TrafficDirection,
|
|
60
|
-
TrafficMirrorFilter,
|
|
61
60
|
TrafficMirrorFilterRule,
|
|
62
|
-
TrafficMirrorNetworkService,
|
|
63
61
|
TrafficMirrorRuleAction,
|
|
64
62
|
VolumeType,
|
|
65
63
|
} from "./models_1";
|
|
@@ -68,7 +66,6 @@ import {
|
|
|
68
66
|
DefaultRouteTableAssociationValue,
|
|
69
67
|
DefaultRouteTablePropagationValue,
|
|
70
68
|
DnsOptionsSpecification,
|
|
71
|
-
Filter,
|
|
72
69
|
IKEVersionsRequestListValue,
|
|
73
70
|
IpAddressType,
|
|
74
71
|
IpamPoolCidr,
|
|
@@ -79,6 +76,8 @@ import {
|
|
|
79
76
|
Phase2DHGroupNumbersRequestListValue,
|
|
80
77
|
Phase2EncryptionAlgorithmsRequestListValue,
|
|
81
78
|
Phase2IntegrityAlgorithmsRequestListValue,
|
|
79
|
+
TrafficMirrorFilter,
|
|
80
|
+
TrafficMirrorNetworkService,
|
|
82
81
|
TrafficMirrorPortRangeRequest,
|
|
83
82
|
TrafficMirrorSession,
|
|
84
83
|
TransitGateway,
|
|
@@ -94,6 +93,7 @@ import {
|
|
|
94
93
|
BootModeValues,
|
|
95
94
|
ConversionTask,
|
|
96
95
|
ExportTaskS3Location,
|
|
96
|
+
Filter,
|
|
97
97
|
FpgaImageAttribute,
|
|
98
98
|
FpgaImageAttributeName,
|
|
99
99
|
HttpTokensState,
|
|
@@ -35,7 +35,6 @@ import {
|
|
|
35
35
|
SpotInstanceType,
|
|
36
36
|
} from "./models_1";
|
|
37
37
|
import {
|
|
38
|
-
Filter,
|
|
39
38
|
InstanceTagNotificationAttribute,
|
|
40
39
|
IpamPoolCidr,
|
|
41
40
|
TransitGatewayRoute,
|
|
@@ -44,6 +43,7 @@ import {
|
|
|
44
43
|
ArchitectureValues,
|
|
45
44
|
BootModeValues,
|
|
46
45
|
ClientVpnConnectionStatus,
|
|
46
|
+
Filter,
|
|
47
47
|
HttpTokensState,
|
|
48
48
|
InstanceAttributeName,
|
|
49
49
|
InstanceAutoRecoveryState,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ec2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.175.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|