PolicyVersionIdentifier

Information about the version of the policy associated with the resource.

Device ManagementFleet ManagementIoTOTA Updates

Properties

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

JSON Schema

iot-device-management-policy-version-identifier-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-policy-version-identifier-schema.json",
  "title": "PolicyVersionIdentifier",
  "description": "Information about the version of the policy associated with the resource.",
  "type": "object",
  "properties": {
    "policyName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PolicyName"
        },
        {
          "description": "The name of the policy."
        }
      ]
    },
    "policyVersionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PolicyVersionId"
        },
        {
          "description": "The ID of the version of the policy associated with the resource."
        }
      ]
    }
  }
}