Amazon WorkSpaces Web · Schema
Certificate
The certificate.
End User ComputingSecure BrowserVirtual DesktopZero Trust
Properties
| Name | Type | Description |
|---|---|---|
| body | object | |
| issuer | object | |
| notValidAfter | object | |
| notValidBefore | object | |
| subject | object | |
| thumbprint | object |
JSON Schema
{
"type": "object",
"properties": {
"body": {
"allOf": [
{
"$ref": "#/components/schemas/CertificateAuthorityBody"
},
{
"description": "The body of the certificate."
}
]
},
"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 certificate.",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Certificate",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-workspaces-web/refs/heads/main/json-schema/workspaces-web-certificate-schema.json"
}