Interface CfnMalwareProtectionPlan.S3BucketProperty

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

@Stability(Stable) public static interface CfnMalwareProtectionPlan.S3BucketProperty extends software.amazon.jsii.JsiiSerializable
Information about the protected S3 bucket resource.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.guardduty.*;
 S3BucketProperty s3BucketProperty = S3BucketProperty.builder()
         .bucketName("bucketName")
         .objectPrefixes(List.of("objectPrefixes"))
         .build();
 

See Also: