Skip to content

Commit

Permalink
feat(experimentalIdentityAndAuth): update `HttpAuthSchemeParametersPr…
Browse files Browse the repository at this point in the history
…ovider` to take in `input` (#944)
  • Loading branch information
Steven Yuan authored Sep 19, 2023
1 parent 2c3845d commit 85448cb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/sixty-seahorses-own.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@smithy/experimental-identity-and-auth": patch
---

Update `HttpAuthSchemeParametersProvider` to take in `input`
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ export interface HttpAuthSchemeParametersProvider<
C extends object = object,
T extends HttpAuthSchemeParameters = HttpAuthSchemeParameters
> {
(config: C, context: HandlerExecutionContext): Promise<T>;
(config: C, context: HandlerExecutionContext, input: Record<string, unknown>): Promise<T>;
}

0 comments on commit 85448cb

Please sign in to comment.