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