Type alias GetBetweenDatesDownloadCountOptions

GetBetweenDatesDownloadCountOptions: {
    end: string | Date;
    packages: string[];
    start: string | Date;
}

Type declaration

  • end: string | Date

    The end date to use in the query.

    Example

    '2023-01-01'
    new Date('2023-01-01')
  • packages: string[]

    The packages to get the download count for.

    Example

    ['@aws-lambda-powertools/logger']
    
  • start: string | Date

    The start Date to use in the query.

    Example

    '2023-01-01'
    new Date('2023-01-01')

Generated using TypeDoc