private static createQueryString()

in src/SigV4RequestSigner.ts [148:153]


    private static createQueryString(queryParams: QueryParams): string {
        return Object.keys(queryParams)
            .sort()
            .map(key => `${key}=${encodeURIComponent(queryParams[key])}`)
            .join('&');
    }