Skip to content

Commit

Permalink
Merge feat/auth-scheme-changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sichan Yoo committed Oct 11, 2023
2 parents 311cf31 + d670316 commit 2a3d1e8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
// SPDX-License-Identifier: Apache-2.0
//

import Foundation
import ClientRuntime

public struct SigV4AuthScheme: ClientRuntime.AuthScheme {
public let schemeId: String = "aws.auth#sigv4"
public let signer: any ClientRuntime.Signer = AWSSigV4Signer()
public let idType: ClientRuntime.IdentityType = .aws

public let signer: ClientRuntime.Signer = AWSSigV4Signer()
public let idKind: ClientRuntime.IdentityKind = .aws

public func customizeSigningProperties(signingProperties: Attributes, config: HttpContext) -> Attributes {
var copy = signingProperties
Expand Down

0 comments on commit 2a3d1e8

Please sign in to comment.