import { HttpRequest, HttpSigner, Identity } from "@smithy/types"; /** * Signer for the synthetic @smithy.api#noAuth auth scheme. * @internal */ export class NoAuthSigner implements HttpSigner { async sign( httpRequest: HttpRequest, identity: Identity, signingProperties: Record ): Promise { return httpRequest; } }