DATASOURCE::ThreatDetection::AntiBruteForceRules類型用於查詢防暴力破解規則基礎資訊。
文法
{
"Type": "DATASOURCE::ThreatDetection::AntiBruteForceRules",
"Properties": {
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 有效值:
|
傳回值
Fn::GetAtt
AntiBruteForceRules:防禦規則的詳情列表。
AntiBruteForceRuleIds:防禦規則的ID列表。
屬性名稱 | 類型 | 描述 | 約束 |
AntiBruteForceRuleIds | List | 防禦規則的ID列表。 | 無 |
AntiBruteForceRules | List | 防禦規則的詳情列表。 | 無 |
AntiBruteForceRuleId | String | 防禦規則的ID。 | 無 |
UuidList | List | 防暴力破解規則生效的伺服器的UUID列表。 | 無 |
AntiBruteForceRuleName | String | 防暴力破解規則的名稱。 | 無 |
FailCount | String | 設定帳號登入失敗次數的閾值。 | 無 |
Span | String | 設定帳號登入失敗的時間的閾值。 | 單位:分鐘。 |
DefaultRule | String | 防暴力破解規則是否設定為預設規則。 | 無 |
ForbiddenTime | String | 設定禁止帳號登入的時間長度。 | 單位:分鐘。 |
樣本
ROSTemplateFormatVersion: '2015-09-01'
Resources:
ExtensionDataSource:
Properties: {}
Type: DATASOURCE::ThreatDetection::AntiBruteForceRules
Outputs:
AntiBruteForceRuleIds:
Description: The list of anti brute force rule IDs.
Value:
Fn::GetAtt:
- ExtensionDataSource
- AntiBruteForceRuleIds
AntiBruteForceRules:
Description: The list of anti brute force rules.
Value:
Fn::GetAtt:
- ExtensionDataSource
- AntiBruteForceRules
{
"ROSTemplateFormatVersion": "2015-09-01",
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::ThreatDetection::AntiBruteForceRules",
"Properties": {}
}
},
"Outputs": {
"AntiBruteForceRules": {
"Description": "The list of anti brute force rules.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"AntiBruteForceRules"
]
}
},
"AntiBruteForceRuleIds": {
"Description": "The list of anti brute force rule IDs.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"AntiBruteForceRuleIds"
]
}
}
}
}