Interface DetectorEvents.GuardDutyFinding.ScanDetections
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DetectorEvents.GuardDutyFinding.ScanDetections.Jsii$Proxy
- Enclosing class:
DetectorEvents.GuardDutyFinding
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.guardduty.events.*;
ScanDetections scanDetections = ScanDetections.builder()
.highestSeverityThreatDetails(HighestSeverityThreatDetails.builder()
.count(List.of("count"))
.severity(List.of("severity"))
.threatName(List.of("threatName"))
.build())
.scannedItemCount(ScannedItemCount.builder()
.files(List.of("files"))
.totalGb(List.of("totalGb"))
.volumes(List.of("volumes"))
.build())
.threatDetectedByName(ThreatDetectedByName.builder()
.itemCount(List.of("itemCount"))
.shortened(List.of("shortened"))
.threatNames(List.of(ThreatDetectedByNameItem.builder()
.filePaths(List.of(ThreatDetectedByNameItemItem.builder()
.fileName(List.of("fileName"))
.filePath(List.of("filePath"))
.hash(List.of("hash"))
.volumeArn(List.of("volumeArn"))
.build()))
.itemCount(List.of("itemCount"))
.name(List.of("name"))
.severity(List.of("severity"))
.build()))
.uniqueThreatNameCount(List.of("uniqueThreatNameCount"))
.build())
.threatsDetectedItemCount(ThreatsDetectedItemCount.builder()
.files(List.of("files"))
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forDetectorEvents.GuardDutyFinding.ScanDetectionsstatic final classAn implementation forDetectorEvents.GuardDutyFinding.ScanDetections -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) highestSeverityThreatDetails property.(experimental) scannedItemCount property.(experimental) threatDetectedByName property.(experimental) threatsDetectedItemCount property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHighestSeverityThreatDetails
@Stability(Experimental) @Nullable default DetectorEvents.GuardDutyFinding.HighestSeverityThreatDetails getHighestSeverityThreatDetails()(experimental) highestSeverityThreatDetails property.Specify an array of string values to match this event if the actual value of highestSeverityThreatDetails is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getScannedItemCount
@Stability(Experimental) @Nullable default DetectorEvents.GuardDutyFinding.ScannedItemCount getScannedItemCount()(experimental) scannedItemCount property.Specify an array of string values to match this event if the actual value of scannedItemCount is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getThreatDetectedByName
@Stability(Experimental) @Nullable default DetectorEvents.GuardDutyFinding.ThreatDetectedByName getThreatDetectedByName()(experimental) threatDetectedByName property.Specify an array of string values to match this event if the actual value of threatDetectedByName is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getThreatsDetectedItemCount
@Stability(Experimental) @Nullable default DetectorEvents.GuardDutyFinding.ThreatsDetectedItemCount getThreatsDetectedItemCount()(experimental) threatsDetectedItemCount property.Specify an array of string values to match this event if the actual value of threatsDetectedItemCount is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-