(config: AppConfigConnectionConfig)
| 43 | } |
| 44 | |
| 45 | export function createAppConfigDataClient(config: AppConfigConnectionConfig): AppConfigDataClient { |
| 46 | return new AppConfigDataClient({ |
| 47 | region: config.region, |
| 48 | credentials: { |
| 49 | accessKeyId: config.accessKeyId, |
| 50 | secretAccessKey: config.secretAccessKey, |
| 51 | }, |
| 52 | }) |
| 53 | } |
| 54 | |
| 55 | const textDecoder = new TextDecoder() |
| 56 |