@aws-sdk/client-guardduty 3.322.0 → 3.326.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/commands/AcceptAdministratorInvitationCommand.d.ts +4 -0
- package/dist-types/commands/AcceptInvitationCommand.d.ts +4 -0
- package/dist-types/commands/ArchiveFindingsCommand.d.ts +4 -0
- package/dist-types/commands/CreateDetectorCommand.d.ts +17 -0
- package/dist-types/commands/CreateFilterCommand.d.ts +6 -0
- package/dist-types/commands/CreateIPSetCommand.d.ts +6 -0
- package/dist-types/commands/CreateMembersCommand.d.ts +11 -0
- package/dist-types/commands/CreatePublishingDestinationCommand.d.ts +6 -0
- package/dist-types/commands/CreateSampleFindingsCommand.d.ts +4 -0
- package/dist-types/commands/CreateThreatIntelSetCommand.d.ts +6 -0
- package/dist-types/commands/DeclineInvitationsCommand.d.ts +11 -0
- package/dist-types/commands/DeleteDetectorCommand.d.ts +4 -0
- package/dist-types/commands/DeleteFilterCommand.d.ts +4 -0
- package/dist-types/commands/DeleteIPSetCommand.d.ts +4 -0
- package/dist-types/commands/DeleteInvitationsCommand.d.ts +11 -0
- package/dist-types/commands/DeleteMembersCommand.d.ts +11 -0
- package/dist-types/commands/DeletePublishingDestinationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteThreatIntelSetCommand.d.ts +4 -0
- package/dist-types/commands/DescribeMalwareScansCommand.d.ts +42 -0
- package/dist-types/commands/DescribeOrganizationConfigurationCommand.d.ts +38 -0
- package/dist-types/commands/DescribePublishingDestinationCommand.d.ts +13 -0
- package/dist-types/commands/DisableOrganizationAdminAccountCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateFromAdministratorAccountCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateFromMasterAccountCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateMembersCommand.d.ts +11 -0
- package/dist-types/commands/EnableOrganizationAdminAccountCommand.d.ts +4 -0
- package/dist-types/commands/GetAdministratorAccountCommand.d.ts +11 -0
- package/dist-types/commands/GetCoverageStatisticsCommand.d.ts +13 -0
- package/dist-types/commands/GetDetectorCommand.d.ts +55 -0
- package/dist-types/commands/GetFilterCommand.d.ts +38 -0
- package/dist-types/commands/GetFindingsCommand.d.ts +673 -0
- package/dist-types/commands/GetFindingsStatisticsCommand.d.ts +10 -0
- package/dist-types/commands/GetIPSetCommand.d.ts +12 -0
- package/dist-types/commands/GetInvitationsCountCommand.d.ts +6 -0
- package/dist-types/commands/GetMalwareScanSettingsCommand.d.ts +28 -0
- package/dist-types/commands/GetMasterAccountCommand.d.ts +11 -0
- package/dist-types/commands/GetMemberDetectorsCommand.d.ts +58 -0
- package/dist-types/commands/GetMembersCommand.d.ts +23 -0
- package/dist-types/commands/GetRemainingFreeTrialDaysCommand.d.ts +44 -0
- package/dist-types/commands/GetThreatIntelSetCommand.d.ts +12 -0
- package/dist-types/commands/GetUsageStatisticsCommand.d.ts +53 -0
- package/dist-types/commands/InviteMembersCommand.d.ts +11 -0
- package/dist-types/commands/ListCoverageCommand.d.ts +28 -0
- package/dist-types/commands/ListDetectorsCommand.d.ts +9 -0
- package/dist-types/commands/ListFiltersCommand.d.ts +9 -0
- package/dist-types/commands/ListFindingsCommand.d.ts +9 -0
- package/dist-types/commands/ListIPSetsCommand.d.ts +9 -0
- package/dist-types/commands/ListInvitationsCommand.d.ts +14 -0
- package/dist-types/commands/ListMembersCommand.d.ts +18 -0
- package/dist-types/commands/ListOrganizationAdminAccountsCommand.d.ts +12 -0
- package/dist-types/commands/ListPublishingDestinationsCommand.d.ts +13 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/ListThreatIntelSetsCommand.d.ts +9 -0
- package/dist-types/commands/StartMalwareScanCommand.d.ts +6 -0
- package/dist-types/commands/StartMonitoringMembersCommand.d.ts +11 -0
- package/dist-types/commands/StopMonitoringMembersCommand.d.ts +11 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UnarchiveFindingsCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateDetectorCommand.d.ts +4 -0
- package/dist-types/commands/UpdateFilterCommand.d.ts +6 -0
- package/dist-types/commands/UpdateFindingsFeedbackCommand.d.ts +4 -0
- package/dist-types/commands/UpdateIPSetCommand.d.ts +4 -0
- package/dist-types/commands/UpdateMalwareScanSettingsCommand.d.ts +4 -0
- package/dist-types/commands/UpdateMemberDetectorsCommand.d.ts +11 -0
- package/dist-types/commands/UpdateOrganizationConfigurationCommand.d.ts +4 -0
- package/dist-types/commands/UpdatePublishingDestinationCommand.d.ts +4 -0
- package/dist-types/commands/UpdateThreatIntelSetCommand.d.ts +4 -0
- package/package.json +16 -16
|
@@ -60,6 +60,14 @@ export interface GetFindingsStatisticsCommandOutput extends GetFindingsStatistic
|
|
|
60
60
|
* };
|
|
61
61
|
* const command = new GetFindingsStatisticsCommand(input);
|
|
62
62
|
* const response = await client.send(command);
|
|
63
|
+
* // { // GetFindingsStatisticsResponse
|
|
64
|
+
* // FindingStatistics: { // FindingStatistics
|
|
65
|
+
* // CountBySeverity: { // CountBySeverity
|
|
66
|
+
* // "<keys>": Number("int"),
|
|
67
|
+
* // },
|
|
68
|
+
* // },
|
|
69
|
+
* // };
|
|
70
|
+
*
|
|
63
71
|
* ```
|
|
64
72
|
*
|
|
65
73
|
* @param GetFindingsStatisticsCommandInput - {@link GetFindingsStatisticsCommandInput}
|
|
@@ -74,6 +82,8 @@ export interface GetFindingsStatisticsCommandOutput extends GetFindingsStatistic
|
|
|
74
82
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
75
83
|
* <p>An internal server error exception object.</p>
|
|
76
84
|
*
|
|
85
|
+
* @throws {@link GuardDutyServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from GuardDuty service.</p>
|
|
77
87
|
*
|
|
78
88
|
*/
|
|
79
89
|
export declare class GetFindingsStatisticsCommand extends $Command<GetFindingsStatisticsCommandInput, GetFindingsStatisticsCommandOutput, GuardDutyClientResolvedConfig> {
|
|
@@ -32,6 +32,16 @@ export interface GetIPSetCommandOutput extends GetIPSetResponse, __MetadataBeare
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetIPSetCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetIPSetResponse
|
|
36
|
+
* // Name: "STRING_VALUE", // required
|
|
37
|
+
* // Format: "TXT" || "STIX" || "OTX_CSV" || "ALIEN_VAULT" || "PROOF_POINT" || "FIRE_EYE", // required
|
|
38
|
+
* // Location: "STRING_VALUE", // required
|
|
39
|
+
* // Status: "INACTIVE" || "ACTIVATING" || "ACTIVE" || "DEACTIVATING" || "ERROR" || "DELETE_PENDING" || "DELETED", // required
|
|
40
|
+
* // Tags: { // TagMap
|
|
41
|
+
* // "<keys>": "STRING_VALUE",
|
|
42
|
+
* // },
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
35
45
|
* ```
|
|
36
46
|
*
|
|
37
47
|
* @param GetIPSetCommandInput - {@link GetIPSetCommandInput}
|
|
@@ -46,6 +56,8 @@ export interface GetIPSetCommandOutput extends GetIPSetResponse, __MetadataBeare
|
|
|
46
56
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
47
57
|
* <p>An internal server error exception object.</p>
|
|
48
58
|
*
|
|
59
|
+
* @throws {@link GuardDutyServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from GuardDuty service.</p>
|
|
49
61
|
*
|
|
50
62
|
*/
|
|
51
63
|
export declare class GetIPSetCommand extends $Command<GetIPSetCommandInput, GetIPSetCommandOutput, GuardDutyClientResolvedConfig> {
|
|
@@ -30,6 +30,10 @@ export interface GetInvitationsCountCommandOutput extends GetInvitationsCountRes
|
|
|
30
30
|
* const input = {};
|
|
31
31
|
* const command = new GetInvitationsCountCommand(input);
|
|
32
32
|
* const response = await client.send(command);
|
|
33
|
+
* // { // GetInvitationsCountResponse
|
|
34
|
+
* // InvitationsCount: Number("int"),
|
|
35
|
+
* // };
|
|
36
|
+
*
|
|
33
37
|
* ```
|
|
34
38
|
*
|
|
35
39
|
* @param GetInvitationsCountCommandInput - {@link GetInvitationsCountCommandInput}
|
|
@@ -44,6 +48,8 @@ export interface GetInvitationsCountCommandOutput extends GetInvitationsCountRes
|
|
|
44
48
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
45
49
|
* <p>An internal server error exception object.</p>
|
|
46
50
|
*
|
|
51
|
+
* @throws {@link GuardDutyServiceException}
|
|
52
|
+
* <p>Base exception class for all service exceptions from GuardDuty service.</p>
|
|
47
53
|
*
|
|
48
54
|
*/
|
|
49
55
|
export declare class GetInvitationsCountCommand extends $Command<GetInvitationsCountCommandInput, GetInvitationsCountCommandOutput, GuardDutyClientResolvedConfig> {
|
|
@@ -34,6 +34,32 @@ export interface GetMalwareScanSettingsCommandOutput extends GetMalwareScanSetti
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetMalwareScanSettingsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // GetMalwareScanSettingsResponse
|
|
38
|
+
* // ScanResourceCriteria: { // ScanResourceCriteria
|
|
39
|
+
* // Include: { // ScanCriterion
|
|
40
|
+
* // "<keys>": { // ScanCondition
|
|
41
|
+
* // MapEquals: [ // MapEquals // required
|
|
42
|
+
* // { // ScanConditionPair
|
|
43
|
+
* // Key: "STRING_VALUE", // required
|
|
44
|
+
* // Value: "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // ],
|
|
47
|
+
* // },
|
|
48
|
+
* // },
|
|
49
|
+
* // Exclude: {
|
|
50
|
+
* // "<keys>": {
|
|
51
|
+
* // MapEquals: [ // required
|
|
52
|
+
* // {
|
|
53
|
+
* // Key: "STRING_VALUE", // required
|
|
54
|
+
* // Value: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // },
|
|
58
|
+
* // },
|
|
59
|
+
* // },
|
|
60
|
+
* // EbsSnapshotPreservation: "NO_RETENTION" || "RETENTION_WITH_FINDING",
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
37
63
|
* ```
|
|
38
64
|
*
|
|
39
65
|
* @param GetMalwareScanSettingsCommandInput - {@link GetMalwareScanSettingsCommandInput}
|
|
@@ -48,6 +74,8 @@ export interface GetMalwareScanSettingsCommandOutput extends GetMalwareScanSetti
|
|
|
48
74
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
49
75
|
* <p>An internal server error exception object.</p>
|
|
50
76
|
*
|
|
77
|
+
* @throws {@link GuardDutyServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from GuardDuty service.</p>
|
|
51
79
|
*
|
|
52
80
|
*/
|
|
53
81
|
export declare class GetMalwareScanSettingsCommand extends $Command<GetMalwareScanSettingsCommandInput, GetMalwareScanSettingsCommandOutput, GuardDutyClientResolvedConfig> {
|
|
@@ -34,6 +34,15 @@ export interface GetMasterAccountCommandOutput extends GetMasterAccountResponse,
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetMasterAccountCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // GetMasterAccountResponse
|
|
38
|
+
* // Master: { // Master
|
|
39
|
+
* // AccountId: "STRING_VALUE",
|
|
40
|
+
* // InvitationId: "STRING_VALUE",
|
|
41
|
+
* // RelationshipStatus: "STRING_VALUE",
|
|
42
|
+
* // InvitedAt: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
37
46
|
* ```
|
|
38
47
|
*
|
|
39
48
|
* @param GetMasterAccountCommandInput - {@link GetMasterAccountCommandInput}
|
|
@@ -48,6 +57,8 @@ export interface GetMasterAccountCommandOutput extends GetMasterAccountResponse,
|
|
|
48
57
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
49
58
|
* <p>An internal server error exception object.</p>
|
|
50
59
|
*
|
|
60
|
+
* @throws {@link GuardDutyServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from GuardDuty service.</p>
|
|
51
62
|
*
|
|
52
63
|
*/
|
|
53
64
|
export declare class GetMasterAccountCommand extends $Command<GetMasterAccountCommandInput, GetMasterAccountCommandOutput, GuardDutyClientResolvedConfig> {
|
|
@@ -37,6 +37,62 @@ export interface GetMemberDetectorsCommandOutput extends GetMemberDetectorsRespo
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new GetMemberDetectorsCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // GetMemberDetectorsResponse
|
|
41
|
+
* // MemberDataSourceConfigurations: [ // MemberDataSourceConfigurations // required
|
|
42
|
+
* // { // MemberDataSourceConfiguration
|
|
43
|
+
* // AccountId: "STRING_VALUE", // required
|
|
44
|
+
* // DataSources: { // DataSourceConfigurationsResult
|
|
45
|
+
* // CloudTrail: { // CloudTrailConfigurationResult
|
|
46
|
+
* // Status: "ENABLED" || "DISABLED", // required
|
|
47
|
+
* // },
|
|
48
|
+
* // DNSLogs: { // DNSLogsConfigurationResult
|
|
49
|
+
* // Status: "ENABLED" || "DISABLED", // required
|
|
50
|
+
* // },
|
|
51
|
+
* // FlowLogs: { // FlowLogsConfigurationResult
|
|
52
|
+
* // Status: "ENABLED" || "DISABLED", // required
|
|
53
|
+
* // },
|
|
54
|
+
* // S3Logs: { // S3LogsConfigurationResult
|
|
55
|
+
* // Status: "ENABLED" || "DISABLED", // required
|
|
56
|
+
* // },
|
|
57
|
+
* // Kubernetes: { // KubernetesConfigurationResult
|
|
58
|
+
* // AuditLogs: { // KubernetesAuditLogsConfigurationResult
|
|
59
|
+
* // Status: "ENABLED" || "DISABLED", // required
|
|
60
|
+
* // },
|
|
61
|
+
* // },
|
|
62
|
+
* // MalwareProtection: { // MalwareProtectionConfigurationResult
|
|
63
|
+
* // ScanEc2InstanceWithFindings: { // ScanEc2InstanceWithFindingsResult
|
|
64
|
+
* // EbsVolumes: { // EbsVolumesResult
|
|
65
|
+
* // Status: "ENABLED" || "DISABLED",
|
|
66
|
+
* // Reason: "STRING_VALUE",
|
|
67
|
+
* // },
|
|
68
|
+
* // },
|
|
69
|
+
* // ServiceRole: "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // },
|
|
72
|
+
* // Features: [ // MemberFeaturesConfigurationsResults
|
|
73
|
+
* // { // MemberFeaturesConfigurationResult
|
|
74
|
+
* // Name: "S3_DATA_EVENTS" || "EKS_AUDIT_LOGS" || "EBS_MALWARE_PROTECTION" || "RDS_LOGIN_EVENTS" || "EKS_RUNTIME_MONITORING" || "LAMBDA_NETWORK_LOGS",
|
|
75
|
+
* // Status: "ENABLED" || "DISABLED",
|
|
76
|
+
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
77
|
+
* // AdditionalConfiguration: [ // MemberAdditionalConfigurationResults
|
|
78
|
+
* // { // MemberAdditionalConfigurationResult
|
|
79
|
+
* // Name: "EKS_ADDON_MANAGEMENT",
|
|
80
|
+
* // Status: "ENABLED" || "DISABLED",
|
|
81
|
+
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
82
|
+
* // },
|
|
83
|
+
* // ],
|
|
84
|
+
* // },
|
|
85
|
+
* // ],
|
|
86
|
+
* // },
|
|
87
|
+
* // ],
|
|
88
|
+
* // UnprocessedAccounts: [ // UnprocessedAccounts // required
|
|
89
|
+
* // { // UnprocessedAccount
|
|
90
|
+
* // AccountId: "STRING_VALUE", // required
|
|
91
|
+
* // Result: "STRING_VALUE", // required
|
|
92
|
+
* // },
|
|
93
|
+
* // ],
|
|
94
|
+
* // };
|
|
95
|
+
*
|
|
40
96
|
* ```
|
|
41
97
|
*
|
|
42
98
|
* @param GetMemberDetectorsCommandInput - {@link GetMemberDetectorsCommandInput}
|
|
@@ -51,6 +107,8 @@ export interface GetMemberDetectorsCommandOutput extends GetMemberDetectorsRespo
|
|
|
51
107
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
52
108
|
* <p>An internal server error exception object.</p>
|
|
53
109
|
*
|
|
110
|
+
* @throws {@link GuardDutyServiceException}
|
|
111
|
+
* <p>Base exception class for all service exceptions from GuardDuty service.</p>
|
|
54
112
|
*
|
|
55
113
|
*/
|
|
56
114
|
export declare class GetMemberDetectorsCommand extends $Command<GetMemberDetectorsCommandInput, GetMemberDetectorsCommandOutput, GuardDutyClientResolvedConfig> {
|
|
@@ -35,6 +35,27 @@ export interface GetMembersCommandOutput extends GetMembersResponse, __MetadataB
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new GetMembersCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // GetMembersResponse
|
|
39
|
+
* // Members: [ // Members // required
|
|
40
|
+
* // { // Member
|
|
41
|
+
* // AccountId: "STRING_VALUE", // required
|
|
42
|
+
* // DetectorId: "STRING_VALUE",
|
|
43
|
+
* // MasterId: "STRING_VALUE", // required
|
|
44
|
+
* // Email: "STRING_VALUE", // required
|
|
45
|
+
* // RelationshipStatus: "STRING_VALUE", // required
|
|
46
|
+
* // InvitedAt: "STRING_VALUE",
|
|
47
|
+
* // UpdatedAt: "STRING_VALUE", // required
|
|
48
|
+
* // AdministratorId: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // UnprocessedAccounts: [ // UnprocessedAccounts // required
|
|
52
|
+
* // { // UnprocessedAccount
|
|
53
|
+
* // AccountId: "STRING_VALUE", // required
|
|
54
|
+
* // Result: "STRING_VALUE", // required
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
38
59
|
* ```
|
|
39
60
|
*
|
|
40
61
|
* @param GetMembersCommandInput - {@link GetMembersCommandInput}
|
|
@@ -49,6 +70,8 @@ export interface GetMembersCommandOutput extends GetMembersResponse, __MetadataB
|
|
|
49
70
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
50
71
|
* <p>An internal server error exception object.</p>
|
|
51
72
|
*
|
|
73
|
+
* @throws {@link GuardDutyServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from GuardDuty service.</p>
|
|
52
75
|
*
|
|
53
76
|
*/
|
|
54
77
|
export declare class GetMembersCommand extends $Command<GetMembersCommandInput, GetMembersCommandOutput, GuardDutyClientResolvedConfig> {
|
|
@@ -35,6 +35,48 @@ export interface GetRemainingFreeTrialDaysCommandOutput extends GetRemainingFree
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new GetRemainingFreeTrialDaysCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // GetRemainingFreeTrialDaysResponse
|
|
39
|
+
* // Accounts: [ // AccountFreeTrialInfos
|
|
40
|
+
* // { // AccountFreeTrialInfo
|
|
41
|
+
* // AccountId: "STRING_VALUE",
|
|
42
|
+
* // DataSources: { // DataSourcesFreeTrial
|
|
43
|
+
* // CloudTrail: { // DataSourceFreeTrial
|
|
44
|
+
* // FreeTrialDaysRemaining: Number("int"),
|
|
45
|
+
* // },
|
|
46
|
+
* // DnsLogs: {
|
|
47
|
+
* // FreeTrialDaysRemaining: Number("int"),
|
|
48
|
+
* // },
|
|
49
|
+
* // FlowLogs: {
|
|
50
|
+
* // FreeTrialDaysRemaining: Number("int"),
|
|
51
|
+
* // },
|
|
52
|
+
* // S3Logs: {
|
|
53
|
+
* // FreeTrialDaysRemaining: Number("int"),
|
|
54
|
+
* // },
|
|
55
|
+
* // Kubernetes: { // KubernetesDataSourceFreeTrial
|
|
56
|
+
* // AuditLogs: {
|
|
57
|
+
* // FreeTrialDaysRemaining: Number("int"),
|
|
58
|
+
* // },
|
|
59
|
+
* // },
|
|
60
|
+
* // MalwareProtection: { // MalwareProtectionDataSourceFreeTrial
|
|
61
|
+
* // ScanEc2InstanceWithFindings: "<DataSourceFreeTrial>",
|
|
62
|
+
* // },
|
|
63
|
+
* // },
|
|
64
|
+
* // Features: [ // FreeTrialFeatureConfigurationsResults
|
|
65
|
+
* // { // FreeTrialFeatureConfigurationResult
|
|
66
|
+
* // Name: "FLOW_LOGS" || "CLOUD_TRAIL" || "DNS_LOGS" || "S3_DATA_EVENTS" || "EKS_AUDIT_LOGS" || "EBS_MALWARE_PROTECTION" || "RDS_LOGIN_EVENTS" || "EKS_RUNTIME_MONITORING" || "LAMBDA_NETWORK_LOGS",
|
|
67
|
+
* // FreeTrialDaysRemaining: Number("int"),
|
|
68
|
+
* // },
|
|
69
|
+
* // ],
|
|
70
|
+
* // },
|
|
71
|
+
* // ],
|
|
72
|
+
* // UnprocessedAccounts: [ // UnprocessedAccounts
|
|
73
|
+
* // { // UnprocessedAccount
|
|
74
|
+
* // AccountId: "STRING_VALUE", // required
|
|
75
|
+
* // Result: "STRING_VALUE", // required
|
|
76
|
+
* // },
|
|
77
|
+
* // ],
|
|
78
|
+
* // };
|
|
79
|
+
*
|
|
38
80
|
* ```
|
|
39
81
|
*
|
|
40
82
|
* @param GetRemainingFreeTrialDaysCommandInput - {@link GetRemainingFreeTrialDaysCommandInput}
|
|
@@ -49,6 +91,8 @@ export interface GetRemainingFreeTrialDaysCommandOutput extends GetRemainingFree
|
|
|
49
91
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
50
92
|
* <p>An internal server error exception object.</p>
|
|
51
93
|
*
|
|
94
|
+
* @throws {@link GuardDutyServiceException}
|
|
95
|
+
* <p>Base exception class for all service exceptions from GuardDuty service.</p>
|
|
52
96
|
*
|
|
53
97
|
*/
|
|
54
98
|
export declare class GetRemainingFreeTrialDaysCommand extends $Command<GetRemainingFreeTrialDaysCommandInput, GetRemainingFreeTrialDaysCommandOutput, GuardDutyClientResolvedConfig> {
|
|
@@ -32,6 +32,16 @@ export interface GetThreatIntelSetCommandOutput extends GetThreatIntelSetRespons
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetThreatIntelSetCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetThreatIntelSetResponse
|
|
36
|
+
* // Name: "STRING_VALUE", // required
|
|
37
|
+
* // Format: "TXT" || "STIX" || "OTX_CSV" || "ALIEN_VAULT" || "PROOF_POINT" || "FIRE_EYE", // required
|
|
38
|
+
* // Location: "STRING_VALUE", // required
|
|
39
|
+
* // Status: "INACTIVE" || "ACTIVATING" || "ACTIVE" || "DEACTIVATING" || "ERROR" || "DELETE_PENDING" || "DELETED", // required
|
|
40
|
+
* // Tags: { // TagMap
|
|
41
|
+
* // "<keys>": "STRING_VALUE",
|
|
42
|
+
* // },
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
35
45
|
* ```
|
|
36
46
|
*
|
|
37
47
|
* @param GetThreatIntelSetCommandInput - {@link GetThreatIntelSetCommandInput}
|
|
@@ -46,6 +56,8 @@ export interface GetThreatIntelSetCommandOutput extends GetThreatIntelSetRespons
|
|
|
46
56
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
47
57
|
* <p>An internal server error exception object.</p>
|
|
48
58
|
*
|
|
59
|
+
* @throws {@link GuardDutyServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from GuardDuty service.</p>
|
|
49
61
|
*
|
|
50
62
|
*/
|
|
51
63
|
export declare class GetThreatIntelSetCommand extends $Command<GetThreatIntelSetCommandInput, GetThreatIntelSetCommandOutput, GuardDutyClientResolvedConfig> {
|
|
@@ -52,6 +52,57 @@ export interface GetUsageStatisticsCommandOutput extends GetUsageStatisticsRespo
|
|
|
52
52
|
* };
|
|
53
53
|
* const command = new GetUsageStatisticsCommand(input);
|
|
54
54
|
* const response = await client.send(command);
|
|
55
|
+
* // { // GetUsageStatisticsResponse
|
|
56
|
+
* // UsageStatistics: { // UsageStatistics
|
|
57
|
+
* // SumByAccount: [ // UsageAccountResultList
|
|
58
|
+
* // { // UsageAccountResult
|
|
59
|
+
* // AccountId: "STRING_VALUE",
|
|
60
|
+
* // Total: { // Total
|
|
61
|
+
* // Amount: "STRING_VALUE",
|
|
62
|
+
* // Unit: "STRING_VALUE",
|
|
63
|
+
* // },
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // SumByDataSource: [ // UsageDataSourceResultList
|
|
67
|
+
* // { // UsageDataSourceResult
|
|
68
|
+
* // DataSource: "FLOW_LOGS" || "CLOUD_TRAIL" || "DNS_LOGS" || "S3_LOGS" || "KUBERNETES_AUDIT_LOGS" || "EC2_MALWARE_SCAN",
|
|
69
|
+
* // Total: {
|
|
70
|
+
* // Amount: "STRING_VALUE",
|
|
71
|
+
* // Unit: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
73
|
+
* // },
|
|
74
|
+
* // ],
|
|
75
|
+
* // SumByResource: [ // UsageResourceResultList
|
|
76
|
+
* // { // UsageResourceResult
|
|
77
|
+
* // Resource: "STRING_VALUE",
|
|
78
|
+
* // Total: {
|
|
79
|
+
* // Amount: "STRING_VALUE",
|
|
80
|
+
* // Unit: "STRING_VALUE",
|
|
81
|
+
* // },
|
|
82
|
+
* // },
|
|
83
|
+
* // ],
|
|
84
|
+
* // TopResources: [
|
|
85
|
+
* // {
|
|
86
|
+
* // Resource: "STRING_VALUE",
|
|
87
|
+
* // Total: {
|
|
88
|
+
* // Amount: "STRING_VALUE",
|
|
89
|
+
* // Unit: "STRING_VALUE",
|
|
90
|
+
* // },
|
|
91
|
+
* // },
|
|
92
|
+
* // ],
|
|
93
|
+
* // SumByFeature: [ // UsageFeatureResultList
|
|
94
|
+
* // { // UsageFeatureResult
|
|
95
|
+
* // Feature: "FLOW_LOGS" || "CLOUD_TRAIL" || "DNS_LOGS" || "S3_DATA_EVENTS" || "EKS_AUDIT_LOGS" || "EBS_MALWARE_PROTECTION" || "RDS_LOGIN_EVENTS" || "LAMBDA_NETWORK_LOGS" || "EKS_RUNTIME_MONITORING",
|
|
96
|
+
* // Total: {
|
|
97
|
+
* // Amount: "STRING_VALUE",
|
|
98
|
+
* // Unit: "STRING_VALUE",
|
|
99
|
+
* // },
|
|
100
|
+
* // },
|
|
101
|
+
* // ],
|
|
102
|
+
* // },
|
|
103
|
+
* // NextToken: "STRING_VALUE",
|
|
104
|
+
* // };
|
|
105
|
+
*
|
|
55
106
|
* ```
|
|
56
107
|
*
|
|
57
108
|
* @param GetUsageStatisticsCommandInput - {@link GetUsageStatisticsCommandInput}
|
|
@@ -66,6 +117,8 @@ export interface GetUsageStatisticsCommandOutput extends GetUsageStatisticsRespo
|
|
|
66
117
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
67
118
|
* <p>An internal server error exception object.</p>
|
|
68
119
|
*
|
|
120
|
+
* @throws {@link GuardDutyServiceException}
|
|
121
|
+
* <p>Base exception class for all service exceptions from GuardDuty service.</p>
|
|
69
122
|
*
|
|
70
123
|
*/
|
|
71
124
|
export declare class GetUsageStatisticsCommand extends $Command<GetUsageStatisticsCommandInput, GetUsageStatisticsCommandOutput, GuardDutyClientResolvedConfig> {
|
|
@@ -38,6 +38,15 @@ export interface InviteMembersCommandOutput extends InviteMembersResponse, __Met
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new InviteMembersCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // InviteMembersResponse
|
|
42
|
+
* // UnprocessedAccounts: [ // UnprocessedAccounts // required
|
|
43
|
+
* // { // UnprocessedAccount
|
|
44
|
+
* // AccountId: "STRING_VALUE", // required
|
|
45
|
+
* // Result: "STRING_VALUE", // required
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
41
50
|
* ```
|
|
42
51
|
*
|
|
43
52
|
* @param InviteMembersCommandInput - {@link InviteMembersCommandInput}
|
|
@@ -52,6 +61,8 @@ export interface InviteMembersCommandOutput extends InviteMembersResponse, __Met
|
|
|
52
61
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
53
62
|
* <p>An internal server error exception object.</p>
|
|
54
63
|
*
|
|
64
|
+
* @throws {@link GuardDutyServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from GuardDuty service.</p>
|
|
55
66
|
*
|
|
56
67
|
*/
|
|
57
68
|
export declare class InviteMembersCommand extends $Command<InviteMembersCommandInput, InviteMembersCommandOutput, GuardDutyClientResolvedConfig> {
|
|
@@ -55,6 +55,32 @@ export interface ListCoverageCommandOutput extends ListCoverageResponse, __Metad
|
|
|
55
55
|
* };
|
|
56
56
|
* const command = new ListCoverageCommand(input);
|
|
57
57
|
* const response = await client.send(command);
|
|
58
|
+
* // { // ListCoverageResponse
|
|
59
|
+
* // Resources: [ // CoverageResources // required
|
|
60
|
+
* // { // CoverageResource
|
|
61
|
+
* // ResourceId: "STRING_VALUE",
|
|
62
|
+
* // DetectorId: "STRING_VALUE",
|
|
63
|
+
* // AccountId: "STRING_VALUE",
|
|
64
|
+
* // ResourceDetails: { // CoverageResourceDetails
|
|
65
|
+
* // EksClusterDetails: { // CoverageEksClusterDetails
|
|
66
|
+
* // ClusterName: "STRING_VALUE",
|
|
67
|
+
* // CoveredNodes: Number("long"),
|
|
68
|
+
* // CompatibleNodes: Number("long"),
|
|
69
|
+
* // AddonDetails: { // AddonDetails
|
|
70
|
+
* // AddonVersion: "STRING_VALUE",
|
|
71
|
+
* // AddonStatus: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
73
|
+
* // },
|
|
74
|
+
* // ResourceType: "EKS",
|
|
75
|
+
* // },
|
|
76
|
+
* // CoverageStatus: "HEALTHY" || "UNHEALTHY",
|
|
77
|
+
* // Issue: "STRING_VALUE",
|
|
78
|
+
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
79
|
+
* // },
|
|
80
|
+
* // ],
|
|
81
|
+
* // NextToken: "STRING_VALUE",
|
|
82
|
+
* // };
|
|
83
|
+
*
|
|
58
84
|
* ```
|
|
59
85
|
*
|
|
60
86
|
* @param ListCoverageCommandInput - {@link ListCoverageCommandInput}
|
|
@@ -69,6 +95,8 @@ export interface ListCoverageCommandOutput extends ListCoverageResponse, __Metad
|
|
|
69
95
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
70
96
|
* <p>An internal server error exception object.</p>
|
|
71
97
|
*
|
|
98
|
+
* @throws {@link GuardDutyServiceException}
|
|
99
|
+
* <p>Base exception class for all service exceptions from GuardDuty service.</p>
|
|
72
100
|
*
|
|
73
101
|
*/
|
|
74
102
|
export declare class ListCoverageCommand extends $Command<ListCoverageCommandInput, ListCoverageCommandOutput, GuardDutyClientResolvedConfig> {
|
|
@@ -32,6 +32,13 @@ export interface ListDetectorsCommandOutput extends ListDetectorsResponse, __Met
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListDetectorsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListDetectorsResponse
|
|
36
|
+
* // DetectorIds: [ // DetectorIds // required
|
|
37
|
+
* // "STRING_VALUE",
|
|
38
|
+
* // ],
|
|
39
|
+
* // NextToken: "STRING_VALUE",
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
35
42
|
* ```
|
|
36
43
|
*
|
|
37
44
|
* @param ListDetectorsCommandInput - {@link ListDetectorsCommandInput}
|
|
@@ -46,6 +53,8 @@ export interface ListDetectorsCommandOutput extends ListDetectorsResponse, __Met
|
|
|
46
53
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
47
54
|
* <p>An internal server error exception object.</p>
|
|
48
55
|
*
|
|
56
|
+
* @throws {@link GuardDutyServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from GuardDuty service.</p>
|
|
49
58
|
*
|
|
50
59
|
*/
|
|
51
60
|
export declare class ListDetectorsCommand extends $Command<ListDetectorsCommandInput, ListDetectorsCommandOutput, GuardDutyClientResolvedConfig> {
|
|
@@ -33,6 +33,13 @@ export interface ListFiltersCommandOutput extends ListFiltersResponse, __Metadat
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListFiltersCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListFiltersResponse
|
|
37
|
+
* // FilterNames: [ // FilterNames // required
|
|
38
|
+
* // "STRING_VALUE",
|
|
39
|
+
* // ],
|
|
40
|
+
* // NextToken: "STRING_VALUE",
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
36
43
|
* ```
|
|
37
44
|
*
|
|
38
45
|
* @param ListFiltersCommandInput - {@link ListFiltersCommandInput}
|
|
@@ -47,6 +54,8 @@ export interface ListFiltersCommandOutput extends ListFiltersResponse, __Metadat
|
|
|
47
54
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
48
55
|
* <p>An internal server error exception object.</p>
|
|
49
56
|
*
|
|
57
|
+
* @throws {@link GuardDutyServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from GuardDuty service.</p>
|
|
50
59
|
*
|
|
51
60
|
*/
|
|
52
61
|
export declare class ListFiltersCommand extends $Command<ListFiltersCommandInput, ListFiltersCommandOutput, GuardDutyClientResolvedConfig> {
|
|
@@ -63,6 +63,13 @@ export interface ListFindingsCommandOutput extends ListFindingsResponse, __Metad
|
|
|
63
63
|
* };
|
|
64
64
|
* const command = new ListFindingsCommand(input);
|
|
65
65
|
* const response = await client.send(command);
|
|
66
|
+
* // { // ListFindingsResponse
|
|
67
|
+
* // FindingIds: [ // FindingIds // required
|
|
68
|
+
* // "STRING_VALUE",
|
|
69
|
+
* // ],
|
|
70
|
+
* // NextToken: "STRING_VALUE",
|
|
71
|
+
* // };
|
|
72
|
+
*
|
|
66
73
|
* ```
|
|
67
74
|
*
|
|
68
75
|
* @param ListFindingsCommandInput - {@link ListFindingsCommandInput}
|
|
@@ -77,6 +84,8 @@ export interface ListFindingsCommandOutput extends ListFindingsResponse, __Metad
|
|
|
77
84
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
78
85
|
* <p>An internal server error exception object.</p>
|
|
79
86
|
*
|
|
87
|
+
* @throws {@link GuardDutyServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from GuardDuty service.</p>
|
|
80
89
|
*
|
|
81
90
|
*/
|
|
82
91
|
export declare class ListFindingsCommand extends $Command<ListFindingsCommandInput, ListFindingsCommandOutput, GuardDutyClientResolvedConfig> {
|
|
@@ -35,6 +35,13 @@ export interface ListIPSetsCommandOutput extends ListIPSetsResponse, __MetadataB
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new ListIPSetsCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // ListIPSetsResponse
|
|
39
|
+
* // IpSetIds: [ // IpSetIds // required
|
|
40
|
+
* // "STRING_VALUE",
|
|
41
|
+
* // ],
|
|
42
|
+
* // NextToken: "STRING_VALUE",
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
38
45
|
* ```
|
|
39
46
|
*
|
|
40
47
|
* @param ListIPSetsCommandInput - {@link ListIPSetsCommandInput}
|
|
@@ -49,6 +56,8 @@ export interface ListIPSetsCommandOutput extends ListIPSetsResponse, __MetadataB
|
|
|
49
56
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
50
57
|
* <p>An internal server error exception object.</p>
|
|
51
58
|
*
|
|
59
|
+
* @throws {@link GuardDutyServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from GuardDuty service.</p>
|
|
52
61
|
*
|
|
53
62
|
*/
|
|
54
63
|
export declare class ListIPSetsCommand extends $Command<ListIPSetsCommandInput, ListIPSetsCommandOutput, GuardDutyClientResolvedConfig> {
|
|
@@ -33,6 +33,18 @@ export interface ListInvitationsCommandOutput extends ListInvitationsResponse, _
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListInvitationsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListInvitationsResponse
|
|
37
|
+
* // Invitations: [ // Invitations
|
|
38
|
+
* // { // Invitation
|
|
39
|
+
* // AccountId: "STRING_VALUE",
|
|
40
|
+
* // InvitationId: "STRING_VALUE",
|
|
41
|
+
* // RelationshipStatus: "STRING_VALUE",
|
|
42
|
+
* // InvitedAt: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // NextToken: "STRING_VALUE",
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
36
48
|
* ```
|
|
37
49
|
*
|
|
38
50
|
* @param ListInvitationsCommandInput - {@link ListInvitationsCommandInput}
|
|
@@ -47,6 +59,8 @@ export interface ListInvitationsCommandOutput extends ListInvitationsResponse, _
|
|
|
47
59
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
48
60
|
* <p>An internal server error exception object.</p>
|
|
49
61
|
*
|
|
62
|
+
* @throws {@link GuardDutyServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from GuardDuty service.</p>
|
|
50
64
|
*
|
|
51
65
|
*/
|
|
52
66
|
export declare class ListInvitationsCommand extends $Command<ListInvitationsCommandInput, ListInvitationsCommandOutput, GuardDutyClientResolvedConfig> {
|
|
@@ -35,6 +35,22 @@ export interface ListMembersCommandOutput extends ListMembersResponse, __Metadat
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new ListMembersCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // ListMembersResponse
|
|
39
|
+
* // Members: [ // Members
|
|
40
|
+
* // { // Member
|
|
41
|
+
* // AccountId: "STRING_VALUE", // required
|
|
42
|
+
* // DetectorId: "STRING_VALUE",
|
|
43
|
+
* // MasterId: "STRING_VALUE", // required
|
|
44
|
+
* // Email: "STRING_VALUE", // required
|
|
45
|
+
* // RelationshipStatus: "STRING_VALUE", // required
|
|
46
|
+
* // InvitedAt: "STRING_VALUE",
|
|
47
|
+
* // UpdatedAt: "STRING_VALUE", // required
|
|
48
|
+
* // AdministratorId: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // NextToken: "STRING_VALUE",
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
38
54
|
* ```
|
|
39
55
|
*
|
|
40
56
|
* @param ListMembersCommandInput - {@link ListMembersCommandInput}
|
|
@@ -49,6 +65,8 @@ export interface ListMembersCommandOutput extends ListMembersResponse, __Metadat
|
|
|
49
65
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
50
66
|
* <p>An internal server error exception object.</p>
|
|
51
67
|
*
|
|
68
|
+
* @throws {@link GuardDutyServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from GuardDuty service.</p>
|
|
52
70
|
*
|
|
53
71
|
*/
|
|
54
72
|
export declare class ListMembersCommand extends $Command<ListMembersCommandInput, ListMembersCommandOutput, GuardDutyClientResolvedConfig> {
|
|
@@ -32,6 +32,16 @@ export interface ListOrganizationAdminAccountsCommandOutput extends ListOrganiza
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListOrganizationAdminAccountsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListOrganizationAdminAccountsResponse
|
|
36
|
+
* // AdminAccounts: [ // AdminAccounts
|
|
37
|
+
* // { // AdminAccount
|
|
38
|
+
* // AdminAccountId: "STRING_VALUE",
|
|
39
|
+
* // AdminStatus: "ENABLED" || "DISABLE_IN_PROGRESS",
|
|
40
|
+
* // },
|
|
41
|
+
* // ],
|
|
42
|
+
* // NextToken: "STRING_VALUE",
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
35
45
|
* ```
|
|
36
46
|
*
|
|
37
47
|
* @param ListOrganizationAdminAccountsCommandInput - {@link ListOrganizationAdminAccountsCommandInput}
|
|
@@ -46,6 +56,8 @@ export interface ListOrganizationAdminAccountsCommandOutput extends ListOrganiza
|
|
|
46
56
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
47
57
|
* <p>An internal server error exception object.</p>
|
|
48
58
|
*
|
|
59
|
+
* @throws {@link GuardDutyServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from GuardDuty service.</p>
|
|
49
61
|
*
|
|
50
62
|
*/
|
|
51
63
|
export declare class ListOrganizationAdminAccountsCommand extends $Command<ListOrganizationAdminAccountsCommandInput, ListOrganizationAdminAccountsCommandOutput, GuardDutyClientResolvedConfig> {
|