Interface DetectorEvents.GuardDutyFinding.Evidence

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
DetectorEvents.GuardDutyFinding.Evidence.Jsii$Proxy
Enclosing class:
DetectorEvents.GuardDutyFinding

@Stability(Experimental) public static interface DetectorEvents.GuardDutyFinding.Evidence extends software.amazon.jsii.JsiiSerializable
(experimental) Type definition for Evidence.

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.*;
 Evidence evidence = Evidence.builder()
         .threatIntelligenceDetails(List.of(EvidenceItem.builder()
                 .threatListName(List.of("threatListName"))
                 .threatNames(List.of("threatNames"))
                 .build()))
         .build();