All Products
Search
Document Center

Resource Orchestration Service:ALIYUN::EMR::FlowProject

Last Updated:Jun 18, 2026

Creates a data development project.

Syntax

{
  "Type": "ALIYUN::EMR::FlowProject",
  "Properties": {
    "Description": String,
    "FlowProjectName": String,
    "ResourceGroupId": String
  }
}

Properties

Property

Type

Required

Editable

Description

Constraint

Description

String

Yes

Yes

The description of the project.

None.

FlowProjectName

String

Yes

Yes

The name of the project.

None.

ResourceGroupId

String

No

No

The ID of the resource group to which the EMR cluster and its Elastic Compute Service (ECS) node instances belong.

None.

Return values

Fn::GetAtt

  • FlowProjectName: the name of the project.

  • Description: the description of the project.

  • UserId: the ID of the Alibaba Cloud account.

  • CreateTime: the time when the project was created.

  • FlowProjectId: the ID of the project.

  • GmtModified: the time when the project was modified.

Examples

  • YAML format

    ROSTemplateFormatVersion: '2015-09-01'
    Parameters: {}
    Resources:
      ExtensionResource:
        Type: ALIYUN::EMR::FlowProject
        Properties:
          Description: TestFlowProjectDescription
          FlowProjectName: TestFlowProject
    Outputs:
      FlowProjectName:
        Description: The name of the project.
        Value:
          Fn::GetAtt:
            - ExtensionResource
            - FlowProjectName
      Description:
        Description: The description of the project.
        Value:
          Fn::GetAtt:
            - ExtensionResource
            - Description
      UserId:
        Description: The ID of the primary account.
        Value:
          Fn::GetAtt:
            - ExtensionResource
            - UserId
      CreateTime:
        Description: The time when the project was created.
        Value:
          Fn::GetAtt:
            - ExtensionResource
            - CreateTime
      FlowProjectId:
        Description: The ID of the project.
        Value:
          Fn::GetAtt:
            - ExtensionResource
            - FlowProjectId
      GmtModified:
        Description: The time when the project was modified.
        Value:
          Fn::GetAtt:
            - ExtensionResource
            - GmtModified
  • JSON format

    {
      "ROSTemplateFormatVersion": "2015-09-01",
      "Parameters": {
      },
      "Resources": {
        "ExtensionResource": {
          "Type": "ALIYUN::EMR::FlowProject",
          "Properties": {
            "Description": "TestFlowProjectDescription",
            "FlowProjectName": "TestFlowProject"
          }
        }
      },
      "Outputs": {
        "FlowProjectName": {
          "Description": "The name of the project.",
          "Value": {
            "Fn::GetAtt": [
              "ExtensionResource",
              "FlowProjectName"
            ]
          }
        },
        "Description": {
          "Description": "The description of the project.",
          "Value": {
            "Fn::GetAtt": [
              "ExtensionResource",
              "Description"
            ]
          }
        },
        "UserId": {
          "Description": "The ID of the primary account.",
          "Value": {
            "Fn::GetAtt": [
              "ExtensionResource",
              "UserId"
            ]
          }
        },
        "CreateTime": {
          "Description": "The time when the project was created.",
          "Value": {
            "Fn::GetAtt": [
              "ExtensionResource",
              "CreateTime"
            ]
          }
        },
        "FlowProjectId": {
          "Description": "The ID of the project.",
          "Value": {
            "Fn::GetAtt": [
              "ExtensionResource",
              "FlowProjectId"
            ]
          }
        },
        "GmtModified": {
          "Description": "The time when the project was modified.",
          "Value": {
            "Fn::GetAtt": [
              "ExtensionResource",
              "GmtModified"
            ]
          }
        }
      }
    }