Amazon WorkSpaces Web · JSON Structure

Workspaces Web Certificate Summary Structure

The summary of the certificate.

Type: object Properties: 5
End User ComputingSecure BrowserVirtual DesktopZero Trust

CertificateSummary is a JSON Structure definition published by Amazon WorkSpaces Web, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

issuer notValidAfter notValidBefore subject thumbprint

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "issuer": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CertificatePrincipal"
        },
        {
          "description": "The entity that issued the certificate."
        }
      ]
    },
    "notValidAfter": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The certificate is not valid after this date."
        }
      ]
    },
    "notValidBefore": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The certificate is not valid before this date."
        }
      ]
    },
    "subject": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CertificatePrincipal"
        },
        {
          "description": "The entity the certificate belongs to."
        }
      ]
    },
    "thumbprint": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CertificateThumbprint"
        },
        {
          "description": "A hexadecimal identifier for the certificate."
        }
      ]
    }
  },
  "description": "The summary of the certificate.",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "name": "CertificateSummary",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-workspaces-web/refs/heads/main/json-structure/workspaces-web-certificate-summary-structure.json"
}