Amazon Comprehend · Schema

FlywheelFilter

Filter the flywheels based on creation time or flywheel status.

Machine LearningNatural Language ProcessingNLPText Analysis

Properties

Name Type Description
Status object
CreationTimeAfter object
CreationTimeBefore object
View JSON Schema on GitHub

JSON Schema

openapi.yml-flywheel-filter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-comprehend/refs/heads/main/json-schema/openapi.yml-flywheel-filter-schema.json",
  "title": "FlywheelFilter",
  "description": "Filter the flywheels based on creation time or flywheel status.",
  "type": "object",
  "properties": {
    "Status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FlywheelStatus"
        },
        {
          "description": "Filter the flywheels based on the flywheel status."
        }
      ]
    },
    "CreationTimeAfter": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "Filter the flywheels to include flywheels created after the specified time."
        }
      ]
    },
    "CreationTimeBefore": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "Filter the flywheels to include flywheels created before the specified time."
        }
      ]
    }
  }
}