DATASOURCE::NAS::Zones類型用於查詢可用性區域列表。
文法
{
"Type": "DATASOURCE::NAS::Zones",
"Properties": {
"FileSystemType": String,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
FileSystemType | String | 否 | 是 | 檔案系統類型。 | 取值:
|
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 有效值:
|
返回資料(Fn::GetAtt)
ZoneIds:可用性區域ID列表。
Zones:可用性區域詳情列表。
屬性名稱 | 類型 | 描述 | 約束 |
ZoneIds | List | 可用性區域ID列表。 | 無 |
Zones | List | 可用性區域詳情列表。 | 無 |
ZoneId | String | 可用性區域ID。 | 取值樣本:cn-hangzhou-b。 |
InstanceTypes | List | 執行個體類型資訊集合。 | 取值樣本:
參數說明:
|
樣本
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"FileSystemType": {
"Type": "String",
"Description": "The type of the file system. Default value: all. Valid values:\nstandard: General-purpose NAS file system\nextreme: Extreme NAS file system\ncpfs: CPFS file system",
"Default": "standard"
}
},
"Resources": {
"Zones": {
"Type": "DATASOURCE::NAS::Zones",
"Properties": {
"FileSystemType": {
"Ref": "FileSystemType"
}
}
}
},
"Outputs": {
"ZoneIds": {
"Description": "The list of zone IDs.",
"Value": {
"Fn::GetAtt": [
"Zones",
"ZoneIds"
]
}
},
"Zones": {
"Description": "The list of zones.",
"Value": {
"Fn::GetAtt": [
"Zones",
"Zones"
]
}
}
}
}