interface ThreatDetectedByNameItem
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Events.DetectorEvents.GuardDutyFinding.ThreatDetectedByNameItem |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/events#DetectorEvents_GuardDutyFinding_ThreatDetectedByNameItem |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.events.DetectorEvents.GuardDutyFinding.ThreatDetectedByNameItem |
Python | aws_cdk.mixins_preview.aws_guardduty.events.DetectorEvents.GuardDutyFinding.ThreatDetectedByNameItem |
TypeScript | @aws-cdk/mixins-preview ยป aws_guardduty ยป events ยป DetectorEvents ยป GuardDutyFinding ยป ThreatDetectedByNameItem |
Type definition for ThreatDetectedByNameItem.
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 threatDetectedByNameItem: guardduty_events.DetectorEvents.GuardDutyFinding.ThreatDetectedByNameItem = {
filePaths: [{
fileName: ['fileName'],
filePath: ['filePath'],
hash: ['hash'],
volumeArn: ['volumeArn'],
}],
itemCount: ['itemCount'],
name: ['name'],
severity: ['severity'],
};
Properties
| Name | Type | Description |
|---|---|---|
| file | Threat[] | filePaths property. |
| item | string[] | itemCount property. |
| name? | string[] | name property. |
| severity? | string[] | severity property. |
filePaths?
Type:
Threat[]
(optional, default: Do not filter on this field)
filePaths property.
Specify an array of string values to match this event if the actual value of filePaths is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
itemCount?
Type:
string[]
(optional, default: Do not filter on this field)
itemCount property.
Specify an array of string values to match this event if the actual value of itemCount is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
name?
Type:
string[]
(optional, default: Do not filter on this field)
name property.
Specify an array of string values to match this event if the actual value of name 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.

.NET
Go
Java
Python
TypeScript