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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMalwareProtectionPlan.S3BucketPropertystatic final classAn implementation forCfnMalwareProtectionPlan.S3BucketProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketName
Name of the S3 bucket.- See Also:
-
getObjectPrefixes
Information about the specified object prefixes.An S3 object will be scanned only if it belongs to any of the specified object prefixes.
- See Also:
-
builder
-