interface HighestSeverityThreatDetails
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Events.DetectorEvents.GuardDutyFinding.HighestSeverityThreatDetails |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/events#DetectorEvents_GuardDutyFinding_HighestSeverityThreatDetails |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.events.DetectorEvents.GuardDutyFinding.HighestSeverityThreatDetails |
Python | aws_cdk.mixins_preview.aws_guardduty.events.DetectorEvents.GuardDutyFinding.HighestSeverityThreatDetails |
TypeScript | @aws-cdk/mixins-preview ยป aws_guardduty ยป events ยป DetectorEvents ยป GuardDutyFinding ยป HighestSeverityThreatDetails |
Type definition for HighestSeverityThreatDetails.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as guardduty_events } from '@aws-cdk/mixins-preview/aws-guardduty';
const highestSeverityThreatDetails: guardduty_events.DetectorEvents.GuardDutyFinding.HighestSeverityThreatDetails = {
count: ['count'],
severity: ['severity'],
threatName: ['threatName'],
};
Properties
| Name | Type | Description |
|---|---|---|
| count? | string[] | count property. |
| severity? | string[] | severity property. |
| threat | string[] | threatName property. |
count?
Type:
string[]
(optional, default: Do not filter on this field)
count property.
Specify an array of string values to match this event if the actual value of count is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
severity?
Type:
string[]
(optional, default: Do not filter on this field)
severity property.
Specify an array of string values to match this event if the actual value of severity is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
threatName?
Type:
string[]
(optional, default: Do not filter on this field)
threatName property.
Specify an array of string values to match this event if the actual value of threatName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript