RuleDecision 스키마

RuleDecision 스키마

이 규칙이 요청과 일치할 때 적용되는 결과예요. deny는 항상 우선해요. 정책의 어떤 규칙이 decision: deny로 일치하면, 다른 규칙이 decision: allow로 일치해도 요청은 거부돼요.

출처: 문서

본문

스키마 — RuleDecision · 유형: string

이 규칙이 요청과 일치할 때 적용되는 결과예요. deny는 항상 우선해요. 정책의 어떤 규칙이 decision: deny로 일치하면, 다른 규칙이 decision: allow로 일치해도 요청은 거부돼요.

{
  "description": "Outcome applied when this rule matches a request. `deny` always wins: if any rule in the policy matches with `decision: deny`, the request is denied even if other rules match with `decision: allow`.\n",
  "enum": [
    "allow",
    "deny"
  ],
  "examples": [
    "allow"
  ],
  "type": "string"
}

더 알아보기 (Learn more)