Skip to content

Commit 5053405

Browse files
author
awstools
committed
feat(client-guardduty): Add support for dbiResourceId in finding.
1 parent 04719ac commit 5053405

File tree

4 files changed

+19
-1
lines changed

4 files changed

+19
-1
lines changed

clients/client-guardduty/src/commands/GetFindingsCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,7 @@ export interface GetFindingsCommandOutput extends GetFindingsResponse, __Metadat
351351
* // EngineVersion: "STRING_VALUE",
352352
* // DbClusterIdentifier: "STRING_VALUE",
353353
* // DbInstanceArn: "STRING_VALUE",
354+
* // DbiResourceId: "STRING_VALUE",
354355
* // Tags: "<Tags>",
355356
* // },
356357
* // RdsLimitlessDbDetails: { // RdsLimitlessDbDetails

clients/client-guardduty/src/models/models_0.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6577,6 +6577,13 @@ export interface RdsDbInstanceDetails {
65776577
*/
65786578
DbInstanceArn?: string | undefined;
65796579

6580+
/**
6581+
* <p>The unique ID of the database resource involved in the activity that prompted GuardDuty
6582+
* to generate the finding.</p>
6583+
* @public
6584+
*/
6585+
DbiResourceId?: string | undefined;
6586+
65806587
/**
65816588
* <p>Information about the tag key-value pairs.</p>
65826589
* @public

clients/client-guardduty/src/schemas/schemas_0.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,7 @@ const _DPDRes = "DescribePublishingDestinationRequest";
249249
const _DPDResc = "DescribePublishingDestinationResponse";
250250
const _DPDe = "DescribePublishingDestination";
251251
const _DRA = "DnsRequestAction";
252+
const _DRI = "DbiResourceId";
252253
const _DS = "DataSources";
253254
const _DSC = "DataSourceConfigurations";
254255
const _DSCR = "DataSourceConfigurationsResult";
@@ -1147,6 +1148,7 @@ const _dL = "dnsLogs";
11471148
const _dN = "deviceName";
11481149
const _dP = "destinationProperties";
11491150
const _dRA = "dnsRequestAction";
1151+
const _dRI = "dbiResourceId";
11501152
const _dS = "dataSources";
11511153
const _dSGA = "dbShardGroupArn";
11521154
const _dSGI = "dbShardGroupIdentifier";
@@ -4836,13 +4838,14 @@ export var RdsDbInstanceDetails$: StaticStructureSchema = [
48364838
n0,
48374839
_RDID,
48384840
0,
4839-
[_DII, _Eng, _EVn, _DCI, _DIA, _Ta],
4841+
[_DII, _Eng, _EVn, _DCI, _DIA, _DRI, _Ta],
48404842
[
48414843
[0, { [_jN]: _dII }],
48424844
[0, { [_jN]: _eng }],
48434845
[0, { [_jN]: _eVn }],
48444846
[0, { [_jN]: _dCI }],
48454847
[0, { [_jN]: _dIA }],
4848+
[0, { [_jN]: _dRI }],
48464849
[() => Tags, { [_jN]: _ta }],
48474850
],
48484851
];

codegen/sdk-codegen/aws-models/guardduty.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15295,6 +15295,13 @@
1529515295
"smithy.api#jsonName": "dbInstanceArn"
1529615296
}
1529715297
},
15298+
"DbiResourceId": {
15299+
"target": "com.amazonaws.guardduty#String",
15300+
"traits": {
15301+
"smithy.api#documentation": "<p>The unique ID of the database resource involved in the activity that prompted GuardDuty\n to generate the finding.</p>",
15302+
"smithy.api#jsonName": "dbiResourceId"
15303+
}
15304+
},
1529815305
"Tags": {
1529915306
"target": "com.amazonaws.guardduty#Tags",
1530015307
"traits": {

0 commit comments

Comments
 (0)