Show / Hide Table of Contents

Class MySqlChannelFetchError

MySQL server replication channel name and error from its fetch operation.

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

Properties

ChannelName

Declaration
[JsonProperty(PropertyName = "channelName")]
public string ChannelName { get; set; }
Property Value
Type Description
string

The name of the replication channel.

FetchError

Declaration
[Required(ErrorMessage = "FetchError is required.")]
[JsonProperty(PropertyName = "fetchError")]
public MySqlFetchError FetchError { get; set; }
Property Value
Type Description
MySqlFetchError
Remarks

Required

In this article
Back to top