interface ReplicationTimeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3.Mixins.CfnBucketPropsMixin.ReplicationTimeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3/mixins#CfnBucketPropsMixin_ReplicationTimeProperty |
Java | software.amazon.awscdk.mixins.preview.services.s3.mixins.CfnBucketPropsMixin.ReplicationTimeProperty |
Python | aws_cdk.mixins_preview.aws_s3.mixins.CfnBucketPropsMixin.ReplicationTimeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_s3 » mixins » CfnBucketPropsMixin » 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 { mixins as s3_mixins } from '@aws-cdk/mixins-preview/aws-s3';
const replicationTimeProperty: s3_mixins.CfnBucketPropsMixin.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
(optional)
Specifies whether the replication time is enabled.
time?
Type:
IResolvable | Replication
(optional)
A container specifying the time by which replication should be complete for all objects and operations on objects.

.NET
Go
Java
Python
TypeScript