We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1a97ea commit 84b76d4Copy full SHA for 84b76d4
1 file changed
packages/sns/test/utils/testSnsConfig.ts
@@ -1,14 +1,14 @@
1
import type { S3ClientConfig } from '@aws-sdk/client-s3'
2
import type { SNSClientConfig } from '@aws-sdk/client-sns'
3
import type { SQSClientConfig } from '@aws-sdk/client-sqs'
4
+import type { STSClientConfig } from '@aws-sdk/client-sts'
5
import { createLocalhostHandler } from 'fauxqs'
-
6
import { getPort } from './fauxqsInstance.ts'
7
8
const isLocalstack = process.env.QUEUE_BACKEND === 'localstack'
9
const port = getPort()
10
11
-export const TEST_AWS_CONFIG: SNSClientConfig & SQSClientConfig = {
+export const TEST_AWS_CONFIG: SNSClientConfig & SQSClientConfig & STSClientConfig = {
12
endpoint: `http://localhost:${port}`,
13
region: 'eu-west-1',
14
credentials: {
0 commit comments