ALIYUN::VPC::VcoRouteEntry

更新时间:2025-03-31 01:42:32

ALIYUN::VPC::VcoRouteEntry类型用于为IPsec连接添加目的路由条目。

语法

{
  "Type": "ALIYUN::VPC::VcoRouteEntry",
  "Properties": {
    "NextHop": String,
    "RouteDest": String,
    "VpnConnectionId": String,
    "Weight": Integer,
    "Description": String
  }
}

属性

属性名称

类型

必须

允许更新

描述

约束

属性名称

类型

必须

允许更新

描述

约束

NextHop

String

目的路由条目的下一条。

RouteDest

String

目的路由条目的目标网段。

VpnConnectionId

String

IPsec 连接的 ID。

Weight

Integer

目的路由条目的权重值。

取值:

  • 0:表示低优先级。

  • 100:表示高优先级。

Description

String

目的路由条目的描述信息。

返回值

Fn::GetAtt

VpnConnectionId:IPsec 连接的 ID。

示例

YAML
JSON
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
  RouteDest:
    Type: String
    Description:
      en: The target segment of the destination routing entry.
    Required: true
  NextHop:
    Type: String
    Description:
      en: The next hop of the destination routing entry.
    Required: true
  VpnConnectionId:
    Type: String
    Description:
      en: IPsec Connection ID.
    Required: true
  Weight:
    Type: Number
    Description:
      en: |-
        The weight value of the destination routing entry.Value:
        0: Indicates low priority.
        100: Indicates high priority.
    AllowedValues:
      - 0
      - 100
    Required: true
Resources:
  VcoRouteEntry:
    Type: ALIYUN::VPC::VcoRouteEntry
    Properties:
      RouteDest:
        Ref: RouteDest
      NextHop:
        Ref: NextHop
      VpnConnectionId:
        Ref: VpnConnectionId
      Weight:
        Ref: Weight
Outputs:
  VpnConnectionId:
    Description: The ID of the VPN connection.
    Value:
      Fn::GetAtt:
        - VcoRouteEntry
        - VpnConnectionId
{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
    "RouteDest": {
      "Type": "String",
      "Description": {
        "en": "The target segment of the destination routing entry."
      },
      "Required": true
    },
    "NextHop": {
      "Type": "String",
      "Description": {
        "en": "The next hop of the destination routing entry."
      },
      "Required": true
    },
    "VpnConnectionId": {
      "Type": "String",
      "Description": {
        "en": "IPsec Connection ID."
      },
      "Required": true
    },
    "Weight": {
      "Type": "Number",
      "Description": {
        "en": "The weight value of the destination routing entry.Value:\n0: Indicates low priority.\n100: Indicates high priority."
      },
      "AllowedValues": [
        0,
        100
      ],
      "Required": true
    }
  },
  "Resources": {
    "VcoRouteEntry": {
      "Type": "ALIYUN::VPC::VcoRouteEntry",
      "Properties": {
        "RouteDest": {
          "Ref": "RouteDest"
        },
        "NextHop": {
          "Ref": "NextHop"
        },
        "VpnConnectionId": {
          "Ref": "VpnConnectionId"
        },
        "Weight": {
          "Ref": "Weight"
        }
      }
    }
  },
  "Outputs": {
    "VpnConnectionId": {
      "Description": "The ID of the VPN connection.",
      "Value": {
        "Fn::GetAtt": [
          "VcoRouteEntry",
          "VpnConnectionId"
        ]
      }
    }
  }
}
                        
  • 本页导读
  • 语法
  • 属性
  • 返回值
  • 示例