GetPolicyResponse

The structure representing the getPolicyResponse.

AmazonApplication PerformanceProfilingDevOpsMachine Learning

Properties

Name Type Description
policy object
revisionId object
View JSON Schema on GitHub

JSON Schema

amazon-codeguru-profiler-get-policy-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeguru-profiler/refs/heads/main/json-schema/amazon-codeguru-profiler-get-policy-response-schema.json",
  "title": "GetPolicyResponse",
  "description": "The structure representing the <code>getPolicyResponse</code>.",
  "type": "object",
  "properties": {
    "policy": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The JSON-formatted resource-based policy attached to the <code>ProfilingGroup</code>."
        }
      ]
    },
    "revisionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RevisionId"
        },
        {
          "description": "A unique identifier for the current revision of the returned policy."
        }
      ]
    }
  },
  "required": [
    "policy",
    "revisionId"
  ]
}