Show / Hide Table of Contents

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.

Inheritance
object
CfnBucketPropsMixin.ReplicationTimeProperty
Implements
CfnBucketPropsMixin.IReplicationTimeProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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.

See: 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.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.

See: 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.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

string

Remarks

See: 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

object

Remarks

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

Type union: either IResolvable or CfnBucketPropsMixin.IReplicationTimeValueProperty

Implements

CfnBucketPropsMixin.IReplicationTimeProperty
Back to top Generated by DocFX