Bicep 錯誤碼 - BCP124
當您指定裝飾的語法類型不支援的裝飾專案時,就會發生此錯誤。
錯誤描述
The decorator <decorator-name> can only be attached to targets of type <data-type>, but the target has type <data-type>.
方案
根據數據類型使用有效的裝飾專案。
範例
下列範例會引發錯誤,因為 @maxValue()
是針對整數數據類型,而不是針對字串數據類型。
@maxValue(3)
param name string
您可以為資料類型提供正確的裝飾項目來修正錯誤:
@maxLength(3)
param name string
如需裝飾項目的清單,請參閱 裝飾專案。
下一步
如需 Bicep 錯誤和警告碼的詳細資訊,請參閱 Bicep 核心診斷。