interface ReplicationTimeValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3.Mixins.CfnBucketPropsMixin.ReplicationTimeValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3/mixins#CfnBucketPropsMixin_ReplicationTimeValueProperty |
Java | software.amazon.awscdk.mixins.preview.services.s3.mixins.CfnBucketPropsMixin.ReplicationTimeValueProperty |
Python | aws_cdk.mixins_preview.aws_s3.mixins.CfnBucketPropsMixin.ReplicationTimeValueProperty |
TypeScript | @aws-cdk/mixins-preview » aws_s3 » mixins » CfnBucketPropsMixin » ReplicationTimeValueProperty |
A container specifying the time value for S3 Replication Time Control (S3 RTC) and replication metrics EventThreshold .
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 replicationTimeValueProperty: s3_mixins.CfnBucketPropsMixin.ReplicationTimeValueProperty = {
minutes: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| minutes? | number | Contains an integer specifying time in minutes. |
minutes?
Type:
number
(optional)
Contains an integer specifying time in minutes.
Valid value: 15

.NET
Go
Java
Python
TypeScript