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 경고 및 오류를 참조 하세요.