DATASOURCE::ECS::SecurityGroups類型用於查詢安全性群組的基本資料。
文法
{
"Type": "DATASOURCE::ECS::SecurityGroups",
"Properties": {
"VpcId": String,
"SecurityGroupName": String,
"ResourceGroupId": String,
"NetworkType": String,
"SecurityGroupId": String,
"SecurityGroupType": String,
"SecurityGroupIds": List,
"Tags": List,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
VpcId | String | 否 | 是 | 安全性群組所屬的專用網路ID。 | 無 |
SecurityGroupName | String | 否 | 是 | 安全性群組名稱。 | 無 |
ResourceGroupId | String | 否 | 是 | 安全性群組所屬的資源群組ID。 | 使用該參數過濾資源時,資源數量不能超過1000個。 |
NetworkType | String | 否 | 是 | 安全性群組的網路類型。 | 取值:
|
SecurityGroupId | String | 否 | 是 | 安全性群組ID。 | 無 |
SecurityGroupType | String | 否 | 是 | 安全性群組類型。 | 取值:
說明 如果不指定該參數,將查詢所有類型的安全性群組。 |
SecurityGroupIds | List | 否 | 是 | 安全性群組ID列表。 | 最多支援100個安全性群組ID,ID之間用半形逗號(,)分隔。 |
Tags | List | 否 | 是 | 安全性群組的標籤列表。 | 最多支援指定20個標籤。 更多資訊,請參見Tags屬性。 |
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 有效值:
|
Tags文法
"Tags": [
{
"Value": String,
"Key": String
}
]
Tags屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
Value | String | 否 | 否 | 安全性群組的標籤值。 | 無 |
Key | String | 是 | 否 | 安全性群組的標籤鍵。 | 無 |
返回資料(Fn::GetAtt)
SecurityGroupIds:安全性群組ID列表。
SecurityGroups:安全性群組詳情列表。
屬性名稱 | 類型 | 描述 | 約束 |
SecurityGroupIds | List | 安全性群組ID列表。 | 無 |
SecurityGroups | List | 安全性群組詳情列表。 | 無 |
ServiceManaged | Boolean | 安全性群組的使用者是否為雲產品或虛商。 | 取值:
|
Description | String | 安全性群組的描述資訊。 | 無 |
SecurityGroupId | String | 安全性群組ID。 | 無 |
ResourceGroupId | String | 安全性群組所屬的資源群組ID。 | 無 |
SecurityGroupName | String | 安全性群組名稱。 | 無 |
SecurityGroupType | String | 安全性群組的類型。 | 取值:
|
Tags | List | 安全性群組的標籤。 | 無 |
樣本
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Resources": {
"SecurityGroups": {
"Type": "DATASOURCE::ECS::SecurityGroups",
"Properties": {
"SecurityGroupId": "sg-bp1ja9p6tw8b6xed****"
}
}
},
"Outputs": {
"Images": {
"Value": {
"Fn::GetAtt": [
"SecurityGroups",
"SecurityGroups"
]
}
},
"ImageIds": {
"Value": {
"Fn::GetAtt": [
"SecurityGroups",
"SecurityGroupIds"
]
}
}
}
}