CreatePolicyVersionResponse

The output of the CreatePolicyVersion operation.

Device ManagementFleet ManagementIoTOTA Updates

Properties

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

JSON Schema

iot-device-management-create-policy-version-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-device-management/refs/heads/main/json-schema/iot-device-management-create-policy-version-response-schema.json",
  "title": "CreatePolicyVersionResponse",
  "description": "The output of the CreatePolicyVersion operation.",
  "type": "object",
  "properties": {
    "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."
        }
      ]
    },
    "isDefaultVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IsDefaultVersion"
        },
        {
          "description": "Specifies whether the policy version is the default."
        }
      ]
    }
  }
}