We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 133a805 commit a7d79b5Copy full SHA for a7d79b5
services/polly/common/test/aws/sdk/kotlin/services/polly/PollyTest.kt
@@ -1,5 +1,6 @@
1
package aws.sdk.kotlin.services.polly
2
3
+import aws.sdk.kotlin.runtime.auth.StaticCredentialsProvider
4
import aws.sdk.kotlin.runtime.testing.runSuspendTest
5
import aws.sdk.kotlin.services.polly.model.OutputFormat
6
import aws.sdk.kotlin.services.polly.model.SynthesizeSpeechRequest
@@ -22,6 +23,10 @@ class PollyPresignerTest {
22
23
24
val clientConfig = PollyPresignConfig {
25
region = "us-east-2"
26
+ credentialsProvider = StaticCredentialsProvider {
27
+ accessKeyId = "AKID"
28
+ secretAccessKey = "secret"
29
+ }
30
}
31
32
val presignedRequest = request.presign(clientConfig, 10u)
0 commit comments