Bicep 錯誤碼 - BCP055
當您參考類型不存在的屬性時,就會發生此錯誤。
錯誤描述
Cannot access properties of type <type-name>. A <type-name> type is required.
範例
下列範例會引發錯誤,因為 未定義 string.bar :
type foo = string.bar
您可以移除參考來修正錯誤:
type foo = string
下一步
如需 Bicep 錯誤和警告碼的詳細資訊,請參閱 Bicep 核心診斷。