interface ReplicationTimeValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3.CfnBucketPropsMixin.ReplicationTimeValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3#CfnBucketPropsMixin_ReplicationTimeValueProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3.CfnBucketPropsMixin.ReplicationTimeValueProperty |
Python | aws_cdk.cfn_property_mixins.aws_s3.CfnBucketPropsMixin.ReplicationTimeValueProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3 » 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 { aws_s3 as s3 } from '@aws-cdk/cfn-property-mixins';
const replicationTimeValueProperty: s3.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