interface ReplicationTimeProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.S3.CfnBucket.ReplicationTimeProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3#CfnBucket_ReplicationTimeProperty | 
|  Java | software.amazon.awscdk.services.s3.CfnBucket.ReplicationTimeProperty | 
|  Python | aws_cdk.aws_s3.CfnBucket.ReplicationTimeProperty | 
|  TypeScript | aws-cdk-lib»aws_s3»CfnBucket»ReplicationTimeProperty | 
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 { aws_s3 as s3 } from 'aws-cdk-lib';
const replicationTimeProperty: s3.CfnBucket.ReplicationTimeProperty = {
  status: 'status',
  time: {
    minutes: 123,
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| status | string | Specifies whether the replication time is enabled. | 
| time | IResolvable | Replication | A container specifying the time by which replication should be complete for all objects and operations on objects. | 
status
Type:
string
Specifies whether the replication time is enabled.
time
Type:
IResolvable | Replication
A container specifying the time by which replication should be complete for all objects and operations on objects.
