{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-payment-cryptography/refs/heads/main/json-schema/openapi-untag-resource-input-schema.json",
"title": "UntagResourceInput",
"description": "UntagResourceInput schema from Amazon Payment Cryptography",
"type": "object",
"properties": {
"ResourceArn": {
"allOf": [
{
"$ref": "#/components/schemas/ResourceArn"
},
{
"description": "The <code>KeyARN</code> of the key whose tags are being removed."
}
]
},
"TagKeys": {
"allOf": [
{
"$ref": "#/components/schemas/TagKeys"
},
{
"description": "<p>One or more tag keys. Don't include the tag values.</p> <p>If the Amazon Web Services Payment Cryptography key doesn't have the specified tag key, Amazon Web Services Payment Cryptography doesn't throw an exception or return a response. To confirm that the operation succeeded, use the <a>ListTagsForResource</a> operation.</p>"
}
]
}
},
"required": [
"ResourceArn",
"TagKeys"
]
}