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="2024-11-06T23:25:16.372Z") @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")
         .build();
 

See Also: