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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMalwareProtectionPlan.CFNProtectedResourceProperty
static final class
An implementation forCfnMalwareProtectionPlan.CFNProtectedResourceProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Bucket
Information about the protected S3 bucket resource.- See Also:
-
builder
-