Show / Hide Table of Contents

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
CfnBucket.IReplicationTimeProperty
Namespace: Amazon.CDK.AWS.S3
Assembly: Amazon.CDK.AWS.S3.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.

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

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

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.

public object Time { get; set; }
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

Implements

CfnBucket.IReplicationTimeProperty
Back to top Generated by DocFX