阿里云支持在以下地域创建数据总线项目:
中国(杭州)
中国(上海)
中国(北京)
中国(张家口)
中国(深圳)
新加坡
马来西亚(吉隆坡)
德国(法兰克福)
语法
{
"Type": "ALIYUN::DATAHUB::Project",
"Properties": {
"Comment": String,
"ProjectName": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
Comment | String | 是 | 否 | 描述信息 | 长度为3~1024个字节。 |
ProjectName | String | 是 | 否 | 项目名称 | 长度为3~32个字符,以小写英文字母开头,可包含数字、英文字母(区分大小写)和下划线(_)。 |
返回值
Fn::GetAtt
ProjectName:项目名称。
示例
YAML
格式
ROSTemplateFormatVersion: '2015-09-01'
Description: Test DataHub Project
Parameters:
ProjectName:
Type: String
Default: mytest
Resources:
Project:
Type: ALIYUN::DATAHUB::Project
Properties:
Comment: Topic Project
ProjectName:
Ref: ProjectName
Outputs:
Project:
Value:
Fn::GetAtt:
- Project
- ProjectName
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Description": "Test DataHub Project",
"Parameters": {
"ProjectName": {
"Type": "String",
"Default": "mytest"
}
},
"Resources": {
"Project": {
"Type": "ALIYUN::DATAHUB::Project",
"Properties": {
"Comment": "Topic Project",
"ProjectName": {
"Ref": "ProjectName"
}
}
}
},
"Outputs": {
"Project": {
"Value": {
"Fn::GetAtt": [
"Project",
"ProjectName"
]
}
}
}
}