@aws-sdk/client-guardduty 3.451.0 → 3.458.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/README.md +71 -70
- package/dist-cjs/models/models_0.js +18 -0
- package/dist-cjs/protocols/Aws_restJson1.js +35 -0
- package/dist-es/models/models_0.js +18 -0
- package/dist-es/protocols/Aws_restJson1.js +35 -0
- package/dist-types/GuardDuty.d.ts +3 -2
- package/dist-types/GuardDutyClient.d.ts +3 -2
- package/dist-types/commands/CreateDetectorCommand.d.ts +2 -2
- package/dist-types/commands/DescribeOrganizationConfigurationCommand.d.ts +2 -2
- package/dist-types/commands/GetCoverageStatisticsCommand.d.ts +1 -1
- package/dist-types/commands/GetDetectorCommand.d.ts +2 -2
- package/dist-types/commands/GetMemberDetectorsCommand.d.ts +2 -2
- package/dist-types/commands/GetRemainingFreeTrialDaysCommand.d.ts +1 -1
- package/dist-types/commands/GetUsageStatisticsCommand.d.ts +2 -2
- package/dist-types/commands/ListCoverageCommand.d.ts +26 -4
- package/dist-types/commands/ListIPSetsCommand.d.ts +1 -1
- package/dist-types/commands/ListInvitationsCommand.d.ts +2 -1
- package/dist-types/commands/ListMembersCommand.d.ts +1 -2
- package/dist-types/commands/UpdateDetectorCommand.d.ts +2 -2
- package/dist-types/commands/UpdateMemberDetectorsCommand.d.ts +2 -2
- package/dist-types/commands/UpdateOrganizationConfigurationCommand.d.ts +2 -2
- package/dist-types/index.d.ts +3 -2
- package/dist-types/models/models_0.d.ts +172 -117
- package/dist-types/models/models_1.d.ts +117 -0
- package/dist-types/ts3.4/commands/ListIPSetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListInvitationsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/models_0.d.ts +43 -25
- package/dist-types/ts3.4/models/models_1.d.ts +25 -0
- package/package.json +3 -3
|
@@ -261,8 +261,10 @@ export declare const FreeTrialFeatureResult: {
|
|
|
261
261
|
readonly CLOUD_TRAIL: "CLOUD_TRAIL";
|
|
262
262
|
readonly DNS_LOGS: "DNS_LOGS";
|
|
263
263
|
readonly EBS_MALWARE_PROTECTION: "EBS_MALWARE_PROTECTION";
|
|
264
|
+
readonly EC2_RUNTIME_MONITORING: "EC2_RUNTIME_MONITORING";
|
|
264
265
|
readonly EKS_AUDIT_LOGS: "EKS_AUDIT_LOGS";
|
|
265
266
|
readonly EKS_RUNTIME_MONITORING: "EKS_RUNTIME_MONITORING";
|
|
267
|
+
readonly FARGATE_RUNTIME_MONITORING: "FARGATE_RUNTIME_MONITORING";
|
|
266
268
|
readonly FLOW_LOGS: "FLOW_LOGS";
|
|
267
269
|
readonly LAMBDA_NETWORK_LOGS: "LAMBDA_NETWORK_LOGS";
|
|
268
270
|
readonly RDS_LOGIN_EVENTS: "RDS_LOGIN_EVENTS";
|
|
@@ -999,6 +1001,17 @@ export interface Administrator {
|
|
|
999
1001
|
*/
|
|
1000
1002
|
InvitedAt?: string;
|
|
1001
1003
|
}
|
|
1004
|
+
/**
|
|
1005
|
+
* @public
|
|
1006
|
+
* <p>Information about the installed GuardDuty security agent.</p>
|
|
1007
|
+
*/
|
|
1008
|
+
export interface AgentDetails {
|
|
1009
|
+
/**
|
|
1010
|
+
* @public
|
|
1011
|
+
* <p>Version of the installed GuardDuty security agent.</p>
|
|
1012
|
+
*/
|
|
1013
|
+
Version?: string;
|
|
1014
|
+
}
|
|
1002
1015
|
/**
|
|
1003
1016
|
* @public
|
|
1004
1017
|
* <p>Contains information about the observed behavior.</p>
|
|
@@ -1370,6 +1383,24 @@ export interface Container {
|
|
|
1370
1383
|
*/
|
|
1371
1384
|
SecurityContext?: SecurityContext;
|
|
1372
1385
|
}
|
|
1386
|
+
/**
|
|
1387
|
+
* @public
|
|
1388
|
+
* <p>Contains information about the Amazon EC2 instance that is running
|
|
1389
|
+
* the Amazon ECS container.</p>
|
|
1390
|
+
*/
|
|
1391
|
+
export interface ContainerInstanceDetails {
|
|
1392
|
+
/**
|
|
1393
|
+
* @public
|
|
1394
|
+
* <p>Represents the nodes in the Amazon ECS cluster that has a <code>HEALTHY</code>
|
|
1395
|
+
* coverage status.</p>
|
|
1396
|
+
*/
|
|
1397
|
+
CoveredContainerInstances?: number;
|
|
1398
|
+
/**
|
|
1399
|
+
* @public
|
|
1400
|
+
* <p>Represents total number of nodes in the Amazon ECS cluster.</p>
|
|
1401
|
+
*/
|
|
1402
|
+
CompatibleContainerInstances?: number;
|
|
1403
|
+
}
|
|
1373
1404
|
/**
|
|
1374
1405
|
* @public
|
|
1375
1406
|
* @enum
|
|
@@ -1387,6 +1418,8 @@ export type CoverageStatus = (typeof CoverageStatus)[keyof typeof CoverageStatus
|
|
|
1387
1418
|
* @enum
|
|
1388
1419
|
*/
|
|
1389
1420
|
export declare const ResourceType: {
|
|
1421
|
+
readonly EC2: "EC2";
|
|
1422
|
+
readonly ECS: "ECS";
|
|
1390
1423
|
readonly EKS: "EKS";
|
|
1391
1424
|
};
|
|
1392
1425
|
/**
|
|
@@ -1399,12 +1432,121 @@ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
|
1399
1432
|
*/
|
|
1400
1433
|
export declare const ManagementType: {
|
|
1401
1434
|
readonly AUTO_MANAGED: "AUTO_MANAGED";
|
|
1435
|
+
readonly DISABLED: "DISABLED";
|
|
1402
1436
|
readonly MANUAL: "MANUAL";
|
|
1403
1437
|
};
|
|
1404
1438
|
/**
|
|
1405
1439
|
* @public
|
|
1406
1440
|
*/
|
|
1407
1441
|
export type ManagementType = (typeof ManagementType)[keyof typeof ManagementType];
|
|
1442
|
+
/**
|
|
1443
|
+
* @public
|
|
1444
|
+
* <note>
|
|
1445
|
+
* <p>This API is also used when you use GuardDuty Runtime Monitoring
|
|
1446
|
+
* for your Amazon EC2 instances (currently in preview
|
|
1447
|
+
* release) and is subject to change.</p>
|
|
1448
|
+
* </note>
|
|
1449
|
+
* <p>Contains information about the Amazon EC2 instance runtime
|
|
1450
|
+
* coverage details.</p>
|
|
1451
|
+
*/
|
|
1452
|
+
export interface CoverageEc2InstanceDetails {
|
|
1453
|
+
/**
|
|
1454
|
+
* @public
|
|
1455
|
+
* <p>The Amazon EC2 instance ID.</p>
|
|
1456
|
+
*/
|
|
1457
|
+
InstanceId?: string;
|
|
1458
|
+
/**
|
|
1459
|
+
* @public
|
|
1460
|
+
* <p>The instance type of the Amazon EC2 instance.</p>
|
|
1461
|
+
*/
|
|
1462
|
+
InstanceType?: string;
|
|
1463
|
+
/**
|
|
1464
|
+
* @public
|
|
1465
|
+
* <p>The cluster ARN of the Amazon ECS cluster running on
|
|
1466
|
+
* the Amazon EC2 instance.</p>
|
|
1467
|
+
*/
|
|
1468
|
+
ClusterArn?: string;
|
|
1469
|
+
/**
|
|
1470
|
+
* @public
|
|
1471
|
+
* <p>Information about the installed security agent.</p>
|
|
1472
|
+
*/
|
|
1473
|
+
AgentDetails?: AgentDetails;
|
|
1474
|
+
/**
|
|
1475
|
+
* @public
|
|
1476
|
+
* <p>Indicates how the GuardDuty security agent is managed for this resource.</p>
|
|
1477
|
+
* <ul>
|
|
1478
|
+
* <li>
|
|
1479
|
+
* <p>
|
|
1480
|
+
* <code>AUTO_MANAGED</code> indicates that GuardDuty deploys and manages updates for this resource.</p>
|
|
1481
|
+
* </li>
|
|
1482
|
+
* <li>
|
|
1483
|
+
* <p>
|
|
1484
|
+
* <code>MANUAL</code> indicates that you are responsible to deploy, update, and manage the GuardDuty
|
|
1485
|
+
* security agent updates for this resource.</p>
|
|
1486
|
+
* </li>
|
|
1487
|
+
* </ul>
|
|
1488
|
+
* <note>
|
|
1489
|
+
* <p>The <code>DISABLED</code> status doesn't apply to Amazon
|
|
1490
|
+
* EC2 instances and Amazon EKS clusters that run on Amazon EC2 instances.</p>
|
|
1491
|
+
* </note>
|
|
1492
|
+
*/
|
|
1493
|
+
ManagementType?: ManagementType;
|
|
1494
|
+
}
|
|
1495
|
+
/**
|
|
1496
|
+
* @public
|
|
1497
|
+
* <p>Contains information about AWS Fargate details associated with
|
|
1498
|
+
* an Amazon ECS cluster.</p>
|
|
1499
|
+
*/
|
|
1500
|
+
export interface FargateDetails {
|
|
1501
|
+
/**
|
|
1502
|
+
* @public
|
|
1503
|
+
* <p>Runtime coverage issues identified for the resource running on AWS Fargate.</p>
|
|
1504
|
+
*/
|
|
1505
|
+
Issues?: string[];
|
|
1506
|
+
/**
|
|
1507
|
+
* @public
|
|
1508
|
+
* <p>Indicates how the GuardDuty security agent is managed for this resource.</p>
|
|
1509
|
+
* <ul>
|
|
1510
|
+
* <li>
|
|
1511
|
+
* <p>
|
|
1512
|
+
* <code>AUTO_MANAGED</code> indicates that GuardDuty deploys and manages updates for this resource.</p>
|
|
1513
|
+
* </li>
|
|
1514
|
+
* <li>
|
|
1515
|
+
* <p>
|
|
1516
|
+
* <code>MANUAL</code> indicates that you are responsible to deploy, update, and manage the GuardDuty
|
|
1517
|
+
* security agent updates for this resource.</p>
|
|
1518
|
+
* </li>
|
|
1519
|
+
* <li>
|
|
1520
|
+
* <p>
|
|
1521
|
+
* <code>DISABLED</code> indicates that the deployment of the GuardDuty security agent is disabled for this resource.</p>
|
|
1522
|
+
* </li>
|
|
1523
|
+
* </ul>
|
|
1524
|
+
*/
|
|
1525
|
+
ManagementType?: ManagementType;
|
|
1526
|
+
}
|
|
1527
|
+
/**
|
|
1528
|
+
* @public
|
|
1529
|
+
* <p>Contains information about Amazon ECS cluster runtime coverage details.</p>
|
|
1530
|
+
*/
|
|
1531
|
+
export interface CoverageEcsClusterDetails {
|
|
1532
|
+
/**
|
|
1533
|
+
* @public
|
|
1534
|
+
* <p>The name of the Amazon ECS cluster.</p>
|
|
1535
|
+
*/
|
|
1536
|
+
ClusterName?: string;
|
|
1537
|
+
/**
|
|
1538
|
+
* @public
|
|
1539
|
+
* <p>Information about the Fargate details associated with the Amazon
|
|
1540
|
+
* ECS cluster.</p>
|
|
1541
|
+
*/
|
|
1542
|
+
FargateDetails?: FargateDetails;
|
|
1543
|
+
/**
|
|
1544
|
+
* @public
|
|
1545
|
+
* <p>Information about the Amazon ECS container running on Amazon EC2
|
|
1546
|
+
* instance.</p>
|
|
1547
|
+
*/
|
|
1548
|
+
ContainerInstanceDetails?: ContainerInstanceDetails;
|
|
1549
|
+
}
|
|
1408
1550
|
/**
|
|
1409
1551
|
* @public
|
|
1410
1552
|
* <p>Information about the EKS cluster that has a coverage status.</p>
|
|
@@ -1468,9 +1610,13 @@ export interface CoverageFilterCondition {
|
|
|
1468
1610
|
export declare const CoverageFilterCriterionKey: {
|
|
1469
1611
|
readonly ACCOUNT_ID: "ACCOUNT_ID";
|
|
1470
1612
|
readonly ADDON_VERSION: "ADDON_VERSION";
|
|
1613
|
+
readonly AGENT_VERSION: "AGENT_VERSION";
|
|
1614
|
+
readonly CLUSTER_ARN: "CLUSTER_ARN";
|
|
1471
1615
|
readonly CLUSTER_NAME: "CLUSTER_NAME";
|
|
1472
1616
|
readonly COVERAGE_STATUS: "COVERAGE_STATUS";
|
|
1617
|
+
readonly ECS_CLUSTER_NAME: "ECS_CLUSTER_NAME";
|
|
1473
1618
|
readonly EKS_CLUSTER_NAME: "EKS_CLUSTER_NAME";
|
|
1619
|
+
readonly INSTANCE_ID: "INSTANCE_ID";
|
|
1474
1620
|
readonly MANAGEMENT_TYPE: "MANAGEMENT_TYPE";
|
|
1475
1621
|
readonly RESOURCE_TYPE: "RESOURCE_TYPE";
|
|
1476
1622
|
};
|
|
@@ -1526,6 +1672,23 @@ export interface CoverageResourceDetails {
|
|
|
1526
1672
|
* <p>The type of Amazon Web Services resource.</p>
|
|
1527
1673
|
*/
|
|
1528
1674
|
ResourceType?: ResourceType;
|
|
1675
|
+
/**
|
|
1676
|
+
* @public
|
|
1677
|
+
* <p>Information about the Amazon ECS cluster that is assessed for
|
|
1678
|
+
* runtime coverage.</p>
|
|
1679
|
+
*/
|
|
1680
|
+
EcsClusterDetails?: CoverageEcsClusterDetails;
|
|
1681
|
+
/**
|
|
1682
|
+
* @public
|
|
1683
|
+
* <note>
|
|
1684
|
+
* <p>This API is also used when you use GuardDuty Runtime Monitoring
|
|
1685
|
+
* for your Amazon EC2 instances (currently in preview
|
|
1686
|
+
* release) and is subject to change.</p>
|
|
1687
|
+
* </note>
|
|
1688
|
+
* <p>Information about the Amazon EC2 instance assessed
|
|
1689
|
+
* for runtime coverage.</p>
|
|
1690
|
+
*/
|
|
1691
|
+
Ec2InstanceDetails?: CoverageEc2InstanceDetails;
|
|
1529
1692
|
}
|
|
1530
1693
|
/**
|
|
1531
1694
|
* @public
|
|
@@ -1579,7 +1742,9 @@ export declare const CoverageSortKey: {
|
|
|
1579
1742
|
readonly ADDON_VERSION: "ADDON_VERSION";
|
|
1580
1743
|
readonly CLUSTER_NAME: "CLUSTER_NAME";
|
|
1581
1744
|
readonly COVERAGE_STATUS: "COVERAGE_STATUS";
|
|
1745
|
+
readonly ECS_CLUSTER_NAME: "ECS_CLUSTER_NAME";
|
|
1582
1746
|
readonly EKS_CLUSTER_NAME: "EKS_CLUSTER_NAME";
|
|
1747
|
+
readonly INSTANCE_ID: "INSTANCE_ID";
|
|
1583
1748
|
readonly ISSUE: "ISSUE";
|
|
1584
1749
|
readonly UPDATED_AT: "UPDATED_AT";
|
|
1585
1750
|
};
|
|
@@ -1729,6 +1894,7 @@ export interface DataSourceConfigurations {
|
|
|
1729
1894
|
* @enum
|
|
1730
1895
|
*/
|
|
1731
1896
|
export declare const FeatureAdditionalConfiguration: {
|
|
1897
|
+
readonly ECS_FARGATE_AGENT_MANAGEMENT: "ECS_FARGATE_AGENT_MANAGEMENT";
|
|
1732
1898
|
readonly EKS_ADDON_MANAGEMENT: "EKS_ADDON_MANAGEMENT";
|
|
1733
1899
|
};
|
|
1734
1900
|
/**
|
|
@@ -1773,6 +1939,7 @@ export declare const DetectorFeature: {
|
|
|
1773
1939
|
readonly EKS_RUNTIME_MONITORING: "EKS_RUNTIME_MONITORING";
|
|
1774
1940
|
readonly LAMBDA_NETWORK_LOGS: "LAMBDA_NETWORK_LOGS";
|
|
1775
1941
|
readonly RDS_LOGIN_EVENTS: "RDS_LOGIN_EVENTS";
|
|
1942
|
+
readonly RUNTIME_MONITORING: "RUNTIME_MONITORING";
|
|
1776
1943
|
readonly S3_DATA_EVENTS: "S3_DATA_EVENTS";
|
|
1777
1944
|
};
|
|
1778
1945
|
/**
|
|
@@ -3365,6 +3532,7 @@ export type OrgFeatureStatus = (typeof OrgFeatureStatus)[keyof typeof OrgFeature
|
|
|
3365
3532
|
* @enum
|
|
3366
3533
|
*/
|
|
3367
3534
|
export declare const OrgFeatureAdditionalConfiguration: {
|
|
3535
|
+
readonly ECS_FARGATE_AGENT_MANAGEMENT: "ECS_FARGATE_AGENT_MANAGEMENT";
|
|
3368
3536
|
readonly EKS_ADDON_MANAGEMENT: "EKS_ADDON_MANAGEMENT";
|
|
3369
3537
|
};
|
|
3370
3538
|
/**
|
|
@@ -3423,6 +3591,7 @@ export declare const OrgFeature: {
|
|
|
3423
3591
|
readonly EKS_RUNTIME_MONITORING: "EKS_RUNTIME_MONITORING";
|
|
3424
3592
|
readonly LAMBDA_NETWORK_LOGS: "LAMBDA_NETWORK_LOGS";
|
|
3425
3593
|
readonly RDS_LOGIN_EVENTS: "RDS_LOGIN_EVENTS";
|
|
3594
|
+
readonly RUNTIME_MONITORING: "RUNTIME_MONITORING";
|
|
3426
3595
|
readonly S3_DATA_EVENTS: "S3_DATA_EVENTS";
|
|
3427
3596
|
};
|
|
3428
3597
|
/**
|
|
@@ -3672,6 +3841,7 @@ export declare const DetectorFeatureResult: {
|
|
|
3672
3841
|
readonly FLOW_LOGS: "FLOW_LOGS";
|
|
3673
3842
|
readonly LAMBDA_NETWORK_LOGS: "LAMBDA_NETWORK_LOGS";
|
|
3674
3843
|
readonly RDS_LOGIN_EVENTS: "RDS_LOGIN_EVENTS";
|
|
3844
|
+
readonly RUNTIME_MONITORING: "RUNTIME_MONITORING";
|
|
3675
3845
|
readonly S3_DATA_EVENTS: "S3_DATA_EVENTS";
|
|
3676
3846
|
};
|
|
3677
3847
|
/**
|
|
@@ -6057,8 +6227,10 @@ export declare const UsageFeature: {
|
|
|
6057
6227
|
readonly CLOUD_TRAIL: "CLOUD_TRAIL";
|
|
6058
6228
|
readonly DNS_LOGS: "DNS_LOGS";
|
|
6059
6229
|
readonly EBS_MALWARE_PROTECTION: "EBS_MALWARE_PROTECTION";
|
|
6230
|
+
readonly EC2_RUNTIME_MONITORING: "EC2_RUNTIME_MONITORING";
|
|
6060
6231
|
readonly EKS_AUDIT_LOGS: "EKS_AUDIT_LOGS";
|
|
6061
6232
|
readonly EKS_RUNTIME_MONITORING: "EKS_RUNTIME_MONITORING";
|
|
6233
|
+
readonly FARGATE_RUNTIME_MONITORING: "FARGATE_RUNTIME_MONITORING";
|
|
6062
6234
|
readonly FLOW_LOGS: "FLOW_LOGS";
|
|
6063
6235
|
readonly LAMBDA_NETWORK_LOGS: "LAMBDA_NETWORK_LOGS";
|
|
6064
6236
|
readonly RDS_LOGIN_EVENTS: "RDS_LOGIN_EVENTS";
|
|
@@ -6669,120 +6841,3 @@ export interface ListInvitationsRequest {
|
|
|
6669
6841
|
*/
|
|
6670
6842
|
NextToken?: string;
|
|
6671
6843
|
}
|
|
6672
|
-
/**
|
|
6673
|
-
* @public
|
|
6674
|
-
* <p>Contains information about the invitation to become a member account.</p>
|
|
6675
|
-
*/
|
|
6676
|
-
export interface Invitation {
|
|
6677
|
-
/**
|
|
6678
|
-
* @public
|
|
6679
|
-
* <p>The ID of the account that the invitation was sent from.</p>
|
|
6680
|
-
*/
|
|
6681
|
-
AccountId?: string;
|
|
6682
|
-
/**
|
|
6683
|
-
* @public
|
|
6684
|
-
* <p>The ID of the invitation. This value is used to validate the inviter account to the member
|
|
6685
|
-
* account.</p>
|
|
6686
|
-
*/
|
|
6687
|
-
InvitationId?: string;
|
|
6688
|
-
/**
|
|
6689
|
-
* @public
|
|
6690
|
-
* <p>The status of the relationship between the inviter and invitee accounts.</p>
|
|
6691
|
-
*/
|
|
6692
|
-
RelationshipStatus?: string;
|
|
6693
|
-
/**
|
|
6694
|
-
* @public
|
|
6695
|
-
* <p>The timestamp when the invitation was sent.</p>
|
|
6696
|
-
*/
|
|
6697
|
-
InvitedAt?: string;
|
|
6698
|
-
}
|
|
6699
|
-
/**
|
|
6700
|
-
* @public
|
|
6701
|
-
*/
|
|
6702
|
-
export interface ListInvitationsResponse {
|
|
6703
|
-
/**
|
|
6704
|
-
* @public
|
|
6705
|
-
* <p>A list of invitation descriptions.</p>
|
|
6706
|
-
*/
|
|
6707
|
-
Invitations?: Invitation[];
|
|
6708
|
-
/**
|
|
6709
|
-
* @public
|
|
6710
|
-
* <p>The pagination parameter to be used on the next list operation to retrieve more
|
|
6711
|
-
* items.</p>
|
|
6712
|
-
*/
|
|
6713
|
-
NextToken?: string;
|
|
6714
|
-
}
|
|
6715
|
-
/**
|
|
6716
|
-
* @public
|
|
6717
|
-
*/
|
|
6718
|
-
export interface ListIPSetsRequest {
|
|
6719
|
-
/**
|
|
6720
|
-
* @public
|
|
6721
|
-
* <p>The unique ID of the detector that the IPSet is associated with.</p>
|
|
6722
|
-
*/
|
|
6723
|
-
DetectorId: string | undefined;
|
|
6724
|
-
/**
|
|
6725
|
-
* @public
|
|
6726
|
-
* <p>You can use this parameter to indicate the maximum number of items you want in the
|
|
6727
|
-
* response. The default value is 50. The maximum value is 50.</p>
|
|
6728
|
-
*/
|
|
6729
|
-
MaxResults?: number;
|
|
6730
|
-
/**
|
|
6731
|
-
* @public
|
|
6732
|
-
* <p>You can use this parameter when paginating results. Set the value of this parameter to
|
|
6733
|
-
* null on your first call to the list action. For subsequent calls to the action, fill nextToken
|
|
6734
|
-
* in the request with the value of NextToken from the previous response to continue listing
|
|
6735
|
-
* data.</p>
|
|
6736
|
-
*/
|
|
6737
|
-
NextToken?: string;
|
|
6738
|
-
}
|
|
6739
|
-
/**
|
|
6740
|
-
* @public
|
|
6741
|
-
*/
|
|
6742
|
-
export interface ListIPSetsResponse {
|
|
6743
|
-
/**
|
|
6744
|
-
* @public
|
|
6745
|
-
* <p>The IDs of the IPSet resources.</p>
|
|
6746
|
-
*/
|
|
6747
|
-
IpSetIds: string[] | undefined;
|
|
6748
|
-
/**
|
|
6749
|
-
* @public
|
|
6750
|
-
* <p>The pagination parameter to be used on the next list operation to retrieve more
|
|
6751
|
-
* items.</p>
|
|
6752
|
-
*/
|
|
6753
|
-
NextToken?: string;
|
|
6754
|
-
}
|
|
6755
|
-
/**
|
|
6756
|
-
* @public
|
|
6757
|
-
*/
|
|
6758
|
-
export interface ListMembersRequest {
|
|
6759
|
-
/**
|
|
6760
|
-
* @public
|
|
6761
|
-
* <p>The unique ID of the detector the member is associated with.</p>
|
|
6762
|
-
*/
|
|
6763
|
-
DetectorId: string | undefined;
|
|
6764
|
-
/**
|
|
6765
|
-
* @public
|
|
6766
|
-
* <p>You can use this parameter to indicate the maximum number of items you want in the
|
|
6767
|
-
* response. The default value is 50. The maximum value is 50.</p>
|
|
6768
|
-
*/
|
|
6769
|
-
MaxResults?: number;
|
|
6770
|
-
/**
|
|
6771
|
-
* @public
|
|
6772
|
-
* <p>You can use this parameter when paginating results. Set the value of this parameter to
|
|
6773
|
-
* null on your first call to the list action. For subsequent calls to the action, fill nextToken
|
|
6774
|
-
* in the request with the value of NextToken from the previous response to continue listing
|
|
6775
|
-
* data.</p>
|
|
6776
|
-
*/
|
|
6777
|
-
NextToken?: string;
|
|
6778
|
-
/**
|
|
6779
|
-
* @public
|
|
6780
|
-
* <p>Specifies whether to only return associated members or to return all members (including
|
|
6781
|
-
* members who haven't been invited yet or have been disassociated). Member accounts must have
|
|
6782
|
-
* been previously associated with the GuardDuty administrator account using <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_CreateMembers.html">
|
|
6783
|
-
* <code>Create
|
|
6784
|
-
* Members</code>
|
|
6785
|
-
* </a>. </p>
|
|
6786
|
-
*/
|
|
6787
|
-
OnlyAssociated?: string;
|
|
6788
|
-
}
|
|
@@ -1,4 +1,121 @@
|
|
|
1
1
|
import { AdminAccount, AutoEnableMembers, DataSourceConfigurations, Destination, DestinationProperties, DetectorFeatureConfiguration, EbsSnapshotPreservation, FeatureStatus, Feedback, FilterAction, FindingCriteria, FindingPublishingFrequency, Member, OrgFeature, OrgFeatureAdditionalConfiguration, OrgFeatureStatus, ScanResourceCriteria, UnprocessedAccount } from "./models_0";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
* <p>Contains information about the invitation to become a member account.</p>
|
|
5
|
+
*/
|
|
6
|
+
export interface Invitation {
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
* <p>The ID of the account that the invitation was sent from.</p>
|
|
10
|
+
*/
|
|
11
|
+
AccountId?: string;
|
|
12
|
+
/**
|
|
13
|
+
* @public
|
|
14
|
+
* <p>The ID of the invitation. This value is used to validate the inviter account to the member
|
|
15
|
+
* account.</p>
|
|
16
|
+
*/
|
|
17
|
+
InvitationId?: string;
|
|
18
|
+
/**
|
|
19
|
+
* @public
|
|
20
|
+
* <p>The status of the relationship between the inviter and invitee accounts.</p>
|
|
21
|
+
*/
|
|
22
|
+
RelationshipStatus?: string;
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
* <p>The timestamp when the invitation was sent.</p>
|
|
26
|
+
*/
|
|
27
|
+
InvitedAt?: string;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
export interface ListInvitationsResponse {
|
|
33
|
+
/**
|
|
34
|
+
* @public
|
|
35
|
+
* <p>A list of invitation descriptions.</p>
|
|
36
|
+
*/
|
|
37
|
+
Invitations?: Invitation[];
|
|
38
|
+
/**
|
|
39
|
+
* @public
|
|
40
|
+
* <p>The pagination parameter to be used on the next list operation to retrieve more
|
|
41
|
+
* items.</p>
|
|
42
|
+
*/
|
|
43
|
+
NextToken?: string;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
export interface ListIPSetsRequest {
|
|
49
|
+
/**
|
|
50
|
+
* @public
|
|
51
|
+
* <p>The unique ID of the detector that the IPSet is associated with.</p>
|
|
52
|
+
*/
|
|
53
|
+
DetectorId: string | undefined;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
* <p>You can use this parameter to indicate the maximum number of items you want in the
|
|
57
|
+
* response. The default value is 50. The maximum value is 50.</p>
|
|
58
|
+
*/
|
|
59
|
+
MaxResults?: number;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
* <p>You can use this parameter when paginating results. Set the value of this parameter to
|
|
63
|
+
* null on your first call to the list action. For subsequent calls to the action, fill nextToken
|
|
64
|
+
* in the request with the value of NextToken from the previous response to continue listing
|
|
65
|
+
* data.</p>
|
|
66
|
+
*/
|
|
67
|
+
NextToken?: string;
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
export interface ListIPSetsResponse {
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
* <p>The IDs of the IPSet resources.</p>
|
|
76
|
+
*/
|
|
77
|
+
IpSetIds: string[] | undefined;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
* <p>The pagination parameter to be used on the next list operation to retrieve more
|
|
81
|
+
* items.</p>
|
|
82
|
+
*/
|
|
83
|
+
NextToken?: string;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
export interface ListMembersRequest {
|
|
89
|
+
/**
|
|
90
|
+
* @public
|
|
91
|
+
* <p>The unique ID of the detector the member is associated with.</p>
|
|
92
|
+
*/
|
|
93
|
+
DetectorId: string | undefined;
|
|
94
|
+
/**
|
|
95
|
+
* @public
|
|
96
|
+
* <p>You can use this parameter to indicate the maximum number of items you want in the
|
|
97
|
+
* response. The default value is 50. The maximum value is 50.</p>
|
|
98
|
+
*/
|
|
99
|
+
MaxResults?: number;
|
|
100
|
+
/**
|
|
101
|
+
* @public
|
|
102
|
+
* <p>You can use this parameter when paginating results. Set the value of this parameter to
|
|
103
|
+
* null on your first call to the list action. For subsequent calls to the action, fill nextToken
|
|
104
|
+
* in the request with the value of NextToken from the previous response to continue listing
|
|
105
|
+
* data.</p>
|
|
106
|
+
*/
|
|
107
|
+
NextToken?: string;
|
|
108
|
+
/**
|
|
109
|
+
* @public
|
|
110
|
+
* <p>Specifies whether to only return associated members or to return all members (including
|
|
111
|
+
* members who haven't been invited yet or have been disassociated). Member accounts must have
|
|
112
|
+
* been previously associated with the GuardDuty administrator account using <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_CreateMembers.html">
|
|
113
|
+
* <code>Create
|
|
114
|
+
* Members</code>
|
|
115
|
+
* </a>. </p>
|
|
116
|
+
*/
|
|
117
|
+
OnlyAssociated?: string;
|
|
118
|
+
}
|
|
2
119
|
/**
|
|
3
120
|
* @public
|
|
4
121
|
*/
|
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../GuardDutyClient";
|
|
14
|
-
import { ListIPSetsRequest, ListIPSetsResponse } from "../models/
|
|
14
|
+
import { ListIPSetsRequest, ListIPSetsResponse } from "../models/models_1";
|
|
15
15
|
export { __MetadataBearer, $Command };
|
|
16
16
|
export interface ListIPSetsCommandInput extends ListIPSetsRequest {}
|
|
17
17
|
export interface ListIPSetsCommandOutput
|
|
@@ -11,10 +11,8 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../GuardDutyClient";
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
ListInvitationsResponse,
|
|
17
|
-
} from "../models/models_0";
|
|
14
|
+
import { ListInvitationsRequest } from "../models/models_0";
|
|
15
|
+
import { ListInvitationsResponse } from "../models/models_1";
|
|
18
16
|
export { __MetadataBearer, $Command };
|
|
19
17
|
export interface ListInvitationsCommandInput extends ListInvitationsRequest {}
|
|
20
18
|
export interface ListInvitationsCommandOutput
|
|
@@ -11,8 +11,7 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../GuardDutyClient";
|
|
14
|
-
import { ListMembersRequest } from "../models/
|
|
15
|
-
import { ListMembersResponse } from "../models/models_1";
|
|
14
|
+
import { ListMembersRequest, ListMembersResponse } from "../models/models_1";
|
|
16
15
|
export { __MetadataBearer, $Command };
|
|
17
16
|
export interface ListMembersCommandInput extends ListMembersRequest {}
|
|
18
17
|
export interface ListMembersCommandOutput
|