全部產品
Search
文件中心

:ALIYUN::VPC::HaVipAssociation

更新時間:Oct 09, 2024

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:Elastic Compute Service 執行個體。

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