Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FindingStatisticsSortCriteria

import type { FindingStatisticsSortCriteria } from "https://aws-api.deno.dev/v0.3/services/macie2.ts?docs=full";

Specifies criteria for sorting the results of a query that retrieves aggregated statistical data about findings.

interface FindingStatisticsSortCriteria {
attributeName?: FindingStatisticsSortAttributeName | null;
orderBy?: OrderBy | null;
}

§Properties

§

The grouping to sort the results by. Valid values are: count, sort the results by the number of findings in each group of results; and, groupKey, sort the results by the name of each group of results.

§
orderBy?: OrderBy | null
[src]

The sort order to apply to the results, based on the value for the property specified by the attributeName property. Valid values are: ASC, sort the results in ascending order; and, DESC, sort the results in descending order.