语法
{
"Type": "ALIYUN::ECS::HpcCluster",
"Properties": {
"Name": String,
"Description": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
Name | String | 是 | 是 | HPC集群名称。 | |
Description | String | 否 | 是 | HPC集群描述。 | 长度为2~256个英文或中文字符,不能以http:// 或https:// 开头。 |
返回值
Fn::GetAtt
HpcClusterId:集群ID。
Name:集群名称。
示例
YAML
格式
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
格式
{
"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"
]
}
}
}
}