Class 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.
Inheritance
System.Object
CfnBucket.ReplicationTimeProperty
Implements
Namespace: Amazon.CDK.AWS.S3
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ReplicationTimeProperty : Object, CfnBucket.IReplicationTimeProperty
Syntax (vb)
Public Class ReplicationTimeProperty
Inherits Object
Implements CfnBucket.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.AWS.S3;
var replicationTimeProperty = new ReplicationTimeProperty {
Status = "status",
Time = new ReplicationTimeValueProperty {
Minutes = 123
}
};
Synopsis
Constructors
ReplicationTimeProperty() |
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()
public ReplicationTimeProperty()
Properties
Status
Specifies whether the replication time is enabled.
public string Status { get; set; }
Property Value
System.String
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; }
Property Value
System.Object