DATASOURCE::PVTZ::Rules类型用于获取转发规则列表。
语法
{
"Type": "DATASOURCE::PVTZ::Rules",
"Properties": {
"EndpointId": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
---|---|---|---|---|---|
EndpointId | String | 否 | 是 | 出站终端节点ID。 | 无 |
返回值
Fn::GetAtt
- RuleIds:转发规则ID列表。
- Rules:转发规则详情列表。
属性名称 | 类型 | 描述 | 约束 |
---|---|---|---|
RuleIds | List | 转发规则ID列表。 | 无 |
Rules | List | 转发规则详情列表。 | 无 |
ForwardIp | List | 转发目标IP地址列表。 | 示例:
|
RuleId | String | 转发规则ID。 | 无 |
Vpcs | List | 关联的VPC列表。 | 示例:
|
EndpointName | String | 终端节点名称。 | 无 |
EndpointId | String | 终端节点ID。 | 无 |
RuleName | String | 转发规则名称。 | 无 |
Type | String | 转发类型。 | 取值: OUTBOUD:转发至外部IP。 |
CreateTime | String | 创建时间。 | 无 |
ZoneName | String | 转发Zone名称。 | 无 |
示例
JSON
格式{ "ROSTemplateFormatVersion": "2015-09-01", "Parameters": { "EndpointId": { "Type": "String", "Description": "EndpointId" } }, "Resources": { "ExtensionDataSource": { "Type": "DATASOURCE::PVTZ::Rules", "Properties": { "EndpointId": { "Ref": "EndpointId" } } } }, "Outputs": { "RuleIds": { "Description": "The list of rule IDs.", "Value": { "Fn::GetAtt": [ "ExtensionDataSource", "RuleIds" ] } }, "Rules": { "Description": "The list of rules.", "Value": { "Fn::GetAtt": [ "ExtensionDataSource", "Rules" ] } } } }