@aws-sdk/client-ec2 3.223.0 → 3.224.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/dist-types/EC2.d.ts +89 -1
- package/dist-types/commands/AttachVerifiedAccessTrustProviderCommand.d.ts +19 -0
- package/dist-types/commands/CreateVerifiedAccessEndpointCommand.d.ts +17 -0
- package/dist-types/commands/CreateVerifiedAccessGroupCommand.d.ts +20 -0
- package/dist-types/commands/CreateVerifiedAccessInstanceCommand.d.ts +18 -0
- package/dist-types/commands/CreateVerifiedAccessTrustProviderCommand.d.ts +20 -0
- package/dist-types/commands/DeleteVerifiedAccessEndpointCommand.d.ts +17 -0
- package/dist-types/commands/DeleteVerifiedAccessGroupCommand.d.ts +17 -0
- package/dist-types/commands/DeleteVerifiedAccessInstanceCommand.d.ts +17 -0
- package/dist-types/commands/DeleteVerifiedAccessTrustProviderCommand.d.ts +17 -0
- package/dist-types/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeVerifiedAccessEndpointsCommand.d.ts +17 -0
- package/dist-types/commands/DescribeVerifiedAccessGroupsCommand.d.ts +17 -0
- package/dist-types/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.d.ts +17 -0
- package/dist-types/commands/DescribeVerifiedAccessInstancesCommand.d.ts +17 -0
- package/dist-types/commands/DescribeVerifiedAccessTrustProvidersCommand.d.ts +17 -0
- package/dist-types/commands/DetachVerifiedAccessTrustProviderCommand.d.ts +17 -0
- package/dist-types/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.d.ts +21 -0
- package/dist-types/commands/GetVerifiedAccessEndpointPolicyCommand.d.ts +17 -0
- package/dist-types/commands/GetVerifiedAccessGroupPolicyCommand.d.ts +17 -0
- package/dist-types/commands/ModifyVerifiedAccessEndpointCommand.d.ts +17 -0
- package/dist-types/commands/ModifyVerifiedAccessEndpointPolicyCommand.d.ts +17 -0
- package/dist-types/commands/ModifyVerifiedAccessGroupCommand.d.ts +17 -0
- package/dist-types/commands/ModifyVerifiedAccessGroupPolicyCommand.d.ts +17 -0
- package/dist-types/commands/ModifyVerifiedAccessInstanceCommand.d.ts +17 -0
- package/dist-types/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.d.ts +17 -0
- package/dist-types/commands/ModifyVerifiedAccessTrustProviderCommand.d.ts +17 -0
- package/dist-types/models/models_0.d.ts +126 -0
- package/dist-types/models/models_1.d.ts +6 -0
- package/dist-types/models/models_2.d.ts +318 -0
- package/dist-types/models/models_3.d.ts +60 -0
- package/dist-types/models/models_4.d.ts +207 -0
- package/dist-types/models/models_5.d.ts +57 -0
- package/dist-types/models/models_6.d.ts +231 -0
- package/package.json +30 -30
|
@@ -1308,107 +1308,335 @@ export interface ModifyTransitGatewayVpcAttachmentResult {
|
|
|
1308
1308
|
*/
|
|
1309
1309
|
TransitGatewayVpcAttachment?: TransitGatewayVpcAttachment;
|
|
1310
1310
|
}
|
|
1311
|
+
/**
|
|
1312
|
+
* <p>Describes a load balancer when creating an Amazon Web Services Verified Access endpoint using the
|
|
1313
|
+
* <code>load-balancer</code> type.</p>
|
|
1314
|
+
*/
|
|
1311
1315
|
export interface ModifyVerifiedAccessEndpointLoadBalancerOptions {
|
|
1316
|
+
/**
|
|
1317
|
+
* <p>The IDs of the subnets.</p>
|
|
1318
|
+
*/
|
|
1312
1319
|
SubnetIds?: string[];
|
|
1320
|
+
/**
|
|
1321
|
+
* <p>The IP protocol.</p>
|
|
1322
|
+
*/
|
|
1313
1323
|
Protocol?: VerifiedAccessEndpointProtocol | string;
|
|
1324
|
+
/**
|
|
1325
|
+
* <p>The IP port number.</p>
|
|
1326
|
+
*/
|
|
1314
1327
|
Port?: number;
|
|
1315
1328
|
}
|
|
1329
|
+
/**
|
|
1330
|
+
* <p>Options for a network-interface type Verified Access endpoint.</p>
|
|
1331
|
+
*/
|
|
1316
1332
|
export interface ModifyVerifiedAccessEndpointEniOptions {
|
|
1333
|
+
/**
|
|
1334
|
+
* <p>The IP protocol.</p>
|
|
1335
|
+
*/
|
|
1317
1336
|
Protocol?: VerifiedAccessEndpointProtocol | string;
|
|
1337
|
+
/**
|
|
1338
|
+
* <p>The IP port number.</p>
|
|
1339
|
+
*/
|
|
1318
1340
|
Port?: number;
|
|
1319
1341
|
}
|
|
1320
1342
|
export interface ModifyVerifiedAccessEndpointRequest {
|
|
1343
|
+
/**
|
|
1344
|
+
* <p>The ID of the Amazon Web Services Verified Access endpoint.</p>
|
|
1345
|
+
*/
|
|
1321
1346
|
VerifiedAccessEndpointId: string | undefined;
|
|
1347
|
+
/**
|
|
1348
|
+
* <p>The ID of the Amazon Web Services Verified Access group.</p>
|
|
1349
|
+
*/
|
|
1322
1350
|
VerifiedAccessGroupId?: string;
|
|
1351
|
+
/**
|
|
1352
|
+
* <p>The load balancer details if creating the Amazon Web Services Verified Access endpoint as
|
|
1353
|
+
* <code>load-balancer</code>type.</p>
|
|
1354
|
+
*/
|
|
1323
1355
|
LoadBalancerOptions?: ModifyVerifiedAccessEndpointLoadBalancerOptions;
|
|
1356
|
+
/**
|
|
1357
|
+
* <p>The network interface options.</p>
|
|
1358
|
+
*/
|
|
1324
1359
|
NetworkInterfaceOptions?: ModifyVerifiedAccessEndpointEniOptions;
|
|
1360
|
+
/**
|
|
1361
|
+
* <p>A description for the Amazon Web Services Verified Access endpoint.</p>
|
|
1362
|
+
*/
|
|
1325
1363
|
Description?: string;
|
|
1364
|
+
/**
|
|
1365
|
+
* <p>A unique, case-sensitive token that you provide to ensure idempotency of your
|
|
1366
|
+
* modification request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring Idempotency</a>.</p>
|
|
1367
|
+
*/
|
|
1326
1368
|
ClientToken?: string;
|
|
1369
|
+
/**
|
|
1370
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
1371
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
1372
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
1373
|
+
*/
|
|
1327
1374
|
DryRun?: boolean;
|
|
1328
1375
|
}
|
|
1329
1376
|
export interface ModifyVerifiedAccessEndpointResult {
|
|
1377
|
+
/**
|
|
1378
|
+
* <p>The Amazon Web Services Verified Access endpoint details.</p>
|
|
1379
|
+
*/
|
|
1330
1380
|
VerifiedAccessEndpoint?: VerifiedAccessEndpoint;
|
|
1331
1381
|
}
|
|
1332
1382
|
export interface ModifyVerifiedAccessEndpointPolicyRequest {
|
|
1383
|
+
/**
|
|
1384
|
+
* <p>The ID of the Amazon Web Services Verified Access endpoint.</p>
|
|
1385
|
+
*/
|
|
1333
1386
|
VerifiedAccessEndpointId: string | undefined;
|
|
1387
|
+
/**
|
|
1388
|
+
* <p>The status of the Verified Access policy.</p>
|
|
1389
|
+
*/
|
|
1334
1390
|
PolicyEnabled: boolean | undefined;
|
|
1391
|
+
/**
|
|
1392
|
+
* <p>The Amazon Web Services Verified Access policy document.</p>
|
|
1393
|
+
*/
|
|
1335
1394
|
PolicyDocument?: string;
|
|
1395
|
+
/**
|
|
1396
|
+
* <p>A unique, case-sensitive token that you provide to ensure idempotency of your
|
|
1397
|
+
* modification request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring Idempotency</a>.</p>
|
|
1398
|
+
*/
|
|
1336
1399
|
ClientToken?: string;
|
|
1400
|
+
/**
|
|
1401
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
1402
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
1403
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
1404
|
+
*/
|
|
1337
1405
|
DryRun?: boolean;
|
|
1338
1406
|
}
|
|
1339
1407
|
export interface ModifyVerifiedAccessEndpointPolicyResult {
|
|
1408
|
+
/**
|
|
1409
|
+
* <p>The status of the Verified Access policy.</p>
|
|
1410
|
+
*/
|
|
1340
1411
|
PolicyEnabled?: boolean;
|
|
1412
|
+
/**
|
|
1413
|
+
* <p>The Amazon Web Services Verified Access policy document.</p>
|
|
1414
|
+
*/
|
|
1341
1415
|
PolicyDocument?: string;
|
|
1342
1416
|
}
|
|
1343
1417
|
export interface ModifyVerifiedAccessGroupRequest {
|
|
1418
|
+
/**
|
|
1419
|
+
* <p>The ID of the Amazon Web Services Verified Access group.</p>
|
|
1420
|
+
*/
|
|
1344
1421
|
VerifiedAccessGroupId: string | undefined;
|
|
1422
|
+
/**
|
|
1423
|
+
* <p>The ID of the Amazon Web Services Verified Access instance.</p>
|
|
1424
|
+
*/
|
|
1345
1425
|
VerifiedAccessInstanceId?: string;
|
|
1426
|
+
/**
|
|
1427
|
+
* <p>A description for the Amazon Web Services Verified Access group.</p>
|
|
1428
|
+
*/
|
|
1346
1429
|
Description?: string;
|
|
1430
|
+
/**
|
|
1431
|
+
* <p>A unique, case-sensitive token that you provide to ensure idempotency of your
|
|
1432
|
+
* modification request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring Idempotency</a>.</p>
|
|
1433
|
+
*/
|
|
1347
1434
|
ClientToken?: string;
|
|
1435
|
+
/**
|
|
1436
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
1437
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
1438
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
1439
|
+
*/
|
|
1348
1440
|
DryRun?: boolean;
|
|
1349
1441
|
}
|
|
1350
1442
|
export interface ModifyVerifiedAccessGroupResult {
|
|
1443
|
+
/**
|
|
1444
|
+
* <p>Details of Amazon Web Services Verified Access group.</p>
|
|
1445
|
+
*/
|
|
1351
1446
|
VerifiedAccessGroup?: VerifiedAccessGroup;
|
|
1352
1447
|
}
|
|
1353
1448
|
export interface ModifyVerifiedAccessGroupPolicyRequest {
|
|
1449
|
+
/**
|
|
1450
|
+
* <p>The ID of the Amazon Web Services Verified Access group.</p>
|
|
1451
|
+
*/
|
|
1354
1452
|
VerifiedAccessGroupId: string | undefined;
|
|
1453
|
+
/**
|
|
1454
|
+
* <p>The status of the Verified Access policy.</p>
|
|
1455
|
+
*/
|
|
1355
1456
|
PolicyEnabled: boolean | undefined;
|
|
1457
|
+
/**
|
|
1458
|
+
* <p>The Amazon Web Services Verified Access policy document.</p>
|
|
1459
|
+
*/
|
|
1356
1460
|
PolicyDocument?: string;
|
|
1461
|
+
/**
|
|
1462
|
+
* <p>A unique, case-sensitive token that you provide to ensure idempotency of your
|
|
1463
|
+
* modification request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring Idempotency</a>.</p>
|
|
1464
|
+
*/
|
|
1357
1465
|
ClientToken?: string;
|
|
1466
|
+
/**
|
|
1467
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
1468
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
1469
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
1470
|
+
*/
|
|
1358
1471
|
DryRun?: boolean;
|
|
1359
1472
|
}
|
|
1360
1473
|
export interface ModifyVerifiedAccessGroupPolicyResult {
|
|
1474
|
+
/**
|
|
1475
|
+
* <p>The status of the Verified Access policy.</p>
|
|
1476
|
+
*/
|
|
1361
1477
|
PolicyEnabled?: boolean;
|
|
1478
|
+
/**
|
|
1479
|
+
* <p>The Amazon Web Services Verified Access policy document.</p>
|
|
1480
|
+
*/
|
|
1362
1481
|
PolicyDocument?: string;
|
|
1363
1482
|
}
|
|
1364
1483
|
export interface ModifyVerifiedAccessInstanceRequest {
|
|
1484
|
+
/**
|
|
1485
|
+
* <p>The ID of the Amazon Web Services Verified Access instance.</p>
|
|
1486
|
+
*/
|
|
1365
1487
|
VerifiedAccessInstanceId: string | undefined;
|
|
1488
|
+
/**
|
|
1489
|
+
* <p>A description for the Amazon Web Services Verified Access instance.</p>
|
|
1490
|
+
*/
|
|
1366
1491
|
Description?: string;
|
|
1492
|
+
/**
|
|
1493
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
1494
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
1495
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
1496
|
+
*/
|
|
1367
1497
|
DryRun?: boolean;
|
|
1498
|
+
/**
|
|
1499
|
+
* <p>A unique, case-sensitive token that you provide to ensure idempotency of your
|
|
1500
|
+
* modification request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring Idempotency</a>.</p>
|
|
1501
|
+
*/
|
|
1368
1502
|
ClientToken?: string;
|
|
1369
1503
|
}
|
|
1370
1504
|
export interface ModifyVerifiedAccessInstanceResult {
|
|
1505
|
+
/**
|
|
1506
|
+
* <p>The ID of the Amazon Web Services Verified Access instance.</p>
|
|
1507
|
+
*/
|
|
1371
1508
|
VerifiedAccessInstance?: VerifiedAccessInstance;
|
|
1372
1509
|
}
|
|
1510
|
+
/**
|
|
1511
|
+
* <p>Options for CloudWatch Logs as a logging destination.</p>
|
|
1512
|
+
*/
|
|
1373
1513
|
export interface VerifiedAccessLogCloudWatchLogsDestinationOptions {
|
|
1514
|
+
/**
|
|
1515
|
+
* <p>Indicates whether logging is enabled.</p>
|
|
1516
|
+
*/
|
|
1374
1517
|
Enabled: boolean | undefined;
|
|
1518
|
+
/**
|
|
1519
|
+
* <p>The ID of the CloudWatch Logs log group.</p>
|
|
1520
|
+
*/
|
|
1375
1521
|
LogGroup?: string;
|
|
1376
1522
|
}
|
|
1523
|
+
/**
|
|
1524
|
+
* <p>Describes Amazon Kinesis Data Firehose logging options.</p>
|
|
1525
|
+
*/
|
|
1377
1526
|
export interface VerifiedAccessLogKinesisDataFirehoseDestinationOptions {
|
|
1527
|
+
/**
|
|
1528
|
+
* <p>Indicates whether logging is enabled.</p>
|
|
1529
|
+
*/
|
|
1378
1530
|
Enabled: boolean | undefined;
|
|
1531
|
+
/**
|
|
1532
|
+
* <p>The ID of the delivery stream.</p>
|
|
1533
|
+
*/
|
|
1379
1534
|
DeliveryStream?: string;
|
|
1380
1535
|
}
|
|
1536
|
+
/**
|
|
1537
|
+
* <p>Options for Amazon S3 as a logging destination.</p>
|
|
1538
|
+
*/
|
|
1381
1539
|
export interface VerifiedAccessLogS3DestinationOptions {
|
|
1540
|
+
/**
|
|
1541
|
+
* <p>Indicates whether logging is enabled.</p>
|
|
1542
|
+
*/
|
|
1382
1543
|
Enabled: boolean | undefined;
|
|
1544
|
+
/**
|
|
1545
|
+
* <p>The bucket name.</p>
|
|
1546
|
+
*/
|
|
1383
1547
|
BucketName?: string;
|
|
1548
|
+
/**
|
|
1549
|
+
* <p>The bucket prefix.</p>
|
|
1550
|
+
*/
|
|
1384
1551
|
Prefix?: string;
|
|
1552
|
+
/**
|
|
1553
|
+
* <p>The ID of the Amazon Web Services account that owns the Amazon S3 bucket.</p>
|
|
1554
|
+
*/
|
|
1385
1555
|
BucketOwner?: string;
|
|
1386
1556
|
}
|
|
1557
|
+
/**
|
|
1558
|
+
* <p>Describes the destinations for Verified Access logs.</p>
|
|
1559
|
+
*/
|
|
1387
1560
|
export interface VerifiedAccessLogOptions {
|
|
1561
|
+
/**
|
|
1562
|
+
* <p>Sends Verified Access logs to Amazon S3.</p>
|
|
1563
|
+
*/
|
|
1388
1564
|
S3?: VerifiedAccessLogS3DestinationOptions;
|
|
1565
|
+
/**
|
|
1566
|
+
* <p>Sends Verified Access logs to CloudWatch Logs.</p>
|
|
1567
|
+
*/
|
|
1389
1568
|
CloudWatchLogs?: VerifiedAccessLogCloudWatchLogsDestinationOptions;
|
|
1569
|
+
/**
|
|
1570
|
+
* <p>Sends Verified Access logs to Kinesis.</p>
|
|
1571
|
+
*/
|
|
1390
1572
|
KinesisDataFirehose?: VerifiedAccessLogKinesisDataFirehoseDestinationOptions;
|
|
1391
1573
|
}
|
|
1392
1574
|
export interface ModifyVerifiedAccessInstanceLoggingConfigurationRequest {
|
|
1575
|
+
/**
|
|
1576
|
+
* <p>The ID of the Amazon Web Services Verified Access instance.</p>
|
|
1577
|
+
*/
|
|
1393
1578
|
VerifiedAccessInstanceId: string | undefined;
|
|
1579
|
+
/**
|
|
1580
|
+
* <p>The configuration options for Amazon Web Services Verified Access instances.</p>
|
|
1581
|
+
*/
|
|
1394
1582
|
AccessLogs: VerifiedAccessLogOptions | undefined;
|
|
1583
|
+
/**
|
|
1584
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
1585
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
1586
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
1587
|
+
*/
|
|
1395
1588
|
DryRun?: boolean;
|
|
1589
|
+
/**
|
|
1590
|
+
* <p>A unique, case-sensitive token that you provide to ensure idempotency of your
|
|
1591
|
+
* modification request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring Idempotency</a>.</p>
|
|
1592
|
+
*/
|
|
1396
1593
|
ClientToken?: string;
|
|
1397
1594
|
}
|
|
1398
1595
|
export interface ModifyVerifiedAccessInstanceLoggingConfigurationResult {
|
|
1596
|
+
/**
|
|
1597
|
+
* <p>The logging configuration for Amazon Web Services Verified Access instance.</p>
|
|
1598
|
+
*/
|
|
1399
1599
|
LoggingConfiguration?: VerifiedAccessInstanceLoggingConfiguration;
|
|
1400
1600
|
}
|
|
1601
|
+
/**
|
|
1602
|
+
* <p>OpenID Connect options for an <code>oidc</code>-type, user-identity based trust
|
|
1603
|
+
* provider.</p>
|
|
1604
|
+
*/
|
|
1401
1605
|
export interface ModifyVerifiedAccessTrustProviderOidcOptions {
|
|
1606
|
+
/**
|
|
1607
|
+
* <p>OpenID Connect (OIDC) scopes are used by an application during authentication to authorize access to a user's details. Each scope returns a specific set of user attributes.</p>
|
|
1608
|
+
*/
|
|
1402
1609
|
Scope?: string;
|
|
1403
1610
|
}
|
|
1404
1611
|
export interface ModifyVerifiedAccessTrustProviderRequest {
|
|
1612
|
+
/**
|
|
1613
|
+
* <p>The ID of the Amazon Web Services Verified Access trust provider.</p>
|
|
1614
|
+
*/
|
|
1405
1615
|
VerifiedAccessTrustProviderId: string | undefined;
|
|
1616
|
+
/**
|
|
1617
|
+
* <p>The OpenID Connect details for an <code>oidc</code>-type, user-identity based trust provider.</p>
|
|
1618
|
+
*/
|
|
1406
1619
|
OidcOptions?: ModifyVerifiedAccessTrustProviderOidcOptions;
|
|
1620
|
+
/**
|
|
1621
|
+
* <p>A description for the Amazon Web Services Verified Access trust provider.</p>
|
|
1622
|
+
*/
|
|
1407
1623
|
Description?: string;
|
|
1624
|
+
/**
|
|
1625
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
1626
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
1627
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
1628
|
+
*/
|
|
1408
1629
|
DryRun?: boolean;
|
|
1630
|
+
/**
|
|
1631
|
+
* <p>A unique, case-sensitive token that you provide to ensure idempotency of your
|
|
1632
|
+
* modification request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring Idempotency</a>.</p>
|
|
1633
|
+
*/
|
|
1409
1634
|
ClientToken?: string;
|
|
1410
1635
|
}
|
|
1411
1636
|
export interface ModifyVerifiedAccessTrustProviderResult {
|
|
1637
|
+
/**
|
|
1638
|
+
* <p>The ID of the Amazon Web Services Verified Access trust provider.</p>
|
|
1639
|
+
*/
|
|
1412
1640
|
VerifiedAccessTrustProvider?: VerifiedAccessTrustProvider;
|
|
1413
1641
|
}
|
|
1414
1642
|
export interface ModifyVolumeRequest {
|
|
@@ -5111,6 +5339,9 @@ export interface StartNetworkInsightsAnalysisRequest {
|
|
|
5111
5339
|
* <p>The ID of the path.</p>
|
|
5112
5340
|
*/
|
|
5113
5341
|
NetworkInsightsPathId: string | undefined;
|
|
5342
|
+
/**
|
|
5343
|
+
* <p>The member accounts that contain resources that the path can traverse.</p>
|
|
5344
|
+
*/
|
|
5114
5345
|
AdditionalAccounts?: string[];
|
|
5115
5346
|
/**
|
|
5116
5347
|
* <p>The Amazon Resource Names (ARN) of the resources that the path must traverse.</p>
|
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.224.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",
|
|
@@ -19,40 +19,40 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-sdk-ec2": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.224.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.224.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.224.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.224.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.224.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.224.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.224.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.224.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.224.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.224.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.224.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.224.0",
|
|
34
|
+
"@aws-sdk/middleware-sdk-ec2": "3.224.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.224.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.224.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.224.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.224.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.224.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.224.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.224.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.224.0",
|
|
43
|
+
"@aws-sdk/types": "3.224.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.224.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.224.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.224.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.224.0",
|
|
51
|
+
"@aws-sdk/util-user-agent-browser": "3.224.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-node": "3.224.0",
|
|
53
53
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
54
54
|
"@aws-sdk/util-utf8-node": "3.208.0",
|
|
55
|
-
"@aws-sdk/util-waiter": "3.
|
|
55
|
+
"@aws-sdk/util-waiter": "3.224.0",
|
|
56
56
|
"fast-xml-parser": "4.0.11",
|
|
57
57
|
"tslib": "^2.3.1",
|
|
58
58
|
"uuid": "^8.3.2"
|