Interface CfnBucket.ReplicationTimeProperty

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

@Stability(Stable) public static interface CfnBucket.ReplicationTimeProperty extends software.amazon.jsii.JsiiSerializable
A container specifying S3 Replication Time Control (S3 RTC) related information, including whether S3 RTC is enabled and the time when all objects and operations on objects must be replicated.

Must be specified together with a Metrics block.

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.*;
 ReplicationTimeProperty replicationTimeProperty = ReplicationTimeProperty.builder()
         .status("status")
         .time(ReplicationTimeValueProperty.builder()
                 .minutes(123)
                 .build())
         .build();