Interface CfnBucketPropsMixin.VersioningConfigurationProperty

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

@Stability(Stable) public static interface CfnBucketPropsMixin.VersioningConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Describes the versioning state of an Amazon S3 bucket.

For more information, see PUT Bucket versioning in the Amazon S3 API Reference .

Keep the following timing in mind when enabling, suspending, or transitioning between versioning states:

  • Enabling versioning - Changes may take up to 15 minutes to propagate across all AWS regions for full consistency.
  • Suspending versioning - Takes effect immediately with no propagation delay.
  • Transitioning between states - Any change from Suspended to Enabled has a 15-minute delay.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.s3.*;
 VersioningConfigurationProperty versioningConfigurationProperty = VersioningConfigurationProperty.builder()
         .status("status")
         .build();
 

See Also: