Class 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.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.S3.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnBucketPropsMixin.ReplicationTimeProperty : CfnBucketPropsMixin.IReplicationTimeProperty
Syntax (vb)
Public Class CfnBucketPropsMixin.ReplicationTimeProperty Implements CfnBucketPropsMixin.IReplicationTimeProperty
Remarks
Must be specified together with a Metrics block.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.S3.Mixins;
var replicationTimeProperty = new ReplicationTimeProperty {
Status = "status",
Time = new ReplicationTimeValueProperty {
Minutes = 123
}
};
Synopsis
Constructors
| 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. |
Properties
| Status | Specifies whether the replication time is enabled. |
| Time | A container specifying the time by which replication should be complete for all objects and operations on objects. |
Constructors
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.
public ReplicationTimeProperty()
Remarks
Must be specified together with a Metrics block.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.S3.Mixins;
var replicationTimeProperty = new ReplicationTimeProperty {
Status = "status",
Time = new ReplicationTimeValueProperty {
Minutes = 123
}
};
Properties
Status
Specifies whether the replication time is enabled.
public string? Status { get; set; }
Property Value
Remarks
Time
A container specifying the time by which replication should be complete for all objects and operations on objects.
public object? Time { get; set; }