Amazon MediaTailor · Schema
ListPrefetchSchedulesRequest
ListPrefetchSchedulesRequest schema from Amazon MediaTailor API
BroadcastingMedia ProcessingMedia
Properties
| Name | Type | Description |
|---|---|---|
| MaxResults | object | |
| NextToken | object | |
| StreamId | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediatailor/refs/heads/main/json-schema/mediatailor-api-list-prefetch-schedules-request-schema.json",
"title": "ListPrefetchSchedulesRequest",
"description": "ListPrefetchSchedulesRequest schema from Amazon MediaTailor API",
"type": "object",
"properties": {
"MaxResults": {
"allOf": [
{
"$ref": "#/components/schemas/__integerMin1Max100"
},
{
"description": "The maximum number of prefetch schedules that you want MediaTailor to return in response to the current request. If there are more than <code>MaxResults</code> prefetch schedules, use the value of <code>NextToken</code> in the response to get the next page of results."
}
]
},
"NextToken": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"description": "<p>(Optional) If the playback configuration has more than <code>MaxResults</code> prefetch schedules, use <code>NextToken</code> to get the second and subsequent pages of results.</p> <p> For the first <code>ListPrefetchSchedulesRequest</code> request, omit this value.</p> <p> For the second and subsequent requests, get the value of <code>NextToken</code> from the previous response and specify that value for <code>NextToken</code> in the request.</p> <p> If the previous response didn't include a <code>NextToken</code> element, there are no more prefetch schedules to get.</p>"
}
]
},
"StreamId": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"description": "An optional filtering parameter whereby MediaTailor filters the prefetch schedules to include only specific streams."
}
]
}
}
}