Show / Hide Table of Contents

Class CustomFrequencyDetails

Frequency details model to set cron-based frequency

Inheritance
object
AbstractFrequencyDetails
CustomFrequencyDetails
Inherited Members
AbstractFrequencyDetails.Frequency
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DataintegrationService.Models
Assembly: OCI.DotNetSDK.Dataintegration.dll
Syntax
public class CustomFrequencyDetails : AbstractFrequencyDetails

Properties

CustomExpression

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

This holds the complete cron expression for this schedule, for example, 10 0/5 * * * ? that fires every 5 minutes, at 10 seconds after the minute (i.e. 10:00:10 am, 10:05:10 am, etc.)

In this article
Back to top