全部產品
Search
文件中心

:ALIYUN::CEN::CenInstance

更新時間:Jun 25, 2024

ALIYUN::CEN::CenInstance類型用於建立雲企業網執行個體。

文法

{
  "Type": "ALIYUN::CEN::CenInstance",
  "Properties": {
    "Description": String,
    "Name": String,
    "ProtectionLevel": String,
    "ResourceGroupId": String,
    "Tags": List
  }
}

屬性

屬性名稱

類型

必須

允許更新

描述

約束

Description

String

雲企業網執行個體的描述資訊。

長度為2~256個字元,必須以英文字母或漢字開頭,但不能以http://https://開頭。

Name

String

雲企業網執行個體的名稱。

長度為2~128個字元,必須以英文字母或漢字開頭,但不能以http://https://開頭。可包含英文字母、漢字、數字、半形句號(.)、底線(_)和短劃線(-)。

ProtectionLevel

String

網段重疊衝突的層級。

取值:REDUCED。表示可以有網段重疊,但是不能完全相等。

ResourceGroupId

String

資源群組ID。

Tags

List

雲企業網執行個體的標籤。

最多支援添加20個標籤。

更多資訊,請參見Tags屬性

Tags文法

"Tags": [
  {
    "Key": String,
    "Value": String
  }
]  

Tags屬性

屬性名稱

類型

必須

允許更新

描述

約束

Key

String

標籤鍵。

長度為1~128個字元,不能以aliyunacs:開頭,不能包含http://或者https://

Value

String

標籤值。

長度為0~128個字元,不能以aliyunacs:開頭,不能包含http://或者https://

傳回值

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"
        ]
      }
    }
  }
}