Interface CfnDirectoryBucketProps

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

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2025-01-10T21:56:59.103Z") @Stability(Stable) public interface CfnDirectoryBucketProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnDirectoryBucket.

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.s3express.*;
 CfnDirectoryBucketProps cfnDirectoryBucketProps = CfnDirectoryBucketProps.builder()
         .dataRedundancy("dataRedundancy")
         .locationName("locationName")
         // the properties below are optional
         .bucketEncryption(BucketEncryptionProperty.builder()
                 .serverSideEncryptionConfiguration(List.of(ServerSideEncryptionRuleProperty.builder()
                         .bucketKeyEnabled(false)
                         .serverSideEncryptionByDefault(ServerSideEncryptionByDefaultProperty.builder()
                                 .sseAlgorithm("sseAlgorithm")
                                 // the properties below are optional
                                 .kmsMasterKeyId("kmsMasterKeyId")
                                 .build())
                         .build()))
                 .build())
         .bucketName("bucketName")
         .lifecycleConfiguration(LifecycleConfigurationProperty.builder()
                 .rules(List.of(RuleProperty.builder()
                         .status("status")
                         // the properties below are optional
                         .abortIncompleteMultipartUpload(AbortIncompleteMultipartUploadProperty.builder()
                                 .daysAfterInitiation(123)
                                 .build())
                         .expirationInDays(123)
                         .id("id")
                         .objectSizeGreaterThan("objectSizeGreaterThan")
                         .objectSizeLessThan("objectSizeLessThan")
                         .prefix("prefix")
                         .build()))
                 .build())
         .build();
 

See Also: