Show / Hide Table of Contents

Class ReplicationSource

The details of a replication source bucket that replicates to a target destination bucket.

Inheritance
object
ReplicationSource
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ObjectstorageService.Models
Assembly: OCI.DotNetSDK.Objectstorage.dll
Syntax
public class ReplicationSource

Properties

PolicyName

Declaration
[Required(ErrorMessage = "PolicyName is required.")]
[JsonProperty(PropertyName = "policyName")]
public string PolicyName { get; set; }
Property Value
Type Description
string

The name of the policy.

Remarks

Required

SourceBucketName

Declaration
[Required(ErrorMessage = "SourceBucketName is required.")]
[JsonProperty(PropertyName = "sourceBucketName")]
public string SourceBucketName { get; set; }
Property Value
Type Description
string

The source bucket replicating data from.

Remarks

Required

SourceRegionName

Declaration
[Required(ErrorMessage = "SourceRegionName is required.")]
[JsonProperty(PropertyName = "sourceRegionName")]
public string SourceRegionName { get; set; }
Property Value
Type Description
string

The source region replicating data from, for example "us-ashburn-1".

Remarks

Required

In this article
Back to top