{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ServerCertificate", "title": "ServerCertificate", "type": "object", "required": [ "ServerCertificateMetadata", "CertificateBody" ], "properties": { "ServerCertificateMetadata": { "allOf": [ { "$ref": "#/components/schemas/ServerCertificateMetadata" }, { "description": "The meta information of the server certificate, such as its name, path, ID, and ARN." } ] }, "CertificateBody": { "allOf": [ { "$ref": "#/components/schemas/certificateBodyType" }, { "description": "The contents of the public key certificate." } ] }, "CertificateChain": { "allOf": [ { "$ref": "#/components/schemas/certificateChainType" }, { "description": "The contents of the public key certificate chain." } ] }, "Tags": { "allOf": [ { "$ref": "#/components/schemas/tagListType" }, { "description": "A list of tags that are attached to the server certificate. For more information about tagging, see Tagging IAM resources in the IAM User Guide." } ] } }, "description": "

Contains information about a server certificate.

This data type is used as a response element in the GetServerCertificate operation.

" }