ALIYUN::CEN::CenInstanceAttachment類型用于加載網絡實例到云企業網實例中。
語法
{
"Type": "ALIYUN::CEN::CenInstanceAttachment",
"Properties": {
"ChildInstanceRegionId": String,
"ChildInstanceType": String,
"ChildInstanceId": String,
"CenId": String,
"ChildInstanceOwnerId": Integer
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
CenId | String | 是 | 否 | 云企業網實例的ID。 | 無。 |
ChildInstanceId | String | 是 | 否 | 指定待加載的網絡實例的ID。 | 無。 |
ChildInstanceRegionId | String | 是 | 否 | 網絡實例所在的地域。 | 無。 |
ChildInstanceType | String | 是 | 否 | 網絡實例的類型。 | 可用值:VPC、VBR、CCN。 |
ChildInstanceOwnerId | Integer | 否 | 否 | 跨賬號加載場景下,網絡實例所屬賬號的UID。 | 無。 |
返回值
Fn::GetAtt
無。
示例
YAML
格式
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
VpcId:
Type: String
AssociationProperty: ALIYUN::ECS::VPC::VPCId
CenId:
Type: String
Description: The ID of the CEN instance.
ChildInstanceOwnerId:
Type: Number
Description: The account ID to which the network belongs.
Resources:
CenInstanceAttachment:
Type: ALIYUN::CEN::CenInstanceAttachment
Properties:
ChildInstanceRegionId: cn-beijing
ChildInstanceType: VPC
ChildInstanceId:
Ref: VpcId
CenId:
Ref: CenId
ChildInstanceOwnerId:
Ref: ChildInstanceOwnerId
Outputs: {}
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"VpcId": {
"Type": "String",
"AssociationProperty": "ALIYUN::ECS::VPC::VPCId"
},
"CenId": {
"Type": "String",
"Description": "The ID of the CEN instance."
},
"ChildInstanceOwnerId": {
"Type": "Number",
"Description": "The account ID to which the network belongs."
}
},
"Resources": {
"CenInstanceAttachment": {
"Type": "ALIYUN::CEN::CenInstanceAttachment",
"Properties": {
"ChildInstanceRegionId": "cn-beijing",
"ChildInstanceType": "VPC",
"ChildInstanceId": {
"Ref": "VpcId"
},
"CenId": {
"Ref": "CenId"
},
"ChildInstanceOwnerId": {
"Ref": "ChildInstanceOwnerId"
}
}
}
},
"Outputs": {}
}
文檔內容是否對您有幫助?