UpdateCACertificateParams

Parameters to define a mitigation action that changes the state of the CA certificate to inactive.

ComplianceIoTSecurityVulnerability Management

Properties

Name Type Description
action object
View JSON Schema on GitHub

JSON Schema

iot-device-defender-update-c-a-certificate-params-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-device-defender/refs/heads/main/json-schema/iot-device-defender-update-c-a-certificate-params-schema.json",
  "title": "UpdateCACertificateParams",
  "description": "Parameters to define a mitigation action that changes the state of the CA certificate to inactive.",
  "type": "object",
  "properties": {
    "action": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CACertificateUpdateAction"
        },
        {
          "description": "The action that you want to apply to the CA certificate. The only supported value is <code>DEACTIVATE</code>."
        }
      ]
    }
  },
  "required": [
    "action"
  ]
}