Hi, Im currently working with
aws-sdk/client-quicksightand GenerateEmbedUrlForRegisteredUserCommand to generate an embedded url for a chat agent.
const command = new GenerateEmbedUrlForRegisteredUserCommand({
AwsAccountId: accountId,
UserArn: quicksightUserArn,
ExperienceConfiguration: {
QuickChat: {},
},
SessionLifetimeInMinutes: sessionLifetime,
});
Is there a way to pass in an agentId so that when the URL is generated, it has an specific chat agent as default?
The only configurable option that I saw was using GenerativeQnA instead of Quickchat.
GenerativeQnA:{
InitialTopicId: 'ExampleOfTopicId'
}
I tried marking this question as Developer but it wont let me add a second Tag.
Thanks
Josean