Skip to content

Commit

Permalink
feat: auth scheme changes (#1174)
Browse files Browse the repository at this point in the history
* Add signer changes.

---------

Co-authored-by: Sichan Yoo <chanyoo@amazon.com>
  • Loading branch information
sichanyoo and Sichan Yoo authored Oct 18, 2023
1 parent 2bbf506 commit 981f9f9
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
//
// Copyright Amazon.com Inc. or its affiliates.
// All Rights Reserved.
//
// SPDX-License-Identifier: Apache-2.0
//

import ClientRuntime

public struct SigV4AuthScheme: ClientRuntime.AuthScheme {
public let schemeID: String = "aws.auth#sigv4"
public let signer: ClientRuntime.Signer = AWSSigV4Signer()
public let idKind: ClientRuntime.IdentityKind = .aws
}

0 comments on commit 981f9f9

Please sign in to comment.