Amazon IoT Core · Schema

CreatePolicyResponse

The output from the CreatePolicy operation.

Device ManagementIoTMQTTMessage Routing

Properties

Name Type Description
policyName object
policyArn object
policyDocument object
policyVersionId object
View JSON Schema on GitHub

JSON Schema

iot-core-create-policy-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-core/refs/heads/main/json-schema/iot-core-create-policy-response-schema.json",
  "title": "CreatePolicyResponse",
  "description": "The output from the CreatePolicy operation.",
  "type": "object",
  "properties": {
    "policyName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PolicyName"
        },
        {
          "description": "The policy name."
        }
      ]
    },
    "policyArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PolicyArn"
        },
        {
          "description": "The policy ARN."
        }
      ]
    },
    "policyDocument": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PolicyDocument"
        },
        {
          "description": "The JSON document that describes the policy."
        }
      ]
    },
    "policyVersionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PolicyVersionId"
        },
        {
          "description": "The policy version ID."
        }
      ]
    }
  }
}