Interface CfnBucketMixinProps

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

@Generated(value="jsii-pacmak/1.130.0 (build 048a5ee)", date="2026-05-21T17:27:58.541Z") @Stability(Stable) public interface CfnBucketMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnBucketPropsMixin.

Example:

 CfnBucket combineBucket = new CfnBucket(scope, "CombineBucket");
 combineBucket.getPublicAccessBlockConfiguration() = PublicAccessBlockConfigurationProperty.builder().blockPublicAcls(true).build();
 // Adds blockPublicPolicy while preserving the existing blockPublicAcls
 combineBucket.with(CfnBucketPropsMixin.Builder.create()
         .publicAccessBlockConfiguration(PublicAccessBlockConfigurationProperty.builder().blockPublicPolicy(true).build())
         .build());
 

See Also: