Skip to content

Commit

Permalink
feat(client-guardduty): Added a new field for network connection deta…
Browse files Browse the repository at this point in the history
…ils.
  • Loading branch information
awstools committed Oct 11, 2024
1 parent bbad384 commit 6f6d4ac
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,7 @@ export interface GetFindingsCommandOutput extends GetFindingsResponse, __Metadat
* // IpAddressV4: "STRING_VALUE",
* // IpAddressV6: "STRING_VALUE",
* // },
* // LocalNetworkInterface: "STRING_VALUE",
* // RemoteIpDetails: {
* // City: {
* // CityName: "STRING_VALUE",
Expand Down
6 changes: 6 additions & 0 deletions clients/client-guardduty/src/models/models_0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -951,6 +951,12 @@ export interface NetworkConnectionAction {
*/
LocalIpDetails?: LocalIpDetails;

/**
* <p>The EC2 instance's local elastic network interface utilized for the connection.</p>
* @public
*/
LocalNetworkInterface?: string;

/**
* <p>The remote IP information of the connection.</p>
* @public
Expand Down
1 change: 1 addition & 0 deletions clients/client-guardduty/src/protocols/Aws_restJson1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5873,6 +5873,7 @@ const de_NetworkConnectionAction = (output: any, context: __SerdeContext): Netwo
Blocked: [, __expectBoolean, `blocked`],
ConnectionDirection: [, __expectString, `connectionDirection`],
LocalIpDetails: [, (_: any) => de_LocalIpDetails(_, context), `localIpDetails`],
LocalNetworkInterface: [, __expectString, `localNetworkInterface`],
LocalPortDetails: [, (_: any) => de_LocalPortDetails(_, context), `localPortDetails`],
Protocol: [, __expectString, `protocol`],
RemoteIpDetails: [, (_: any) => de_RemoteIpDetails(_, context), `remoteIpDetails`],
Expand Down
7 changes: 7 additions & 0 deletions codegen/sdk-codegen/aws-models/guardduty.json
Original file line number Diff line number Diff line change
Expand Up @@ -11049,6 +11049,13 @@
"smithy.api#jsonName": "localIpDetails"
}
},
"LocalNetworkInterface": {
"target": "com.amazonaws.guardduty#String",
"traits": {
"smithy.api#documentation": "<p>The EC2 instance's local elastic network interface utilized for the connection.</p>",
"smithy.api#jsonName": "localNetworkInterface"
}
},
"RemoteIpDetails": {
"target": "com.amazonaws.guardduty#RemoteIpDetails",
"traits": {
Expand Down

0 comments on commit 6f6d4ac

Please sign in to comment.