All Products
Search
Document Center

Resource Orchestration Service:ALIYUN::ECS::HpcCluster

更新時間:Jun 03, 2026

ALIYUN::ECS::HpcCluster creates an HPC cluster.

Syntax

{
  "Type": "ALIYUN::ECS::HpcCluster",
  "Properties": {
    "Name": String,
    "Description": String
  }
}

Properties

Parameter

Data type

Required

Editable

Description

Constraint

Name

String

Yes

Yes

HPC cluster name.

  • 2 to 128 characters.

  • Must start with a letter. Cannot start with http:// or https://.

  • Can contain digits, underscores (_), and hyphens (-).

Description

String

No

Yes

HPC cluster description.

2 to 256 English or Chinese characters. Cannot start with http:// or https://.

Return values (Fn::GetAtt)

Fn::GetAtt

  • HpcClusterId: HPC cluster ID.

  • Name: HPC cluster name.

Examples

YAML format

ROSTemplateFormatVersion: '2015-09-01'
Resources:
  HpcCluster:
    Type: 'ALIYUN::ECS::HpcCluster'
    Properties:
      Name:
        Ref: Name
      Description:
        Ref: Description
Parameters:
  Name:
    Type: String
    Description: >-
      The name of the HPC cluster. The name must be 2 to 128 characters in
      length. It must

      start with a letter but cannot start with http:// or https://. It can
      contain letters,

      digits, colons (:), underscores (_), and hyphens (-).
  Description:
    Type: String
    Description: >-
      The description of the HPC cluster. The description must be 2 to 256
      characters in

      length. It cannot start with http:// or https://. Default value: empty
      string.
Outputs:
  HpcClusterId:
    Description: The ID of the HPC cluster.
    Value:
      'Fn::GetAtt':
        - HpcCluster
        - HpcClusterId
  Name:
    Description: The name of the HPC cluster.
    Value:
      'Fn::GetAtt':
        - HpcCluster
        - Name

JSON format

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Resources": {
    "HpcCluster": {
      "Type": "ALIYUN::ECS::HpcCluster",
      "Properties": {
        "Name": {
          "Ref": "Name"
        },
        "Description": {
          "Ref": "Description"
        }
      }
    }
  },
  "Parameters": {
    "Name": {
      "Type": "String",
      "Description": "The name of the HPC cluster. The name must be 2 to 128 characters in length. It must\nstart with a letter but cannot start with http:// or https://. It can contain letters,\ndigits, colons (:), underscores (_), and hyphens (-)."
    },
    "Description": {
      "Type": "String",
      "Description": "The description of the HPC cluster. The description must be 2 to 256 characters in\nlength. It cannot start with http:// or https://. Default value: empty string."
    }
  },
  "Outputs": {
    "HpcClusterId": {
      "Description": "The ID of the HPC cluster.",
      "Value": {
        "Fn::GetAtt": [
          "HpcCluster",
          "HpcClusterId"
        ]
      }
    },
    "Name": {
      "Description": "The name of the HPC cluster.",
      "Value": {
        "Fn::GetAtt": [
          "HpcCluster",
          "Name"
        ]
      }
    }
  }
}