Amazon Comprehend · Schema

DeleteResourcePolicyRequest

DeleteResourcePolicyRequest schema

Machine LearningNatural Language ProcessingNLPText Analysis

Properties

Name Type Description
ResourceArn object
PolicyRevisionId object
View JSON Schema on GitHub

JSON Schema

openapi.yml-delete-resource-policy-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-comprehend/refs/heads/main/json-schema/openapi.yml-delete-resource-policy-request-schema.json",
  "title": "DeleteResourcePolicyRequest",
  "description": "DeleteResourcePolicyRequest schema",
  "type": "object",
  "properties": {
    "ResourceArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComprehendModelArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the custom model version that has the policy to delete."
        }
      ]
    },
    "PolicyRevisionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PolicyRevisionId"
        },
        {
          "description": "The revision ID of the policy to delete."
        }
      ]
    }
  },
  "required": [
    "ResourceArn"
  ]
}