Properties
| Name | Type | Description |
|---|---|---|
| ServerCertificateName | object | |
| Tags | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TagServerCertificateRequest",
"title": "TagServerCertificateRequest",
"type": "object",
"required": [
"ServerCertificateName",
"Tags"
],
"properties": {
"ServerCertificateName": {
"allOf": [
{
"$ref": "#/components/schemas/serverCertificateNameType"
},
{
"description": "<p>The name of the IAM server certificate to which you want to add tags.</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>"
}
]
},
"Tags": {
"allOf": [
{
"$ref": "#/components/schemas/tagListType"
},
{
"description": "The list of tags that you want to attach to the IAM server certificate. Each tag consists of a key name and an associated value."
}
]
}
}
}