DATASOURCE::CEN::CenRouteMaps类型用于查询路由策略信息。
语法
{
"Type": "DATASOURCE::CEN::CenRouteMaps",
"Properties": {
"TransitRouterRouteTableId": String,
"TransmitDirection": String,
"CenId": String,
"CenRegionId": String,
"RouteMapId": String,
"RefreshOptions": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
TransitRouterRouteTableId | String | 否 | 是 | 路由策略关联的转发路由器的路由表ID。 | 无 |
TransmitDirection | String | 否 | 是 | 路由策略的应用方向。 | 取值:
|
CenId | String | 是 | 是 | 云企业网实例ID。 | 无 |
CenRegionId | String | 否 | 是 | 路由策略应用的地域ID。 | 您可以通过调用DescribeChildInstanceRegions接口获取地域ID。 |
RouteMapId | String | 否 | 是 | 路由策略ID。 | 无 |
RefreshOptions | String | 否 | 是 | 当资源栈更新时,数据源资源的刷新策略。 | 有效值:
|
返回数据(Fn::GetAtt)
RouteMapIds:路由策略ID列表。
RouteMaps:路由策略信息列表。
属性名称 | 类型 | 描述 | 约束 |
RouteMapIds | List | 路由策略ID列表。 | 无 |
RouteMaps | List | 路由策略信息列表。 | 无 |
Status | String | 路由策略的状态。 | 取值:
|
RouteMapId | String | 路由策略ID。 | 无 |
TransmitDirection | String | 路由策略的应用方向。 | 无 |
SourceInstanceIdsReverseMatch | Boolean | 是否使用了源实例ID列表的排除匹配模式。 | 取值:
|
CenRegionId | String | 路由策略应用的地域ID。 | 无 |
CenId | String | 云企业网实例ID。 | 无 |
Priority | Number | 路由策略的优先级。 | 优先级数字越小表示优先级越高。 |
TransitRouterRouteTableId | String | 路由策略关联的转发路由器的路由表ID。 | 无 |
CommunityOperateMode | String | Community的执行模式。 | 取值:
|
MapResult | String | 所有匹配条件都通过后的策略行为。 | 取值:
|
CommunityMatchMode | String | Community的匹配模式。 | 取值:
|
Description | String | 路由策略的描述信息。 | 无 |
AsPathMatchMode | String | ASPath的匹配模式。 | 无 |
Preference | Integer | 要修改的路由的优先级。 | 优先级数字越小表示优先级越高。 |
DestinationInstanceIdsReverseMatch | Boolean | 是否使用了目的实例ID列表的排除匹配模式。 | 取值:
|
CidrMatchMode | String | 前缀的匹配模式。 | 取值:
|
NextPriority | Integer | 关联的下一条路由策略的优先级。 | 无 |
SourceRegionIds | List | 路由需匹配的源地域ID列表。 | 无 |
SourceChildInstanceTypes | List | 路由需匹配的源实例类型列表。 | 无 |
DestinationRouteTableIds | List | 路由需匹配的目的路由表ID列表。 | 无 |
SourceInstanceIds | List | 路由需匹配的源实例ID列表。 | 无 |
DestinationCidrBlocks | List | 路由需匹配的前缀列表。 | 无 |
SourceRouteTableIds | List | 路由需匹配的源路由表ID列表。 | 无 |
MatchCommunitySet | List | 路由需匹配的Community集合。 | 无 |
PrependAsPath | List | 地域网关接收或发布路由时附加的ASPath。 | 无 |
RouteTypes | List | 路由需匹配的路由类型列表。 | 无 |
DestinationChildInstanceTypes | List | 路由需匹配的目的实例类型列表。 | 无 |
DestinationInstanceIds | List | 路由需匹配的目的实例ID列表。 | 无 |
MatchAsns | List | 路由需匹配的ASPath列表。 | 无 |
OperateCommunitySet | List | 要执行的Community集合。 | 无 |
示例
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"CenId": {
"Type": "String",
"Description": "The ID of the CEN instance."
}
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::CEN::CenRouteMaps",
"Properties": {
"CenId": {
"Ref": "CenId"
}
}
}
},
"Outputs": {
"RouteMapIds": {
"Description": "The list of The RouteMap ids.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"RouteMapIds"
]
}
},
"RouteMaps": {
"Description": "The information about RouteMaps.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"RouteMaps"
]
}
}
}
}
YAML
格式
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
CenId:
Type: String
Description: The ID of the CEN instance.
Resources:
ExtensionDataSource:
Type: DATASOURCE::CEN::CenRouteMaps
Properties:
CenId:
Ref: CenId
Outputs:
RouteMapIds:
Description: The list of The RouteMap ids.
Value:
Fn::GetAtt:
- ExtensionDataSource
- RouteMapIds
RouteMaps:
Description: The information about RouteMaps.
Value:
Fn::GetAtt:
- ExtensionDataSource
- RouteMaps