Interface CfnAccessPoint.PublicAccessBlockConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAccessPoint.PublicAccessBlockConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnAccessPoint

@Stability(Stable) public static interface CfnAccessPoint.PublicAccessBlockConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The PublicAccessBlock configuration that you want to apply to this Amazon S3 bucket.

You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see The Meaning of "Public" in the Amazon S3 User Guide .

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.s3.*;
 PublicAccessBlockConfigurationProperty publicAccessBlockConfigurationProperty = PublicAccessBlockConfigurationProperty.builder()
         .blockPublicAcls(false)
         .blockPublicPolicy(false)
         .ignorePublicAcls(false)
         .restrictPublicBuckets(false)
         .build();
 

See Also: