Skip to content

Commit 79364bd

Browse files
author
awstools
committed
feat(client-guardduty): Added support for VPC owner account ID associated with DNS request in the GuardDuty finding.
1 parent 5451046 commit 79364bd

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
@@ -439,6 +439,7 @@ export interface GetFindingsCommandOutput extends GetFindingsResponse, __Metadat
439439
* // Protocol: "STRING_VALUE",
440440
* // Blocked: true || false,
441441
* // DomainWithSuffix: "STRING_VALUE",
442+
* // VpcOwnerAccountId: "STRING_VALUE",
442443
* // },
443444
* // NetworkConnectionAction: { // NetworkConnectionAction
444445
* // Blocked: true || false,

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -767,6 +767,12 @@ export interface DnsRequestAction {
767767
* @public
768768
*/
769769
DomainWithSuffix?: string | undefined;
770+
771+
/**
772+
* <p>The Amazon Web Services account ID that owns the VPC through which the DNS request was made.</p>
773+
* @public
774+
*/
775+
VpcOwnerAccountId?: string | undefined;
770776
}
771777

772778
/**
@@ -2948,6 +2954,9 @@ export interface CreateFilterRequest {
29482954
* <p>service.action.dnsRequestAction.domainWithSuffix</p>
29492955
* </li>
29502956
* <li>
2957+
* <p>service.action.dnsRequestAction.vpcOwnerAccountId</p>
2958+
* </li>
2959+
* <li>
29512960
* <p>service.action.networkConnectionAction.blocked</p>
29522961
* </li>
29532962
* <li>

clients/client-guardduty/src/protocols/Aws_restJson1.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5079,6 +5079,7 @@ const de_DnsRequestAction = (output: any, context: __SerdeContext): DnsRequestAc
50795079
Domain: [, __expectString, `domain`],
50805080
DomainWithSuffix: [, __expectString, `domainWithSuffix`],
50815081
Protocol: [, __expectString, `protocol`],
5082+
VpcOwnerAccountId: [, __expectString, `vpcOwnerAccountId`],
50825083
}) as any;
50835084
};
50845085

0 commit comments

Comments
 (0)