Skip to content

Commit 0df0744

Browse files
authored
chore: make signing flags public (#522)
1 parent 841b806 commit 0df0744

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

AWSClientRuntime/Sources/Signing/SigningFlags.swift

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,15 @@
77
import AwsCommonRuntimeKit
88

99
public struct SigningFlags {
10-
let useDoubleURIEncode: Bool
11-
let shouldNormalizeURIPath: Bool
12-
let omitSessionToken: Bool
10+
public let useDoubleURIEncode: Bool
11+
public let shouldNormalizeURIPath: Bool
12+
public let omitSessionToken: Bool
13+
14+
public init(useDoubleURIEncode: Bool, shouldNormalizeURIPath: Bool, omitSessionToken: Bool) {
15+
self.useDoubleURIEncode = useDoubleURIEncode
16+
self.shouldNormalizeURIPath = shouldNormalizeURIPath
17+
self.omitSessionToken = omitSessionToken
18+
}
1319
}
1420

1521
extension SigningFlags {

0 commit comments

Comments
 (0)