Interface CfnBucket.AccessRulesProperty

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

@Stability(Stable) public static interface CfnBucket.AccessRulesProperty extends software.amazon.jsii.JsiiSerializable
AccessRules is a property of the AWS::Lightsail::Bucket resource. It describes access rules for a bucket.

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.lightsail.*;
 AccessRulesProperty accessRulesProperty = AccessRulesProperty.builder()
         .allowPublicOverrides(false)
         .objectAccess("objectAccess")
         .build();
 

See Also: