APIs.io Engineering Platform · Schema
UploadServerCertificateResponse
Contains the response to a successful UploadServerCertificate request.
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| ServerCertificateMetadata | object | |
| Tags | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UploadServerCertificateResponse",
"title": "UploadServerCertificateResponse",
"type": "object",
"example": {
"ServerCertificateMetadata": {
"Arn": "arn:aws:iam::123456789012:server-certificate/company/servercerts/ProdServerCert",
"Expiration": "2012-05-08 01:02:03.004000+00:00",
"Path": "/company/servercerts/",
"ServerCertificateId": "ASCA1111111111EXAMPLE",
"ServerCertificateName": "ProdServerCert",
"UploadDate": "2010-05-08 01:02:03.004000+00:00"
}
},
"properties": {
"ServerCertificateMetadata": {
"allOf": [
{
"$ref": "#/components/schemas/ServerCertificateMetadata"
},
{
"description": "The meta information of the uploaded server certificate without its certificate body, certificate chain, and private key."
}
]
},
"Tags": {
"allOf": [
{
"$ref": "#/components/schemas/tagListType"
},
{
"description": "A list of tags that are attached to the new IAM server certificate. The returned list of tags is sorted by tag key. For more information about tagging, see <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html\">Tagging IAM resources</a> in the <i>IAM User Guide</i>."
}
]
}
},
"description": "Contains the response to a successful <a>UploadServerCertificate</a> request. "
}