@aws-sdk/client-guardduty 3.679.0 → 3.686.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 +1 -1
- package/dist-cjs/index.js +12 -0
- package/dist-es/protocols/Aws_restJson1.js +12 -0
- package/dist-types/commands/GetFindingsCommand.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +109 -24
- package/dist-types/models/models_1.d.ts +67 -1
- package/dist-types/ts3.4/models/models_0.d.ts +10 -4
- package/dist-types/ts3.4/models/models_1.d.ts +5 -1
- package/package.json +35 -35
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ GuardDuty User Guide</a>
|
|
|
29
29
|
|
|
30
30
|
## Installing
|
|
31
31
|
|
|
32
|
-
To install
|
|
32
|
+
To install this package, simply type add or install @aws-sdk/client-guardduty
|
|
33
33
|
using your favorite package manager:
|
|
34
34
|
|
|
35
35
|
- `npm install @aws-sdk/client-guardduty`
|
package/dist-cjs/index.js
CHANGED
|
@@ -4485,6 +4485,17 @@ var de_RdsDbUserDetails = /* @__PURE__ */ __name((output, context) => {
|
|
|
4485
4485
|
User: [, import_smithy_client.expectString, `user`]
|
|
4486
4486
|
});
|
|
4487
4487
|
}, "de_RdsDbUserDetails");
|
|
4488
|
+
var de_RdsLimitlessDbDetails = /* @__PURE__ */ __name((output, context) => {
|
|
4489
|
+
return (0, import_smithy_client.take)(output, {
|
|
4490
|
+
DbClusterIdentifier: [, import_smithy_client.expectString, `dbClusterIdentifier`],
|
|
4491
|
+
DbShardGroupArn: [, import_smithy_client.expectString, `dbShardGroupArn`],
|
|
4492
|
+
DbShardGroupIdentifier: [, import_smithy_client.expectString, `dbShardGroupIdentifier`],
|
|
4493
|
+
DbShardGroupResourceId: [, import_smithy_client.expectString, `dbShardGroupResourceId`],
|
|
4494
|
+
Engine: [, import_smithy_client.expectString, `engine`],
|
|
4495
|
+
EngineVersion: [, import_smithy_client.expectString, `engineVersion`],
|
|
4496
|
+
Tags: [, (_) => de_Tags(_, context), `tags`]
|
|
4497
|
+
});
|
|
4498
|
+
}, "de_RdsLimitlessDbDetails");
|
|
4488
4499
|
var de_RdsLoginAttemptAction = /* @__PURE__ */ __name((output, context) => {
|
|
4489
4500
|
return (0, import_smithy_client.take)(output, {
|
|
4490
4501
|
LoginAttributes: (_) => de_LoginAttributes(_, context),
|
|
@@ -4525,6 +4536,7 @@ var de_Resource = /* @__PURE__ */ __name((output, context) => {
|
|
|
4525
4536
|
LambdaDetails: [, (_) => de_LambdaDetails(_, context), `lambdaDetails`],
|
|
4526
4537
|
RdsDbInstanceDetails: [, (_) => de_RdsDbInstanceDetails(_, context), `rdsDbInstanceDetails`],
|
|
4527
4538
|
RdsDbUserDetails: [, (_) => de_RdsDbUserDetails(_, context), `rdsDbUserDetails`],
|
|
4539
|
+
RdsLimitlessDbDetails: [, (_) => de_RdsLimitlessDbDetails(_, context), `rdsLimitlessDbDetails`],
|
|
4528
4540
|
ResourceType: [, import_smithy_client.expectString, `resourceType`],
|
|
4529
4541
|
S3BucketDetails: [, (_) => de_S3BucketDetails(_, context), `s3BucketDetails`]
|
|
4530
4542
|
});
|
|
@@ -3698,6 +3698,17 @@ const de_RdsDbUserDetails = (output, context) => {
|
|
|
3698
3698
|
User: [, __expectString, `user`],
|
|
3699
3699
|
});
|
|
3700
3700
|
};
|
|
3701
|
+
const de_RdsLimitlessDbDetails = (output, context) => {
|
|
3702
|
+
return take(output, {
|
|
3703
|
+
DbClusterIdentifier: [, __expectString, `dbClusterIdentifier`],
|
|
3704
|
+
DbShardGroupArn: [, __expectString, `dbShardGroupArn`],
|
|
3705
|
+
DbShardGroupIdentifier: [, __expectString, `dbShardGroupIdentifier`],
|
|
3706
|
+
DbShardGroupResourceId: [, __expectString, `dbShardGroupResourceId`],
|
|
3707
|
+
Engine: [, __expectString, `engine`],
|
|
3708
|
+
EngineVersion: [, __expectString, `engineVersion`],
|
|
3709
|
+
Tags: [, (_) => de_Tags(_, context), `tags`],
|
|
3710
|
+
});
|
|
3711
|
+
};
|
|
3701
3712
|
const de_RdsLoginAttemptAction = (output, context) => {
|
|
3702
3713
|
return take(output, {
|
|
3703
3714
|
LoginAttributes: (_) => de_LoginAttributes(_, context),
|
|
@@ -3738,6 +3749,7 @@ const de_Resource = (output, context) => {
|
|
|
3738
3749
|
LambdaDetails: [, (_) => de_LambdaDetails(_, context), `lambdaDetails`],
|
|
3739
3750
|
RdsDbInstanceDetails: [, (_) => de_RdsDbInstanceDetails(_, context), `rdsDbInstanceDetails`],
|
|
3740
3751
|
RdsDbUserDetails: [, (_) => de_RdsDbUserDetails(_, context), `rdsDbUserDetails`],
|
|
3752
|
+
RdsLimitlessDbDetails: [, (_) => de_RdsLimitlessDbDetails(_, context), `rdsLimitlessDbDetails`],
|
|
3741
3753
|
ResourceType: [, __expectString, `resourceType`],
|
|
3742
3754
|
S3BucketDetails: [, (_) => de_S3BucketDetails(_, context), `s3BucketDetails`],
|
|
3743
3755
|
});
|
|
@@ -351,6 +351,15 @@ declare const GetFindingsCommand_base: {
|
|
|
351
351
|
* // DbInstanceArn: "STRING_VALUE",
|
|
352
352
|
* // Tags: "<Tags>",
|
|
353
353
|
* // },
|
|
354
|
+
* // RdsLimitlessDbDetails: { // RdsLimitlessDbDetails
|
|
355
|
+
* // DbShardGroupIdentifier: "STRING_VALUE",
|
|
356
|
+
* // DbShardGroupResourceId: "STRING_VALUE",
|
|
357
|
+
* // DbShardGroupArn: "STRING_VALUE",
|
|
358
|
+
* // Engine: "STRING_VALUE",
|
|
359
|
+
* // EngineVersion: "STRING_VALUE",
|
|
360
|
+
* // DbClusterIdentifier: "STRING_VALUE",
|
|
361
|
+
* // Tags: "<Tags>",
|
|
362
|
+
* // },
|
|
354
363
|
* // RdsDbUserDetails: { // RdsDbUserDetails
|
|
355
364
|
* // User: "STRING_VALUE",
|
|
356
365
|
* // Application: "STRING_VALUE",
|
|
@@ -77,6 +77,8 @@ export declare class InternalServerErrorException extends __BaseException {
|
|
|
77
77
|
export interface AcceptInvitationRequest {
|
|
78
78
|
/**
|
|
79
79
|
* <p>The unique ID of the detector of the GuardDuty member account.</p>
|
|
80
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
81
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
80
82
|
* @public
|
|
81
83
|
*/
|
|
82
84
|
DetectorId: string | undefined;
|
|
@@ -1141,6 +1143,8 @@ export interface ArchiveFindingsRequest {
|
|
|
1141
1143
|
/**
|
|
1142
1144
|
* <p>The ID of the detector that specifies the GuardDuty service whose findings you want to
|
|
1143
1145
|
* archive.</p>
|
|
1146
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
1147
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
1144
1148
|
* @public
|
|
1145
1149
|
*/
|
|
1146
1150
|
DetectorId: string | undefined;
|
|
@@ -2155,6 +2159,8 @@ export interface FindingCriteria {
|
|
|
2155
2159
|
export interface CreateFilterRequest {
|
|
2156
2160
|
/**
|
|
2157
2161
|
* <p>The detector ID associated with the GuardDuty account for which you want to create a filter.</p>
|
|
2162
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
2163
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
2158
2164
|
* @public
|
|
2159
2165
|
*/
|
|
2160
2166
|
DetectorId: string | undefined;
|
|
@@ -2543,6 +2549,8 @@ export type IpSetFormat = (typeof IpSetFormat)[keyof typeof IpSetFormat];
|
|
|
2543
2549
|
export interface CreateIPSetRequest {
|
|
2544
2550
|
/**
|
|
2545
2551
|
* <p>The unique ID of the detector of the GuardDuty account for which you want to create an IPSet.</p>
|
|
2552
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
2553
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
2546
2554
|
* @public
|
|
2547
2555
|
*/
|
|
2548
2556
|
DetectorId: string | undefined;
|
|
@@ -2704,6 +2712,8 @@ export interface CreateMembersRequest {
|
|
|
2704
2712
|
/**
|
|
2705
2713
|
* <p>The unique ID of the detector of the GuardDuty account for which you want to associate member
|
|
2706
2714
|
* accounts.</p>
|
|
2715
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
2716
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
2707
2717
|
* @public
|
|
2708
2718
|
*/
|
|
2709
2719
|
DetectorId: string | undefined;
|
|
@@ -2778,6 +2788,8 @@ export type DestinationType = (typeof DestinationType)[keyof typeof DestinationT
|
|
|
2778
2788
|
export interface CreatePublishingDestinationRequest {
|
|
2779
2789
|
/**
|
|
2780
2790
|
* <p>The ID of the GuardDuty detector associated with the publishing destination.</p>
|
|
2791
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
2792
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
2781
2793
|
* @public
|
|
2782
2794
|
*/
|
|
2783
2795
|
DetectorId: string | undefined;
|
|
@@ -2815,6 +2827,8 @@ export interface CreatePublishingDestinationResponse {
|
|
|
2815
2827
|
export interface CreateSampleFindingsRequest {
|
|
2816
2828
|
/**
|
|
2817
2829
|
* <p>The ID of the detector for which you need to create sample findings.</p>
|
|
2830
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
2831
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
2818
2832
|
* @public
|
|
2819
2833
|
*/
|
|
2820
2834
|
DetectorId: string | undefined;
|
|
@@ -2852,6 +2866,8 @@ export interface CreateThreatIntelSetRequest {
|
|
|
2852
2866
|
/**
|
|
2853
2867
|
* <p>The unique ID of the detector of the GuardDuty account for which you want to create a
|
|
2854
2868
|
* <code>ThreatIntelSet</code>.</p>
|
|
2869
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
2870
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
2855
2871
|
* @public
|
|
2856
2872
|
*/
|
|
2857
2873
|
DetectorId: string | undefined;
|
|
@@ -3100,6 +3116,8 @@ export interface DefaultServerSideEncryption {
|
|
|
3100
3116
|
export interface DeleteDetectorRequest {
|
|
3101
3117
|
/**
|
|
3102
3118
|
* <p>The unique ID of the detector that you want to delete.</p>
|
|
3119
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
3120
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
3103
3121
|
* @public
|
|
3104
3122
|
*/
|
|
3105
3123
|
DetectorId: string | undefined;
|
|
@@ -3115,6 +3133,8 @@ export interface DeleteDetectorResponse {
|
|
|
3115
3133
|
export interface DeleteFilterRequest {
|
|
3116
3134
|
/**
|
|
3117
3135
|
* <p>The unique ID of the detector that is associated with the filter.</p>
|
|
3136
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
3137
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
3118
3138
|
* @public
|
|
3119
3139
|
*/
|
|
3120
3140
|
DetectorId: string | undefined;
|
|
@@ -3157,6 +3177,8 @@ export interface DeleteInvitationsResponse {
|
|
|
3157
3177
|
export interface DeleteIPSetRequest {
|
|
3158
3178
|
/**
|
|
3159
3179
|
* <p>The unique ID of the detector associated with the IPSet.</p>
|
|
3180
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
3181
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
3160
3182
|
* @public
|
|
3161
3183
|
*/
|
|
3162
3184
|
DetectorId: string | undefined;
|
|
@@ -3210,6 +3232,8 @@ export interface DeleteMembersRequest {
|
|
|
3210
3232
|
/**
|
|
3211
3233
|
* <p>The unique ID of the detector of the GuardDuty account whose members you want to
|
|
3212
3234
|
* delete.</p>
|
|
3235
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
3236
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
3213
3237
|
* @public
|
|
3214
3238
|
*/
|
|
3215
3239
|
DetectorId: string | undefined;
|
|
@@ -3235,6 +3259,8 @@ export interface DeleteMembersResponse {
|
|
|
3235
3259
|
export interface DeletePublishingDestinationRequest {
|
|
3236
3260
|
/**
|
|
3237
3261
|
* <p>The unique ID of the detector associated with the publishing destination to delete.</p>
|
|
3262
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
3263
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
3238
3264
|
* @public
|
|
3239
3265
|
*/
|
|
3240
3266
|
DetectorId: string | undefined;
|
|
@@ -3255,6 +3281,8 @@ export interface DeletePublishingDestinationResponse {
|
|
|
3255
3281
|
export interface DeleteThreatIntelSetRequest {
|
|
3256
3282
|
/**
|
|
3257
3283
|
* <p>The unique ID of the detector that is associated with the threatIntelSet.</p>
|
|
3284
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
3285
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
3258
3286
|
* @public
|
|
3259
3287
|
*/
|
|
3260
3288
|
DetectorId: string | undefined;
|
|
@@ -3353,6 +3381,8 @@ export interface SortCriteria {
|
|
|
3353
3381
|
export interface DescribeMalwareScansRequest {
|
|
3354
3382
|
/**
|
|
3355
3383
|
* <p>The unique ID of the detector that the request is associated with.</p>
|
|
3384
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
3385
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
3356
3386
|
* @public
|
|
3357
3387
|
*/
|
|
3358
3388
|
DetectorId: string | undefined;
|
|
@@ -3508,6 +3538,8 @@ export interface TriggerDetails {
|
|
|
3508
3538
|
export interface Scan {
|
|
3509
3539
|
/**
|
|
3510
3540
|
* <p>The unique ID of the detector that the request is associated with.</p>
|
|
3541
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
3542
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
3511
3543
|
* @public
|
|
3512
3544
|
*/
|
|
3513
3545
|
DetectorId?: string;
|
|
@@ -3515,6 +3547,8 @@ export interface Scan {
|
|
|
3515
3547
|
* <p>The unique detector ID of the administrator account that the request is associated with.
|
|
3516
3548
|
* If the account is an administrator, the <code>AdminDetectorId</code> will be the same as the one used for
|
|
3517
3549
|
* <code>DetectorId</code>.</p>
|
|
3550
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
3551
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
3518
3552
|
* @public
|
|
3519
3553
|
*/
|
|
3520
3554
|
AdminDetectorId?: string;
|
|
@@ -3606,6 +3640,8 @@ export interface DescribeMalwareScansResponse {
|
|
|
3606
3640
|
export interface DescribeOrganizationConfigurationRequest {
|
|
3607
3641
|
/**
|
|
3608
3642
|
* <p>The detector ID of the delegated administrator for which you need to retrieve the information.</p>
|
|
3643
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
3644
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
3609
3645
|
* @public
|
|
3610
3646
|
*/
|
|
3611
3647
|
DetectorId: string | undefined;
|
|
@@ -3929,6 +3965,8 @@ export interface DescribePublishingDestinationRequest {
|
|
|
3929
3965
|
/**
|
|
3930
3966
|
* <p>The unique ID of the detector associated with the publishing destination to
|
|
3931
3967
|
* retrieve.</p>
|
|
3968
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
3969
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
3932
3970
|
* @public
|
|
3933
3971
|
*/
|
|
3934
3972
|
DetectorId: string | undefined;
|
|
@@ -4410,17 +4448,17 @@ export interface EbsVolumeScanDetails {
|
|
|
4410
4448
|
ScanType?: ScanType;
|
|
4411
4449
|
}
|
|
4412
4450
|
/**
|
|
4413
|
-
* <p>Contains information about a tag
|
|
4451
|
+
* <p>Contains information about a tag key-value pair.</p>
|
|
4414
4452
|
* @public
|
|
4415
4453
|
*/
|
|
4416
4454
|
export interface Tag {
|
|
4417
4455
|
/**
|
|
4418
|
-
* <p>
|
|
4456
|
+
* <p>Describes the key associated with the tag.</p>
|
|
4419
4457
|
* @public
|
|
4420
4458
|
*/
|
|
4421
4459
|
Key?: string;
|
|
4422
4460
|
/**
|
|
4423
|
-
* <p>
|
|
4461
|
+
* <p>Describes the value associated with the tag key.</p>
|
|
4424
4462
|
* @public
|
|
4425
4463
|
*/
|
|
4426
4464
|
Value?: string;
|
|
@@ -5081,7 +5119,7 @@ export interface RdsDbInstanceDetails {
|
|
|
5081
5119
|
*/
|
|
5082
5120
|
DbInstanceArn?: string;
|
|
5083
5121
|
/**
|
|
5084
|
-
* <p>
|
|
5122
|
+
* <p>Information about the tag key-value pairs.</p>
|
|
5085
5123
|
* @public
|
|
5086
5124
|
*/
|
|
5087
5125
|
Tags?: Tag[];
|
|
@@ -5118,6 +5156,48 @@ export interface RdsDbUserDetails {
|
|
|
5118
5156
|
*/
|
|
5119
5157
|
AuthMethod?: string;
|
|
5120
5158
|
}
|
|
5159
|
+
/**
|
|
5160
|
+
* <p>Contains information about the resource type <code>RDSLimitlessDB</code> that is involved in a GuardDuty
|
|
5161
|
+
* finding.</p>
|
|
5162
|
+
* @public
|
|
5163
|
+
*/
|
|
5164
|
+
export interface RdsLimitlessDbDetails {
|
|
5165
|
+
/**
|
|
5166
|
+
* <p>The name associated with the Limitless DB shard group.</p>
|
|
5167
|
+
* @public
|
|
5168
|
+
*/
|
|
5169
|
+
DbShardGroupIdentifier?: string;
|
|
5170
|
+
/**
|
|
5171
|
+
* <p>The resource identifier of the DB shard group within the Limitless Database.</p>
|
|
5172
|
+
* @public
|
|
5173
|
+
*/
|
|
5174
|
+
DbShardGroupResourceId?: string;
|
|
5175
|
+
/**
|
|
5176
|
+
* <p>The Amazon Resource Name (ARN) that identifies the DB shard group.</p>
|
|
5177
|
+
* @public
|
|
5178
|
+
*/
|
|
5179
|
+
DbShardGroupArn?: string;
|
|
5180
|
+
/**
|
|
5181
|
+
* <p>The database engine of the database instance involved in the finding.</p>
|
|
5182
|
+
* @public
|
|
5183
|
+
*/
|
|
5184
|
+
Engine?: string;
|
|
5185
|
+
/**
|
|
5186
|
+
* <p>The version of the database engine.</p>
|
|
5187
|
+
* @public
|
|
5188
|
+
*/
|
|
5189
|
+
EngineVersion?: string;
|
|
5190
|
+
/**
|
|
5191
|
+
* <p>The name of the database cluster that is a part of the Limitless Database.</p>
|
|
5192
|
+
* @public
|
|
5193
|
+
*/
|
|
5194
|
+
DbClusterIdentifier?: string;
|
|
5195
|
+
/**
|
|
5196
|
+
* <p>Information about the tag-key value pair.</p>
|
|
5197
|
+
* @public
|
|
5198
|
+
*/
|
|
5199
|
+
Tags?: Tag[];
|
|
5200
|
+
}
|
|
5121
5201
|
/**
|
|
5122
5202
|
* <p>Contains information on the owner of the bucket.</p>
|
|
5123
5203
|
* @public
|
|
@@ -5307,6 +5387,11 @@ export interface Resource {
|
|
|
5307
5387
|
* @public
|
|
5308
5388
|
*/
|
|
5309
5389
|
RdsDbInstanceDetails?: RdsDbInstanceDetails;
|
|
5390
|
+
/**
|
|
5391
|
+
* <p>Contains information about the RDS Limitless database that was involved in a GuardDuty finding.</p>
|
|
5392
|
+
* @public
|
|
5393
|
+
*/
|
|
5394
|
+
RdsLimitlessDbDetails?: RdsLimitlessDbDetails;
|
|
5310
5395
|
/**
|
|
5311
5396
|
* <p>Contains information about the user details through which anomalous login attempt was
|
|
5312
5397
|
* made.</p>
|
|
@@ -6039,6 +6124,8 @@ export interface GetAdministratorAccountResponse {
|
|
|
6039
6124
|
export interface GetCoverageStatisticsRequest {
|
|
6040
6125
|
/**
|
|
6041
6126
|
* <p>The unique ID of the GuardDuty detector.</p>
|
|
6127
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
6128
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
6042
6129
|
* @public
|
|
6043
6130
|
*/
|
|
6044
6131
|
DetectorId: string | undefined;
|
|
@@ -6070,6 +6157,8 @@ export interface GetCoverageStatisticsResponse {
|
|
|
6070
6157
|
export interface GetDetectorRequest {
|
|
6071
6158
|
/**
|
|
6072
6159
|
* <p>The unique ID of the detector that you want to get.</p>
|
|
6160
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
6161
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
6073
6162
|
* @public
|
|
6074
6163
|
*/
|
|
6075
6164
|
DetectorId: string | undefined;
|
|
@@ -6127,6 +6216,8 @@ export interface GetDetectorResponse {
|
|
|
6127
6216
|
export interface GetFilterRequest {
|
|
6128
6217
|
/**
|
|
6129
6218
|
* <p>The unique ID of the detector that is associated with this filter.</p>
|
|
6219
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
6220
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
6130
6221
|
* @public
|
|
6131
6222
|
*/
|
|
6132
6223
|
DetectorId: string | undefined;
|
|
@@ -6179,6 +6270,8 @@ export interface GetFindingsRequest {
|
|
|
6179
6270
|
/**
|
|
6180
6271
|
* <p>The ID of the detector that specifies the GuardDuty service whose findings you want to
|
|
6181
6272
|
* retrieve.</p>
|
|
6273
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
6274
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
6182
6275
|
* @public
|
|
6183
6276
|
*/
|
|
6184
6277
|
DetectorId: string | undefined;
|
|
@@ -6225,6 +6318,8 @@ export interface GetFindingsStatisticsRequest {
|
|
|
6225
6318
|
/**
|
|
6226
6319
|
* <p>The ID of the detector whose findings statistics you
|
|
6227
6320
|
* want to retrieve.</p>
|
|
6321
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
6322
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
6228
6323
|
* @public
|
|
6229
6324
|
*/
|
|
6230
6325
|
DetectorId: string | undefined;
|
|
@@ -6296,6 +6391,8 @@ export interface GetInvitationsCountResponse {
|
|
|
6296
6391
|
export interface GetIPSetRequest {
|
|
6297
6392
|
/**
|
|
6298
6393
|
* <p>The unique ID of the detector that is associated with the IPSet.</p>
|
|
6394
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
6395
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
6299
6396
|
* @public
|
|
6300
6397
|
*/
|
|
6301
6398
|
DetectorId: string | undefined;
|
|
@@ -6450,6 +6547,8 @@ export interface GetMalwareProtectionPlanResponse {
|
|
|
6450
6547
|
export interface GetMalwareScanSettingsRequest {
|
|
6451
6548
|
/**
|
|
6452
6549
|
* <p>The unique ID of the detector that is associated with this scan.</p>
|
|
6550
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
6551
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
6453
6552
|
* @public
|
|
6454
6553
|
*/
|
|
6455
6554
|
DetectorId: string | undefined;
|
|
@@ -6536,6 +6635,8 @@ export interface GetMalwareScanSettingsResponse {
|
|
|
6536
6635
|
export interface GetMasterAccountRequest {
|
|
6537
6636
|
/**
|
|
6538
6637
|
* <p>The unique ID of the detector of the GuardDuty member account.</p>
|
|
6638
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
6639
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
6539
6640
|
* @public
|
|
6540
6641
|
*/
|
|
6541
6642
|
DetectorId: string | undefined;
|
|
@@ -6582,6 +6683,8 @@ export interface GetMasterAccountResponse {
|
|
|
6582
6683
|
export interface GetMemberDetectorsRequest {
|
|
6583
6684
|
/**
|
|
6584
6685
|
* <p>The detector ID for the administrator account.</p>
|
|
6686
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
6687
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
6585
6688
|
* @public
|
|
6586
6689
|
*/
|
|
6587
6690
|
DetectorId: string | undefined;
|
|
@@ -6688,6 +6791,8 @@ export interface GetMembersRequest {
|
|
|
6688
6791
|
/**
|
|
6689
6792
|
* <p>The unique ID of the detector of the GuardDuty account whose members you want to
|
|
6690
6793
|
* retrieve.</p>
|
|
6794
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
6795
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
6691
6796
|
* @public
|
|
6692
6797
|
*/
|
|
6693
6798
|
DetectorId: string | undefined;
|
|
@@ -6840,26 +6945,6 @@ export interface OrganizationStatistics {
|
|
|
6840
6945
|
*/
|
|
6841
6946
|
CountByFeature?: OrganizationFeatureStatistics[];
|
|
6842
6947
|
}
|
|
6843
|
-
/**
|
|
6844
|
-
* <p>Information about GuardDuty coverage statistics for members
|
|
6845
|
-
* in your Amazon Web Services organization.</p>
|
|
6846
|
-
* @public
|
|
6847
|
-
*/
|
|
6848
|
-
export interface OrganizationDetails {
|
|
6849
|
-
/**
|
|
6850
|
-
* <p>The timestamp at which the organization statistics
|
|
6851
|
-
* was last updated. This is in
|
|
6852
|
-
* UTC format.</p>
|
|
6853
|
-
* @public
|
|
6854
|
-
*/
|
|
6855
|
-
UpdatedAt?: Date;
|
|
6856
|
-
/**
|
|
6857
|
-
* <p>Information about the GuardDuty coverage statistics
|
|
6858
|
-
* for members in your Amazon Web Services organization.</p>
|
|
6859
|
-
* @public
|
|
6860
|
-
*/
|
|
6861
|
-
OrganizationStatistics?: OrganizationStatistics;
|
|
6862
|
-
}
|
|
6863
6948
|
/**
|
|
6864
6949
|
* @internal
|
|
6865
6950
|
*/
|
|
@@ -1,4 +1,24 @@
|
|
|
1
|
-
import { AccountFreeTrialInfo, AdminAccount, AutoEnableMembers, CoverageFilterCriteria, CoverageResource, CoverageSortCriteria, DataSource, DataSourceConfigurations, Destination, DestinationProperties, DetectorFeatureConfiguration, EbsSnapshotPreservation, FeatureStatus, Feedback, FilterAction, FindingCriteria, FindingPublishingFrequency, MalwareProtectionPlanActions, Member,
|
|
1
|
+
import { AccountFreeTrialInfo, AdminAccount, AutoEnableMembers, CoverageFilterCriteria, CoverageResource, CoverageSortCriteria, DataSource, DataSourceConfigurations, Destination, DestinationProperties, DetectorFeatureConfiguration, EbsSnapshotPreservation, FeatureStatus, Feedback, FilterAction, FindingCriteria, FindingPublishingFrequency, MalwareProtectionPlanActions, Member, OrganizationStatistics, OrgFeature, OrgFeatureAdditionalConfiguration, OrgFeatureStatus, ScanResourceCriteria, SortCriteria, ThreatIntelSetFormat, UnprocessedAccount } from "./models_0";
|
|
2
|
+
/**
|
|
3
|
+
* <p>Information about GuardDuty coverage statistics for members
|
|
4
|
+
* in your Amazon Web Services organization.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface OrganizationDetails {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The timestamp at which the organization statistics
|
|
10
|
+
* was last updated. This is in
|
|
11
|
+
* UTC format.</p>
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
UpdatedAt?: Date;
|
|
15
|
+
/**
|
|
16
|
+
* <p>Information about the GuardDuty coverage statistics
|
|
17
|
+
* for members in your Amazon Web Services organization.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
OrganizationStatistics?: OrganizationStatistics;
|
|
21
|
+
}
|
|
2
22
|
/**
|
|
3
23
|
* @public
|
|
4
24
|
*/
|
|
@@ -15,6 +35,8 @@ export interface GetOrganizationStatisticsResponse {
|
|
|
15
35
|
export interface GetRemainingFreeTrialDaysRequest {
|
|
16
36
|
/**
|
|
17
37
|
* <p>The unique ID of the detector of the GuardDuty member account.</p>
|
|
38
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
39
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
18
40
|
* @public
|
|
19
41
|
*/
|
|
20
42
|
DetectorId: string | undefined;
|
|
@@ -47,6 +69,8 @@ export interface GetRemainingFreeTrialDaysResponse {
|
|
|
47
69
|
export interface GetThreatIntelSetRequest {
|
|
48
70
|
/**
|
|
49
71
|
* <p>The unique ID of the detector that is associated with the threatIntelSet.</p>
|
|
72
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
73
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
50
74
|
* @public
|
|
51
75
|
*/
|
|
52
76
|
DetectorId: string | undefined;
|
|
@@ -179,6 +203,8 @@ export interface GetUsageStatisticsRequest {
|
|
|
179
203
|
/**
|
|
180
204
|
* <p>The ID of the detector that specifies the GuardDuty service whose usage statistics you
|
|
181
205
|
* want to retrieve.</p>
|
|
206
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
207
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
182
208
|
* @public
|
|
183
209
|
*/
|
|
184
210
|
DetectorId: string | undefined;
|
|
@@ -392,6 +418,8 @@ export interface GetUsageStatisticsResponse {
|
|
|
392
418
|
export interface InviteMembersRequest {
|
|
393
419
|
/**
|
|
394
420
|
* <p>The unique ID of the detector of the GuardDuty account with which you want to invite members.</p>
|
|
421
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
422
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
395
423
|
* @public
|
|
396
424
|
*/
|
|
397
425
|
DetectorId: string | undefined;
|
|
@@ -431,6 +459,8 @@ export interface InviteMembersResponse {
|
|
|
431
459
|
export interface ListCoverageRequest {
|
|
432
460
|
/**
|
|
433
461
|
* <p>The unique ID of the detector whose coverage details you want to retrieve.</p>
|
|
462
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
463
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
434
464
|
* @public
|
|
435
465
|
*/
|
|
436
466
|
DetectorId: string | undefined;
|
|
@@ -515,6 +545,8 @@ export interface ListDetectorsResponse {
|
|
|
515
545
|
export interface ListFiltersRequest {
|
|
516
546
|
/**
|
|
517
547
|
* <p>The unique ID of the detector that is associated with the filter.</p>
|
|
548
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
549
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
518
550
|
* @public
|
|
519
551
|
*/
|
|
520
552
|
DetectorId: string | undefined;
|
|
@@ -556,6 +588,8 @@ export interface ListFindingsRequest {
|
|
|
556
588
|
/**
|
|
557
589
|
* <p>The ID of the detector that specifies the GuardDuty service whose findings you want to
|
|
558
590
|
* list.</p>
|
|
591
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
592
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
559
593
|
* @public
|
|
560
594
|
*/
|
|
561
595
|
DetectorId: string | undefined;
|
|
@@ -824,6 +858,8 @@ export interface ListInvitationsResponse {
|
|
|
824
858
|
export interface ListIPSetsRequest {
|
|
825
859
|
/**
|
|
826
860
|
* <p>The unique ID of the detector that is associated with IPSet.</p>
|
|
861
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
862
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
827
863
|
* @public
|
|
828
864
|
*/
|
|
829
865
|
DetectorId: string | undefined;
|
|
@@ -908,6 +944,8 @@ export interface ListMalwareProtectionPlansResponse {
|
|
|
908
944
|
export interface ListMembersRequest {
|
|
909
945
|
/**
|
|
910
946
|
* <p>The unique ID of the detector that is associated with the member.</p>
|
|
947
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
948
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
911
949
|
* @public
|
|
912
950
|
*/
|
|
913
951
|
DetectorId: string | undefined;
|
|
@@ -996,6 +1034,8 @@ export interface ListOrganizationAdminAccountsResponse {
|
|
|
996
1034
|
export interface ListPublishingDestinationsRequest {
|
|
997
1035
|
/**
|
|
998
1036
|
* <p>The detector ID for which you want to retrieve the publishing destination.</p>
|
|
1037
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
1038
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
999
1039
|
* @public
|
|
1000
1040
|
*/
|
|
1001
1041
|
DetectorId: string | undefined;
|
|
@@ -1058,6 +1098,8 @@ export interface ListTagsForResourceResponse {
|
|
|
1058
1098
|
export interface ListThreatIntelSetsRequest {
|
|
1059
1099
|
/**
|
|
1060
1100
|
* <p>The unique ID of the detector that is associated with the threatIntelSet.</p>
|
|
1101
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
1102
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
1061
1103
|
* @public
|
|
1062
1104
|
*/
|
|
1063
1105
|
DetectorId: string | undefined;
|
|
@@ -1120,6 +1162,8 @@ export interface StartMonitoringMembersRequest {
|
|
|
1120
1162
|
/**
|
|
1121
1163
|
* <p>The unique ID of the detector of the GuardDuty administrator account associated with the
|
|
1122
1164
|
* member accounts to monitor.</p>
|
|
1165
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
1166
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
1123
1167
|
* @public
|
|
1124
1168
|
*/
|
|
1125
1169
|
DetectorId: string | undefined;
|
|
@@ -1147,6 +1191,8 @@ export interface StopMonitoringMembersRequest {
|
|
|
1147
1191
|
/**
|
|
1148
1192
|
* <p>The unique ID of the detector associated with the GuardDuty administrator account that is
|
|
1149
1193
|
* monitoring member accounts.</p>
|
|
1194
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
1195
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
1150
1196
|
* @public
|
|
1151
1197
|
*/
|
|
1152
1198
|
DetectorId: string | undefined;
|
|
@@ -1193,6 +1239,8 @@ export interface TagResourceResponse {
|
|
|
1193
1239
|
export interface UnarchiveFindingsRequest {
|
|
1194
1240
|
/**
|
|
1195
1241
|
* <p>The ID of the detector associated with the findings to unarchive.</p>
|
|
1242
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
1243
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
1196
1244
|
* @public
|
|
1197
1245
|
*/
|
|
1198
1246
|
DetectorId: string | undefined;
|
|
@@ -1233,6 +1281,8 @@ export interface UntagResourceResponse {
|
|
|
1233
1281
|
export interface UpdateDetectorRequest {
|
|
1234
1282
|
/**
|
|
1235
1283
|
* <p>The unique ID of the detector to update.</p>
|
|
1284
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
1285
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
1236
1286
|
* @public
|
|
1237
1287
|
*/
|
|
1238
1288
|
DetectorId: string | undefined;
|
|
@@ -1275,6 +1325,8 @@ export interface UpdateFilterRequest {
|
|
|
1275
1325
|
/**
|
|
1276
1326
|
* <p>The unique ID of the detector that specifies the GuardDuty service where you want to
|
|
1277
1327
|
* update a filter.</p>
|
|
1328
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
1329
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
1278
1330
|
* @public
|
|
1279
1331
|
*/
|
|
1280
1332
|
DetectorId: string | undefined;
|
|
@@ -1325,6 +1377,8 @@ export interface UpdateFindingsFeedbackRequest {
|
|
|
1325
1377
|
/**
|
|
1326
1378
|
* <p>The ID of the detector that is associated with the findings for which you want to update
|
|
1327
1379
|
* the feedback.</p>
|
|
1380
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
1381
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
1328
1382
|
* @public
|
|
1329
1383
|
*/
|
|
1330
1384
|
DetectorId: string | undefined;
|
|
@@ -1355,6 +1409,8 @@ export interface UpdateFindingsFeedbackResponse {
|
|
|
1355
1409
|
export interface UpdateIPSetRequest {
|
|
1356
1410
|
/**
|
|
1357
1411
|
* <p>The detectorID that specifies the GuardDuty service whose IPSet you want to update.</p>
|
|
1412
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
1413
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
1358
1414
|
* @public
|
|
1359
1415
|
*/
|
|
1360
1416
|
DetectorId: string | undefined;
|
|
@@ -1444,6 +1500,8 @@ export interface UpdateMalwareScanSettingsRequest {
|
|
|
1444
1500
|
/**
|
|
1445
1501
|
* <p>The unique ID of the detector that specifies the GuardDuty service where you want to
|
|
1446
1502
|
* update scan settings.</p>
|
|
1503
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
1504
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
1447
1505
|
* @public
|
|
1448
1506
|
*/
|
|
1449
1507
|
DetectorId: string | undefined;
|
|
@@ -1506,6 +1564,8 @@ export interface MemberFeaturesConfiguration {
|
|
|
1506
1564
|
export interface UpdateMemberDetectorsRequest {
|
|
1507
1565
|
/**
|
|
1508
1566
|
* <p>The detector ID of the administrator account.</p>
|
|
1567
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
1568
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
1509
1569
|
* @public
|
|
1510
1570
|
*/
|
|
1511
1571
|
DetectorId: string | undefined;
|
|
@@ -1729,6 +1789,8 @@ export interface OrganizationFeatureConfiguration {
|
|
|
1729
1789
|
export interface UpdateOrganizationConfigurationRequest {
|
|
1730
1790
|
/**
|
|
1731
1791
|
* <p>The ID of the detector that configures the delegated administrator.</p>
|
|
1792
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
1793
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
1732
1794
|
* @public
|
|
1733
1795
|
*/
|
|
1734
1796
|
DetectorId: string | undefined;
|
|
@@ -1798,6 +1860,8 @@ export interface UpdateOrganizationConfigurationResponse {
|
|
|
1798
1860
|
export interface UpdatePublishingDestinationRequest {
|
|
1799
1861
|
/**
|
|
1800
1862
|
* <p>The ID of the detector associated with the publishing destinations to update.</p>
|
|
1863
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
1864
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
1801
1865
|
* @public
|
|
1802
1866
|
*/
|
|
1803
1867
|
DetectorId: string | undefined;
|
|
@@ -1825,6 +1889,8 @@ export interface UpdateThreatIntelSetRequest {
|
|
|
1825
1889
|
/**
|
|
1826
1890
|
* <p>The detectorID that specifies the GuardDuty service whose ThreatIntelSet you want to
|
|
1827
1891
|
* update.</p>
|
|
1892
|
+
* <p>To find the <code>detectorId</code> in the current Region, see the
|
|
1893
|
+
* Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
|
|
1828
1894
|
* @public
|
|
1829
1895
|
*/
|
|
1830
1896
|
DetectorId: string | undefined;
|
|
@@ -1238,6 +1238,15 @@ export interface RdsDbUserDetails {
|
|
|
1238
1238
|
Ssl?: string;
|
|
1239
1239
|
AuthMethod?: string;
|
|
1240
1240
|
}
|
|
1241
|
+
export interface RdsLimitlessDbDetails {
|
|
1242
|
+
DbShardGroupIdentifier?: string;
|
|
1243
|
+
DbShardGroupResourceId?: string;
|
|
1244
|
+
DbShardGroupArn?: string;
|
|
1245
|
+
Engine?: string;
|
|
1246
|
+
EngineVersion?: string;
|
|
1247
|
+
DbClusterIdentifier?: string;
|
|
1248
|
+
Tags?: Tag[];
|
|
1249
|
+
}
|
|
1241
1250
|
export interface Owner {
|
|
1242
1251
|
Id?: string;
|
|
1243
1252
|
}
|
|
@@ -1278,6 +1287,7 @@ export interface Resource {
|
|
|
1278
1287
|
EcsClusterDetails?: EcsClusterDetails;
|
|
1279
1288
|
ContainerDetails?: Container;
|
|
1280
1289
|
RdsDbInstanceDetails?: RdsDbInstanceDetails;
|
|
1290
|
+
RdsLimitlessDbDetails?: RdsLimitlessDbDetails;
|
|
1281
1291
|
RdsDbUserDetails?: RdsDbUserDetails;
|
|
1282
1292
|
LambdaDetails?: LambdaDetails;
|
|
1283
1293
|
}
|
|
@@ -1628,10 +1638,6 @@ export interface OrganizationStatistics {
|
|
|
1628
1638
|
EnabledAccountsCount?: number;
|
|
1629
1639
|
CountByFeature?: OrganizationFeatureStatistics[];
|
|
1630
1640
|
}
|
|
1631
|
-
export interface OrganizationDetails {
|
|
1632
|
-
UpdatedAt?: Date;
|
|
1633
|
-
OrganizationStatistics?: OrganizationStatistics;
|
|
1634
|
-
}
|
|
1635
1641
|
export declare const AccountDetailFilterSensitiveLog: (
|
|
1636
1642
|
obj: AccountDetail
|
|
1637
1643
|
) => any;
|
|
@@ -18,7 +18,7 @@ import {
|
|
|
18
18
|
FindingPublishingFrequency,
|
|
19
19
|
MalwareProtectionPlanActions,
|
|
20
20
|
Member,
|
|
21
|
-
|
|
21
|
+
OrganizationStatistics,
|
|
22
22
|
OrgFeature,
|
|
23
23
|
OrgFeatureAdditionalConfiguration,
|
|
24
24
|
OrgFeatureStatus,
|
|
@@ -27,6 +27,10 @@ import {
|
|
|
27
27
|
ThreatIntelSetFormat,
|
|
28
28
|
UnprocessedAccount,
|
|
29
29
|
} from "./models_0";
|
|
30
|
+
export interface OrganizationDetails {
|
|
31
|
+
UpdatedAt?: Date;
|
|
32
|
+
OrganizationStatistics?: OrganizationStatistics;
|
|
33
|
+
}
|
|
30
34
|
export interface GetOrganizationStatisticsResponse {
|
|
31
35
|
OrganizationDetails?: OrganizationDetails;
|
|
32
36
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-guardduty",
|
|
3
3
|
"description": "AWS SDK for JavaScript Guardduty Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.686.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-guardduty",
|
|
@@ -20,43 +20,43 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.1
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.2.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.4.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.686.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.686.0",
|
|
25
|
+
"@aws-sdk/core": "3.686.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.686.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.686.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
|
+
"@aws-sdk/types": "3.686.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.686.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.10",
|
|
37
|
+
"@smithy/core": "^2.5.1",
|
|
38
|
+
"@smithy/fetch-http-handler": "^4.0.0",
|
|
39
|
+
"@smithy/hash-node": "^3.0.8",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.8",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.10",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.1",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.25",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.8",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.8",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.9",
|
|
47
|
+
"@smithy/node-http-handler": "^3.2.5",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.5",
|
|
49
|
+
"@smithy/smithy-client": "^3.4.2",
|
|
50
|
+
"@smithy/types": "^3.6.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.8",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.25",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.25",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.4",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.8",
|
|
59
|
+
"@smithy/util-retry": "^3.0.8",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"@types/uuid": "^9.0.1",
|
|
62
62
|
"tslib": "^2.6.2",
|