aws-cdk-lib.aws_s3.CfnBucket.ReplicationTimeProperty

interface ReplicationTimeProperty

LanguageType name
.NETAmazon.CDK.AWS.S3.CfnBucket.ReplicationTimeProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awss3#CfnBucket_ReplicationTimeProperty
Javasoftware.amazon.awscdk.services.s3.CfnBucket.ReplicationTimeProperty
Pythonaws_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

NameTypeDescription
statusstringSpecifies whether the replication time is enabled.
timeIResolvable | ReplicationTimeValuePropertyA 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 | ReplicationTimeValueProperty

A container specifying the time by which replication should be complete for all objects and operations on objects.