Skip to content

ScheduleProps

Properties for defining a Schedule.

See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-fnf-schedule

Initializer

using AlibabaCloud.SDK.ROS.CDK.Fnf;
new ScheduleProps {
    object CronExpression,
    object FlowName,
    object ScheduleName,
    object Description = null,
    object Enable = null,
    object Payload = null
};

Properties

Name Type Description
CronExpression object Property cronExpression: Cron expression.
FlowName object Property flowName: Flow name.
ScheduleName object Property scheduleName: The name of the timed schedule.
Description object Property description: Description of the schedule.
Enable object Property enable: Whether enable schedule.
Payload object Property payload: The trigger message of the timed schedule.

CronExpressionRequired

public object CronExpression { get; set; }
  • Type: object

Property cronExpression: Cron expression.


FlowNameRequired

public object FlowName { get; set; }
  • Type: object

Property flowName: Flow name.


ScheduleNameRequired

public object ScheduleName { get; set; }
  • Type: object

Property scheduleName: The name of the timed schedule.

The name must meet the following requirements:

  • It can contain letters (a-z and A-Z), digits (0-9), underscores (_), and hyphens (-).
  • It is case-sensitive.
  • It must be 1 to 128 characters in length.

DescriptionOptional

public object Description { get; set; }
  • Type: object

Property description: Description of the schedule.


EnableOptional

public object Enable { get; set; }
  • Type: object

Property enable: Whether enable schedule.


PayloadOptional

public object Payload { get; set; }
  • Type: object

Property payload: The trigger message of the timed schedule.

The message must be in the JSON format.