Skip to content

Commit 6f6d4ac

Browse files
author
awstools
committed
feat(client-guardduty): Added a new field for network connection details.
1 parent bbad384 commit 6f6d4ac

File tree

4 files changed

+15
-0
lines changed

4 files changed

+15
-0
lines changed

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

+1
Original file line numberDiff line numberDiff line change
@@ -442,6 +442,7 @@ export interface GetFindingsCommandOutput extends GetFindingsResponse, __Metadat
442442
* // IpAddressV4: "STRING_VALUE",
443443
* // IpAddressV6: "STRING_VALUE",
444444
* // },
445+
* // LocalNetworkInterface: "STRING_VALUE",
445446
* // RemoteIpDetails: {
446447
* // City: {
447448
* // CityName: "STRING_VALUE",

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

+6
Original file line numberDiff line numberDiff line change
@@ -951,6 +951,12 @@ export interface NetworkConnectionAction {
951951
*/
952952
LocalIpDetails?: LocalIpDetails;
953953

954+
/**
955+
* <p>The EC2 instance's local elastic network interface utilized for the connection.</p>
956+
* @public
957+
*/
958+
LocalNetworkInterface?: string;
959+
954960
/**
955961
* <p>The remote IP information of the connection.</p>
956962
* @public

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

+1
Original file line numberDiff line numberDiff line change
@@ -5873,6 +5873,7 @@ const de_NetworkConnectionAction = (output: any, context: __SerdeContext): Netwo
58735873
Blocked: [, __expectBoolean, `blocked`],
58745874
ConnectionDirection: [, __expectString, `connectionDirection`],
58755875
LocalIpDetails: [, (_: any) => de_LocalIpDetails(_, context), `localIpDetails`],
5876+
LocalNetworkInterface: [, __expectString, `localNetworkInterface`],
58765877
LocalPortDetails: [, (_: any) => de_LocalPortDetails(_, context), `localPortDetails`],
58775878
Protocol: [, __expectString, `protocol`],
58785879
RemoteIpDetails: [, (_: any) => de_RemoteIpDetails(_, context), `remoteIpDetails`],

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

+7
Original file line numberDiff line numberDiff line change
@@ -11049,6 +11049,13 @@
1104911049
"smithy.api#jsonName": "localIpDetails"
1105011050
}
1105111051
},
11052+
"LocalNetworkInterface": {
11053+
"target": "com.amazonaws.guardduty#String",
11054+
"traits": {
11055+
"smithy.api#documentation": "<p>The EC2 instance's local elastic network interface utilized for the connection.</p>",
11056+
"smithy.api#jsonName": "localNetworkInterface"
11057+
}
11058+
},
1105211059
"RemoteIpDetails": {
1105311060
"target": "com.amazonaws.guardduty#RemoteIpDetails",
1105411061
"traits": {

0 commit comments

Comments
 (0)