The response for the getReports operation.

Export

GetReportsResponse

interface GetReportsResponse {
    nextToken?: string;
    reports: Report[];
}

Properties

Properties

nextToken?: string

Returned when the number of results exceeds pageSize. To get the next page of results, call getReports with this token as the only parameter.

Memberof

GetReportsResponse

reports: Report[]

A list of reports.

Memberof

GetReportsResponse