Amazon IoT Core · Schema

ListCertificatesByCAResponse

The output of the ListCertificatesByCA operation.

Device ManagementIoTMQTTMessage Routing

Properties

Name Type Description
certificates object
nextMarker object
View JSON Schema on GitHub

JSON Schema

iot-core-list-certificates-by-c-a-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-core/refs/heads/main/json-schema/iot-core-list-certificates-by-c-a-response-schema.json",
  "title": "ListCertificatesByCAResponse",
  "description": "The output of the ListCertificatesByCA operation.",
  "type": "object",
  "properties": {
    "certificates": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Certificates"
        },
        {
          "description": "The device certificates signed by the specified CA certificate."
        }
      ]
    },
    "nextMarker": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Marker"
        },
        {
          "description": "The marker for the next set of results, or null if there are no additional results."
        }
      ]
    }
  }
}