CreateWorkflowDefinition
Define and create data development workflows on Alibaba Cloud DataWorks using standardized FlowSpec configurations to streamline data processing and management tasks.
Instructions
创建数据开发工作流
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ProjectId | No | DataWorks工作空间的ID | |
Spec | Yes | 描述这个工作流的FlowSpec信息 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ProjectId": {
"description": "DataWorks工作空间的ID"
},
"Spec": {
"description": "描述这个工作流的FlowSpec信息",
"type": "string"
}
},
"required": [
"Spec"
],
"type": "object"
}