Show / Hide Table of Contents

Interface CfnBucket.IReplicationTimeProperty

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.

Namespace: Amazon.CDK.AWS.S3
Assembly: Amazon.CDK.AWS.S3.dll
Syntax (csharp)
public interface IReplicationTimeProperty
Syntax (vb)
Public Interface IReplicationTimeProperty
Remarks

Must be specified together with a Metrics block.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationtime.html

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;

ReplicationTimeProperty replicationTimeProperty = new ReplicationTimeProperty {
    Status = "status",
    Time = new ReplicationTimeValueProperty {
        Minutes = 123
    }
};

Synopsis

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.

Properties

Status

Specifies whether the replication time is enabled.

string Status { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationtime.html#cfn-s3-bucket-replicationtime-status

Time

A container specifying the time by which replication should be complete for all objects and operations on objects.

object Time { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationtime.html#cfn-s3-bucket-replicationtime-time

Back to top Generated by DocFX