Amazon Comprehend · Schema
ListDatasetsRequest
ListDatasetsRequest schema
Machine LearningNatural Language ProcessingNLPText Analysis
Properties
| Name | Type | Description |
|---|---|---|
| FlywheelArn | object | |
| Filter | object | |
| NextToken | object | |
| MaxResults | object |
JSON Schema
{
"$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-list-datasets-request-schema.json",
"title": "ListDatasetsRequest",
"description": "ListDatasetsRequest schema",
"type": "object",
"properties": {
"FlywheelArn": {
"allOf": [
{
"$ref": "#/components/schemas/ComprehendFlywheelArn"
},
{
"description": "The Amazon Resource Number (ARN) of the flywheel."
}
]
},
"Filter": {
"allOf": [
{
"$ref": "#/components/schemas/DatasetFilter"
},
{
"description": "Filters the datasets to be returned in the response."
}
]
},
"NextToken": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "Identifies the next page of results to return."
}
]
},
"MaxResults": {
"allOf": [
{
"$ref": "#/components/schemas/MaxResultsInteger"
},
{
"description": "Maximum number of results to return in a response. The default is 100."
}
]
}
}
}