Interface CfnMalwareProtectionPlanProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMalwareProtectionPlanProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-12-06T14:43:20.005Z") @Stability(Stable) public interface CfnMalwareProtectionPlanProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnMalwareProtectionPlan.

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.*;
 CfnMalwareProtectionPlanProps cfnMalwareProtectionPlanProps = CfnMalwareProtectionPlanProps.builder()
         .protectedResource(CFNProtectedResourceProperty.builder()
                 .s3Bucket(S3BucketProperty.builder()
                         .bucketName("bucketName")
                         .objectPrefixes(List.of("objectPrefixes"))
                         .build())
                 .build())
         .role("role")
         // the properties below are optional
         .actions(CFNActionsProperty.builder()
                 .tagging(CFNTaggingProperty.builder()
                         .status("status")
                         .build())
                 .build())
         .tags(List.of(TagItemProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: