Properties
| Name | Type | Description |
|---|---|---|
| UserName | object | |
| CertificateId | object | |
| Status | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UpdateSigningCertificateRequest",
"title": "UpdateSigningCertificateRequest",
"type": "object",
"required": [
"CertificateId",
"Status"
],
"properties": {
"UserName": {
"allOf": [
{
"$ref": "#/components/schemas/existingUserNameType"
},
{
"description": "<p>The name of the IAM 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 you want to update.</p> <p>This parameter allows (through its <a href=\"http://wikipedia.org/wiki/regex\">regex pattern</a>) a string of characters that can consist of any upper or lowercased letter or digit.</p>"
}
]
},
"Status": {
"allOf": [
{
"$ref": "#/components/schemas/statusType"
},
{
"description": " The status you want to assign to the certificate. <code>Active</code> means that the certificate can be used for programmatic calls to Amazon Web Services <code>Inactive</code> means that the certificate cannot be used."
}
]
}
}
}