Bicep 錯誤/警告碼 - BCP083
當您參考看似錯字的類型屬性時,就會發生此錯誤/警告。
錯誤/警告描述
The type <type-definition> does not contain property <property-name>. Did you mean <property-name>?
範例
下列範例會引發錯誤,因為 foo.type1 看起來像錯字。
type foo = {
type: string
}
type bar = foo.type1
您可以修正錯誤字來修正錯誤:
type foo = {
type: string
}
type bar = foo.type
下一步
如需 Bicep 錯誤和警告碼的詳細資訊,請參閱 Bicep 警告和錯誤。