DATASOURCE::VPC::NatIpCidrs類型用於查詢NAT IP位址區段列表。
文法
{
"Type": "DATASOURCE::VPC::NatIpCidrs",
"Properties": {
"NatIpCidr": String,
"NatGatewayId": String,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
NatIpCidr | String | 否 | 是 | 要查詢的NAT IP位址區段。 | 無 |
NatGatewayId | String | 是 | 是 | 要查詢NAT IP位址區段的VPC NAT Gateway的執行個體ID。 | 無 |
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 有效值:
|
傳回值
Fn::GetAtt
NatIpCidrIds:NAT IP位址區段ID列表。
NatIpCidrs:NAT IP位址區段詳情列表。
屬性名稱 | 類型 | 描述 | 約束 |
NatIpCidrIds | List | NAT IP位址區段ID列表。 | 無 |
NatIpCidrs | List | NAT IP位址區段詳情列表。 | 無 |
Status | String | NAT IP位址區段的狀態。 | 取值: Available:可用狀態。 |
NatIpCidr | String | NAT IP位址區段。 | 無 |
NatGatewayId | String | NAT IP位址區段所屬的VPC NAT Gateway執行個體ID。 | 無 |
NatIpCidrId | String | NAT IP位址區段執行個體ID。 | 無 |
NatIpCidrDescription | String | NAT IP位址區段的描述資訊。 | 無 |
CreateTime | String | NAT IP位址區段的建立時間。 | 無 |
IsDefault | Boolean | 是否為預設NAT IP位址區段。 | 取值:
|
DryRun | Boolean | 是否只預檢此次請求。 | 取值:
|
樣本
ROSTemplateFormatVersion: '2015-09-01'
Parameters: {}
Resources:
ExtensionDataSource:
Type: DATASOURCE::VPC::NatIpCidrs
Properties:
NatIpCidr: 172.16.0.0/24
NatGatewayId: ngw-gw8v16wgvtq26vh59****
Outputs:
NatIpCidrIds:
Description: The list of nat ip cidr IDs.
Value:
Fn::GetAtt:
- ExtensionDataSource
- NatIpCidrIds
NatIpCidrs:
Description: The list of nat ip cidrs.
Value:
Fn::GetAtt:
- ExtensionDataSource
- NatIpCidrs
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::VPC::NatIpCidrs",
"Properties": {
"NatIpCidr": "172.16.0.0/24",
"NatGatewayId": "ngw-gw8v16wgvtq26vh59****"
}
}
},
"Outputs": {
"NatIpCidrIds": {
"Description": "The list of nat ip cidr IDs.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"NatIpCidrIds"
]
}
},
"NatIpCidrs": {
"Description": "The list of nat ip cidrs.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"NatIpCidrs"
]
}
}
}
}