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

ALIYUN::VPC::HaVipAssociation

ALIYUN::VPC::HaVipAssociation類型用于將HaVip綁定到ECS實例。

重要
  • 1個ECS實例最多同時可以綁定5個HaVip。

  • 1個HaVip最多同時可以綁定2個ECS實例。

語法

{
  "Type": "ALIYUN::VPC::HaVipAssociation",
  "Properties": {
    "HaVipId":  String,
    "InstanceId":  String,
    "InstanceType": String
  }
}

屬性

屬性名稱

類型

必須

允許更新

描述

約束

HaVipId

String

高可用虛擬IP ID。

無。

InstanceId

String

ECS實例ID。

無。

InstanceType

String

要綁定 HaVip 的實例類型。

取值:

  • EcsInstance:云服務器 ECS 實例。

  • NetworkInterface:彈性網卡實例,當綁定 HaVip 的實例為彈性網卡,該參數必須填寫。

返回值

Fn::GetAtt

無。

示例

ROSTemplateFormatVersion: '2015-09-01'
Parameters:
  InstanceId:
    Type: String
    Description: ECS Instance ID.
    Label: InstanceId
  HaVipID:
    Type: String
    Label: HaVipID
    Description: HaVip ID.
Resources:
  HaVipAssociation:
    Type: ALIYUN::VPC::HaVipAssociation
    Properties:
      InstanceId:
        Ref: InstanceId
      HaVipId:
        Ref: HaVipID
{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
    "InstanceId": {
      "Type": "String",
      "Description": "ECS Instance ID.",
      "Label": "InstanceId"
    },
    "HaVipID": {
      "Type": "String",
      "Label": "HaVipID",
      "Description": "HaVip ID."
    }
  },
  "Resources": {
    "HaVipAssociation": {
      "Type": "ALIYUN::VPC::HaVipAssociation",
      "Properties": {
        "InstanceId": {
          "Ref": "InstanceId"
        },
        "HaVipId": {
          "Ref": "HaVipID"
        }
      }
    }
  }
}