-
Notifications
You must be signed in to change notification settings - Fork 3
kn: signing #103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
kn: signing #103
Changes from 56 commits
53af9e2
10ab3c9
9578b5b
c4e8b45
5ad6270
4a3a139
7e83d28
b7a09f9
e2ac2cd
2b765e1
5bac472
4e36539
7d33185
2cdc67c
ed53650
038269a
2fec6ca
a1f40f3
fc15cf5
d992a8e
3e9c435
d0108ca
fdd7092
a00256b
ded1b81
0c8422c
b759fb0
f01df1b
9ebeec0
52c1afb
6f28b9b
8a297ed
fd959d8
633a9d1
5058165
00460a6
66f3b3e
d9da555
c142899
dfcca49
339494e
bdefe2d
d0f96e1
535653e
3c49521
889bd1b
9de307a
b279627
263bb84
d52605c
8182695
8c80cfc
5fde345
821fc4f
49918bc
f15aff6
c8a1b02
90e3c87
4666f24
b86d611
8f2ef4a
59c9cc9
0f5a4f2
738217a
f4c6550
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,19 +8,10 @@ package aws.sdk.kotlin.crt.auth.credentials | |
| /** | ||
| * A credentials provider for a fixed set of credentials | ||
| */ | ||
| public actual class StaticCredentialsProvider internal actual constructor(builder: StaticCredentialsProviderBuilder) : | ||
| CredentialsProvider { | ||
| public actual class StaticCredentialsProvider internal actual constructor(private val builder: StaticCredentialsProviderBuilder) : CredentialsProvider { | ||
| public actual companion object {} | ||
|
|
||
| override suspend fun getCredentials(): Credentials { | ||
| TODO("Not yet implemented") | ||
| } | ||
|
|
||
| override fun close() { | ||
| TODO("Not yet implemented") | ||
| } | ||
|
|
||
| override suspend fun waitForShutdown() { | ||
| TODO("Not yet implemented") | ||
| } | ||
| override suspend fun getCredentials(): Credentials = | ||
| Credentials(builder.accessKeyId!!, builder.secretAccessKey!!, builder.sessionToken) | ||
| override fun close() { } | ||
| override suspend fun waitForShutdown() { } | ||
| } | ||
|
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: the expected signature changed due to different credentials being used, but I did check again with
DefaultAwsSignerto ensure correctness