UntagResourceRequest

UntagResourceRequest schema from Amazon Managed Service for Apache Flink API

Apache FlinkBig DataReal-Time ProcessingStreaming Analytics

Properties

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

JSON Schema

amazon-managed-apache-flink-untag-resource-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-apache-flink/refs/heads/main/json-schema/amazon-managed-apache-flink-untag-resource-request-schema.json",
  "title": "UntagResourceRequest",
  "description": "UntagResourceRequest schema from Amazon Managed Service for Apache Flink API",
  "type": "object",
  "properties": {
    "ResourceARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/KinesisAnalyticsARN"
        },
        {
          "description": "The ARN of the Kinesis Data Analytics application from which to remove the tags."
        }
      ]
    },
    "TagKeys": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagKeys"
        },
        {
          "description": "A list of keys of tags to remove from the specified application."
        }
      ]
    }
  },
  "required": [
    "ResourceARN",
    "TagKeys"
  ]
}