日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

ALIYUN::CEN::CenInstance

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