Properties
| Name | Type | Description |
|---|---|---|
| SAMLProviderArn | object | |
| TagKeys | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UntagSAMLProviderRequest",
"title": "UntagSAMLProviderRequest",
"type": "object",
"required": [
"SAMLProviderArn",
"TagKeys"
],
"properties": {
"SAMLProviderArn": {
"allOf": [
{
"$ref": "#/components/schemas/arnType"
},
{
"description": "<p>The ARN of the SAML identity provider in IAM from which you want to remove 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>"
}
]
},
"TagKeys": {
"allOf": [
{
"$ref": "#/components/schemas/tagKeyListType"
},
{
"description": "A list of key names as a simple array of strings. The tags with matching keys are removed from the specified SAML identity provider."
}
]
}
}
}