Show / Hide Table of Contents

Class CopyPolicy

A policy of a DB system to schedule cross-region DB system backup copy.

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

Properties

BackupCopyRetentionInDays

Declaration
[JsonProperty(PropertyName = "backupCopyRetentionInDays")]
public int? BackupCopyRetentionInDays { get; set; }
Property Value
Type Description
int?

Number of days to retain the copied DB system backup.

CopyToRegion

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

The destination region name to which the DB system backup will be copied.

Remarks

Required

In this article
Back to top