UntagRoleRequest

APIs.ioEngineeringPlatform

Properties

Name Type Description
RoleName object
TagKeys object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-untagrolerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UntagRoleRequest",
  "title": "UntagRoleRequest",
  "type": "object",
  "required": [
    "RoleName",
    "TagKeys"
  ],
  "properties": {
    "RoleName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/roleNameType"
        },
        {
          "description": "<p>The name of the IAM role from which you want to remove tags.</p> <p>This parameter accepts (through its <a href=\"http://wikipedia.org/wiki/regex\">regex pattern</a>) a string of characters that consist 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 role."
        }
      ]
    }
  }
}