Properties
| Name | Type | Description |
|---|---|---|
| UserName | object | |
| CertificateId | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DeleteSigningCertificateRequest",
"title": "DeleteSigningCertificateRequest",
"type": "object",
"required": [
"CertificateId"
],
"properties": {
"UserName": {
"allOf": [
{
"$ref": "#/components/schemas/existingUserNameType"
},
{
"description": "<p>The name of the user the signing certificate belongs to.</p> <p>This parameter allows (through its <a href=\"http://wikipedia.org/wiki/regex\">regex pattern</a>) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-</p>"
}
]
},
"CertificateId": {
"allOf": [
{
"$ref": "#/components/schemas/certificateIdType"
},
{
"description": "<p>The ID of the signing certificate to delete.</p> <p>The format of this parameter, as described by its <a href=\"http://wikipedia.org/wiki/regex\">regex</a> pattern, is a string of characters that can be upper- or lower-cased letters or digits.</p>"
}
]
}
}
}