Interface GuardDutyMalwareProtectionObjectScanResult.GuardDutyMalwareProtectionObjectScanResultProps

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

@Stability(Experimental) public static interface GuardDutyMalwareProtectionObjectScanResult.GuardDutyMalwareProtectionObjectScanResultProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for aws.guardduty@GuardDutyMalwareProtectionObjectScanResult 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.*;
 GuardDutyMalwareProtectionObjectScanResultProps guardDutyMalwareProtectionObjectScanResultProps = GuardDutyMalwareProtectionObjectScanResultProps.builder()
         .eventMetadata(AWSEventMetadataProps.builder()
                 .region(List.of("region"))
                 .resources(List.of("resources"))
                 .version(List.of("version"))
                 .build())
         .resourceType(List.of("resourceType"))
         .s3ObjectDetails(S3ObjectDetails.builder()
                 .bucketName(List.of("bucketName"))
                 .eTag(List.of("eTag"))
                 .objectKey(List.of("objectKey"))
                 .s3Throttled(List.of("s3Throttled"))
                 .versionId(List.of("versionId"))
                 .build())
         .scanResultDetails(ScanResultDetails.builder()
                 .scanResultStatus(List.of("scanResultStatus"))
                 .threats(List.of(Threat.builder()
                         .name(List.of("name"))
                         .build()))
                 .build())
         .scanStatus(List.of("scanStatus"))
         .schemaVersion(List.of("schemaVersion"))
         .build();
 
  • Method Details

    • getEventMetadata

      @Stability(Experimental) @Nullable default AWSEventMetadataProps getEventMetadata()
      (experimental) EventBridge event metadata.

      Default: - -

    • getResourceType

      @Stability(Experimental) @Nullable default List<String> getResourceType()
      (experimental) resourceType property.

      Specify an array of string values to match this event if the actual value of resourceType is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getS3ObjectDetails

      @Stability(Experimental) @Nullable default GuardDutyMalwareProtectionObjectScanResult.S3ObjectDetails getS3ObjectDetails()
      (experimental) s3ObjectDetails property.

      Specify an array of string values to match this event if the actual value of s3ObjectDetails is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getScanResultDetails

      @Stability(Experimental) @Nullable default GuardDutyMalwareProtectionObjectScanResult.ScanResultDetails getScanResultDetails()
      (experimental) scanResultDetails property.

      Specify an array of string values to match this event if the actual value of scanResultDetails is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getScanStatus

      @Stability(Experimental) @Nullable default List<String> getScanStatus()
      (experimental) scanStatus property.

      Specify an array of string values to match this event if the actual value of scanStatus is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getSchemaVersion

      @Stability(Experimental) @Nullable default List<String> getSchemaVersion()
      (experimental) schemaVersion property.

      Specify an array of string values to match this event if the actual value of schemaVersion is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • builder

      Returns:
      a GuardDutyMalwareProtectionObjectScanResult.GuardDutyMalwareProtectionObjectScanResultProps.Builder of GuardDutyMalwareProtectionObjectScanResult.GuardDutyMalwareProtectionObjectScanResultProps