Interface CfnMalwareProtectionPlan.CFNProtectedResourceProperty

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

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

Presently, S3Bucket is the only supported protected 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.*;
 CFNProtectedResourceProperty cFNProtectedResourceProperty = CFNProtectedResourceProperty.builder()
         .s3Bucket(S3BucketProperty.builder()
                 .bucketName("bucketName")
                 .objectPrefixes(List.of("objectPrefixes"))
                 .build())
         .build();
 

See Also: