Represents the options to sort the response for listing transcoders.

interface ListTranscodersInstancesSortOptions {
    endDate?: string;
    isDescending?: boolean;
    itemsOnPage: number;
    page: number;
    sortBy: "CreatedDate";
    startDate?: string;
    transcoderId?: string;
}

Hierarchy (view full)

Properties

endDate?: string
isDescending?: boolean

Sort by descending order.

itemsOnPage: number

Number of items per page. Must be between 1 and 100.

page: number

Number of the page to retrieve. Minimum is 1.

sortBy: "CreatedDate"

How to sort the response.

startDate?: string
transcoderId?: string

List the instances for this transcoder.