Interface GuardDutyMalwareProtectionPostScanActionFailed.GuardDutyMalwareProtectionPostScanActionFailedProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
GuardDutyMalwareProtectionPostScanActionFailed.GuardDutyMalwareProtectionPostScanActionFailedProps.Jsii$Proxy
Enclosing class:
GuardDutyMalwareProtectionPostScanActionFailed

@Stability(Experimental) public static interface GuardDutyMalwareProtectionPostScanActionFailed.GuardDutyMalwareProtectionPostScanActionFailedProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for aws.guardduty@GuardDutyMalwareProtectionPostScanActionFailed event.

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.*;
 GuardDutyMalwareProtectionPostScanActionFailedProps guardDutyMalwareProtectionPostScanActionFailedProps = GuardDutyMalwareProtectionPostScanActionFailedProps.builder()
         .eventMetadata(AWSEventMetadataProps.builder()
                 .region(List.of("region"))
                 .resources(List.of("resources"))
                 .version(List.of("version"))
                 .build())
         .eventTime(List.of("eventTime"))
         .postScanActions(List.of(PostScanAction.builder()
                 .actionType(List.of("actionType"))
                 .failureReason(List.of("failureReason"))
                 .status(List.of("status"))
                 .build()))
         .s3ObjectDetails(S3ObjectDetails.builder()
                 .bucketName(List.of("bucketName"))
                 .eTag(List.of("eTag"))
                 .objectKey(List.of("objectKey"))
                 .versionId(List.of("versionId"))
                 .build())
         .schemaVersion(List.of("schemaVersion"))
         .build();