ALIYUN::CEN::CenInstance類型用於建立雲企業網執行個體。
文法
{
"Type": "ALIYUN::CEN::CenInstance",
"Properties": {
"Description": String,
"Name": String,
"ProtectionLevel": String,
"ResourceGroupId": String,
"Tags": List
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
Description | String | 否 | 是 | 雲企業網執行個體的描述資訊。 | 長度為2~256個字元,必須以英文字母或漢字開頭,但不能以 |
Name | String | 否 | 是 | 雲企業網執行個體的名稱。 | 長度為2~128個字元,必須以英文字母或漢字開頭,但不能以 |
ProtectionLevel | String | 否 | 否 | 網段重疊衝突的層級。 | 取值:REDUCED。表示可以有網段重疊,但是不能完全相等。 |
ResourceGroupId | String | 否 | 是 | 資源群組ID。 | 無 |
Tags | List | 否 | 是 | 雲企業網執行個體的標籤。 | 最多支援添加20個標籤。 更多資訊,請參見Tags屬性。 |
Tags文法
"Tags": [
{
"Key": String,
"Value": String
}
]
Tags屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
Key | String | 是 | 否 | 標籤鍵。 | 長度為1~128個字元,不能以 |
Value | String | 否 | 否 | 標籤值。 | 長度為0~128個字元,不能以 |
傳回值
Fn::GetAtt
CenId:雲企業網執行個體ID。
樣本
YAML
格式
ROSTemplateFormatVersion: '2015-09-01'
Parameters: {}
Resources:
CenInstance:
Type: ALIYUN::CEN::CenInstance
Properties:
Name: TestCen
Outputs:
CenId:
Description: The ID of the request.
Value:
Fn::GetAtt:
- CenInstance
- CenId
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
},
"Resources": {
"CenInstance": {
"Type": "ALIYUN::CEN::CenInstance",
"Properties": {
"Name": "TestCen"
}
}
},
"Outputs": {
"CenId": {
"Description": "The ID of the request.",
"Value": {
"Fn::GetAtt": [
"CenInstance",
"CenId"
]
}
}
}
}