CreateKeysAndCertificateResponse

The output of the CreateKeysAndCertificate operation.

Device ManagementFleet ManagementIoTOTA Updates

Properties

Name Type Description
certificateArn object
certificateId object
certificatePem object
keyPair object
View JSON Schema on GitHub

JSON Schema

iot-device-management-create-keys-and-certificate-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-keys-and-certificate-response-schema.json",
  "title": "CreateKeysAndCertificateResponse",
  "description": "The output of the CreateKeysAndCertificate operation.",
  "type": "object",
  "properties": {
    "certificateArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CertificateArn"
        },
        {
          "description": "The ARN of the certificate."
        }
      ]
    },
    "certificateId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CertificateId"
        },
        {
          "description": "The ID of the certificate. IoT issues a default subject name for the certificate (for example, IoT Certificate)."
        }
      ]
    },
    "certificatePem": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CertificatePem"
        },
        {
          "description": "The certificate data, in PEM format."
        }
      ]
    },
    "keyPair": {
      "allOf": [
        {
          "$ref": "#/components/schemas/KeyPair"
        },
        {
          "description": "The generated key pair."
        }
      ]
    }
  }
}