{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ServerCertificateMetadata", "title": "ServerCertificateMetadata", "type": "object", "required": [ "Path", "ServerCertificateName", "ServerCertificateId", "Arn" ], "properties": { "Path": { "allOf": [ { "$ref": "#/components/schemas/pathType" }, { "description": " The path to the server certificate. For more information about paths, see IAM identifiers in the IAM User Guide. " } ] }, "ServerCertificateName": { "allOf": [ { "$ref": "#/components/schemas/serverCertificateNameType" }, { "description": "The name that identifies the server certificate." } ] }, "ServerCertificateId": { "allOf": [ { "$ref": "#/components/schemas/idType" }, { "description": " The stable and unique string identifying the server certificate. For more information about IDs, see IAM identifiers in the IAM User Guide. " } ] }, "Arn": { "allOf": [ { "$ref": "#/components/schemas/arnType" }, { "description": " The Amazon Resource Name (ARN) specifying the server certificate. For more information about ARNs and how to use them in policies, see IAM identifiers in the IAM User Guide. " } ] }, "UploadDate": { "allOf": [ { "$ref": "#/components/schemas/dateType" }, { "description": "The date when the server certificate was uploaded." } ] }, "Expiration": { "allOf": [ { "$ref": "#/components/schemas/dateType" }, { "description": "The date on which the certificate is set to expire." } ] } }, "description": "
Contains information about a server certificate without its certificate body, certificate chain, and private key.
This data type is used as a response element in the UploadServerCertificate and ListServerCertificates operations.
" }