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

ALIYUN::CEN::CenInstanceAttachment

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": {}
}