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 4d6542c commit f4c9d1aCopy full SHA for f4c9d1a
packages/core/src/amazonqFeatureDev/client/featureDev.ts
@@ -244,11 +244,13 @@ export class FeatureDevClient implements FeatureClient {
244
}
245
246
public async exportResultArchive(conversationId: string) {
247
+ const profile = AuthUtil.instance.regionProfileManager.activeRegionProfile
248
try {
249
const streamingClient = await createCodeWhispererChatStreamingClient()
250
const params = {
251
exportId: conversationId,
252
exportIntent: 'TASK_ASSIST',
253
+ profileArn: profile?.arn,
254
} satisfies ExportResultArchiveCommandInput
255
getLogger().debug(`Executing exportResultArchive with %O`, params)
256
const archiveResponse = await streamingClient.exportResultArchive(params)
0 commit comments