interface ReplicationTimeProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.S3.CfnBucket.ReplicationTimeProperty |
Java | software.amazon.awscdk.services.s3.CfnBucket.ReplicationTimeProperty |
Python | aws_cdk.aws_s3.CfnBucket.ReplicationTimeProperty |
TypeScript | @aws-cdk/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 * as s3 from '@aws-cdk/aws-s3';
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.