DATASOURCE::VPC::RouteEntries类型用于查询路由条目列表。

语法

{
  "Type": "DATASOURCE::VPC::RouteEntries",
  "Properties": {
    "NextHopType": String,
    "RouteEntryId": String,
    "RouteTableId": String,
    "IpVersion": String,
    "RouteEntryName": String,
    "RouteEntryType": String,
    "NextHopId": String,
    "DestinationCidrBlock": String
  }
}

属性

属性名称 类型 必须 允许更新 描述 约束
NextHopType String 下一跳实例类型。 取值:
  • Instance(默认值):ECS实例。
  • HaVip:高可用虚拟IP。
  • VpnGateway:VPN网关。
  • NatGateway:NAT网关。
  • NetworkInterface:辅助弹性网卡。
  • RouterInterface:路由器接口。
  • IPv6Gateway:IPv6网关。
  • Attachment:转发路由器。
RouteEntryId String 路由条目ID。
RouteTableId String 路由表ID。
IpVersion String IP协议版本。 取值:
  • IPv4:IPv4协议。
  • IPv6:IPv6协议。
RouteEntryName String 路由条目的名称。
RouteEntryType String 路由条目的类型。 取值:
  • Custom:自定义路由。
  • System:系统路由。
  • BGP:BGP路由。
  • CEN:云企业网CEN(Cloud Enterprise Network)路由。
NextHopId String 下一跳实例ID。
DestinationCidrBlock String 路由条目的目标网段。 支持IPv4和IPv6网段。

取值示例:192.168.2.0/24。

返回数据(Fn::GetAtt)

  • RouteEntryIds:路由条目ID列表。
  • RouteEntries:路由条目信息详情。
属性名称 类型 描述 约束
RouteEntryIds List 路由条目ID列表。 取值示例:['rte-bp1mnnr2al0naomnp****', 'rte-hu2mnnr3al0naomnp****']
RouteEntries List 路由条目信息详情。
Status String 路由条目的状态。 取值:
  • Pending:配置中。
  • Available:可用。
  • Modifying:修改中。
Type String 路由条目的类型。 取值:
  • Custom:自定义路由。
  • System:系统路由。
  • BGP:BGP路由。
  • CEN:云企业网CEN(Cloud Enterprise Network)路由。
IpVersion String IP协议版本。 取值:
  • IPv4:IPv4协议。
  • IPv6:IPv6协议。
Description String 路由条目的描述信息。
RouteEntryName String 路由条目的名称。
DestinationCidrBlock String 路由条目的目标网段。
RouteEntryId String 路由条目的ID。
RouteTableId String 路由表ID。
NextHops List 下一跳信息。 取值示例:[ { "NextHopId": "eni-bp16v0fuhulfl5e1****", "NextHopRelatedInfo": {}, "NextHopType": "NetworkInterface" }]

示例

JSON格式

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
    "RouteTableId": {
      "Type": "String",
      "Description": "The ID of the route."
    }
  },
  "Resources": {
    "ExtensionDataSource": {
      "Type": "DATASOURCE::VPC::RouteEntries",
      "Properties": {
        "RouteTableId": {
          "Ref": "RouteTableId"
        }
      }
    }
  },
  "Outputs": {
    "RouteEntries": {
      "Description": "The list of The route entries.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "RouteEntries"
        ]
      }
    },
    "RouteEntryIds": {
      "Description": "the list of the route entry ids.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "RouteEntryIds"
        ]
      }
    }
  }
}