Amazon Comprehend · Schema

FlywheelIterationFilter

Filter the flywheel iterations based on creation time.

Machine LearningNatural Language ProcessingNLPText Analysis

Properties

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

JSON Schema

openapi.yml-flywheel-iteration-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-iteration-filter-schema.json",
  "title": "FlywheelIterationFilter",
  "description": "Filter the flywheel iterations based on creation time.",
  "type": "object",
  "properties": {
    "CreationTimeAfter": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "Filter the flywheel iterations to include iterations created after the specified time."
        }
      ]
    },
    "CreationTimeBefore": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "Filter the flywheel iterations to include iterations created before the specified time."
        }
      ]
    }
  }
}