interface EbsVolumeScanDetails
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Events.DetectorEvents.GuardDutyFinding.EbsVolumeScanDetails |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/events#DetectorEvents_GuardDutyFinding_EbsVolumeScanDetails |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.events.DetectorEvents.GuardDutyFinding.EbsVolumeScanDetails |
Python | aws_cdk.mixins_preview.aws_guardduty.events.DetectorEvents.GuardDutyFinding.EbsVolumeScanDetails |
TypeScript | @aws-cdk/mixins-preview ยป aws_guardduty ยป events ยป DetectorEvents ยป GuardDutyFinding ยป EbsVolumeScanDetails |
Type definition for EbsVolumeScanDetails.
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 ebsVolumeScanDetails: guardduty_events.DetectorEvents.GuardDutyFinding.EbsVolumeScanDetails = {
scanCompletedAt: ['scanCompletedAt'],
scanDetections: {
highestSeverityThreatDetails: {
count: ['count'],
severity: ['severity'],
threatName: ['threatName'],
},
scannedItemCount: {
files: ['files'],
totalGb: ['totalGb'],
volumes: ['volumes'],
},
threatDetectedByName: {
itemCount: ['itemCount'],
shortened: ['shortened'],
threatNames: [{
filePaths: [{
fileName: ['fileName'],
filePath: ['filePath'],
hash: ['hash'],
volumeArn: ['volumeArn'],
}],
itemCount: ['itemCount'],
name: ['name'],
severity: ['severity'],
}],
uniqueThreatNameCount: ['uniqueThreatNameCount'],
},
threatsDetectedItemCount: {
files: ['files'],
},
},
scanId: ['scanId'],
scanStartedAt: ['scanStartedAt'],
sources: ['sources'],
triggerFindingId: ['triggerFindingId'],
};
Properties
| Name | Type | Description |
|---|---|---|
| scan | string[] | scanCompletedAt property. |
| scan | Scan | scanDetections property. |
| scan | string[] | scanId property. |
| scan | string[] | scanStartedAt property. |
| sources? | string[] | sources property. |
| trigger | string[] | triggerFindingId property. |
scanCompletedAt?
Type:
string[]
(optional, default: Do not filter on this field)
scanCompletedAt property.
Specify an array of string values to match this event if the actual value of scanCompletedAt is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
scanDetections?
Type:
Scan
(optional, default: Do not filter on this field)
scanDetections property.
Specify an array of string values to match this event if the actual value of scanDetections is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
scanId?
Type:
string[]
(optional, default: Do not filter on this field)
scanId property.
Specify an array of string values to match this event if the actual value of scanId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
scanStartedAt?
Type:
string[]
(optional, default: Do not filter on this field)
scanStartedAt property.
Specify an array of string values to match this event if the actual value of scanStartedAt is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
sources?
Type:
string[]
(optional, default: Do not filter on this field)
sources property.
Specify an array of string values to match this event if the actual value of sources is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
triggerFindingId?
Type:
string[]
(optional, default: Do not filter on this field)
triggerFindingId property.
Specify an array of string values to match this event if the actual value of triggerFindingId 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