Skip to content

Commit

Permalink
Make members public
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-fowler committed Sep 2, 2019
1 parent 7207720 commit 350b266
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/AWSSigner/signer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ import NIOHTTP1
/// Amazon Web Services V4 Signer
public class AWSSigner {
/// security credentials for accessing AWS services
let credentials: CredentialProvider
public let credentials: CredentialProvider
/// service signing name. In general this is the same as the service name
let name: String
public let name: String
/// AWS region you are working in
let region: String
public let region: String

/// Initialise the Signer class with AWS credentials
public init(credentials: CredentialProvider, name: String, region: String) {
Expand Down

0 comments on commit 350b266

Please sign in to comment.