ReplaceDefaultPolicyVersionParams

Parameters to define a mitigation action that adds a blank policy to restrict permissions.

Device ManagementFleet ManagementIoTOTA Updates

Properties

Name Type Description
templateName object
View JSON Schema on GitHub

JSON Schema

iot-device-management-replace-default-policy-version-params-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-replace-default-policy-version-params-schema.json",
  "title": "ReplaceDefaultPolicyVersionParams",
  "description": "Parameters to define a mitigation action that adds a blank policy to restrict permissions.",
  "type": "object",
  "properties": {
    "templateName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PolicyTemplateName"
        },
        {
          "description": "The name of the template to be applied. The only supported value is <code>BLANK_POLICY</code>."
        }
      ]
    }
  },
  "required": [
    "templateName"
  ]
}