Interface DetectorEvents.GuardDutyFinding.ThreatDetectedByName
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DetectorEvents.GuardDutyFinding.ThreatDetectedByName.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.*;
ThreatDetectedByName 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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forDetectorEvents.GuardDutyFinding.ThreatDetectedByNamestatic final classAn implementation forDetectorEvents.GuardDutyFinding.ThreatDetectedByName -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) itemCount property.(experimental) shortened property.(experimental) threatNames property.(experimental) uniqueThreatNameCount property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getItemCount
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getShortened
(experimental) shortened property.Specify an array of string values to match this event if the actual value of shortened 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
-
getThreatNames
@Stability(Experimental) @Nullable default List<DetectorEvents.GuardDutyFinding.ThreatDetectedByNameItem> getThreatNames()(experimental) threatNames property.Specify an array of string values to match this event if the actual value of threatNames 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
-
getUniqueThreatNameCount
(experimental) uniqueThreatNameCount property.Specify an array of string values to match this event if the actual value of uniqueThreatNameCount 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
@Stability(Experimental) static DetectorEvents.GuardDutyFinding.ThreatDetectedByName.Builder builder()
-