APIs.io Engineering Platform · Schema
ServerCertificateMetadata
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.
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| Path | object | |
| ServerCertificateName | object | |
| ServerCertificateId | object | |
| Arn | object | |
| UploadDate | object | |
| Expiration | object |
JSON Schema
{
"$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 <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html\">IAM identifiers</a> in the <i>IAM User Guide</i>. "
}
]
},
"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 <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html\">IAM identifiers</a> in the <i>IAM User Guide</i>. "
}
]
},
"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 <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html\">IAM identifiers</a> in the <i>IAM User Guide</i>. "
}
]
},
"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": "<p>Contains information about a server certificate without its certificate body, certificate chain, and private key.</p> <p> This data type is used as a response element in the <a>UploadServerCertificate</a> and <a>ListServerCertificates</a> operations. </p>"
}