Make members public

This commit is contained in:
Adam Fowler 2019-09-01 22:56:07 +01:00
parent 72077208d9
commit 350b266a4b
1 changed files with 3 additions and 3 deletions

View File

@ -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) {