분류 전체보기
-
AWS AmazonConnectApp.init() Sample with TypescriptDEV/aws 2024. 2. 20. 17:56
SampleCode.tsx import './App.css'; import { AgentClient, AgentStateChangedHandler } from "@amazon-connect/contact"; import { AgentStateChangedEventData } from "./type/AgentStateChangedHandler" const agentClient = new AgentClient(); console.log("agentClient : ", agentClient) function App() { const handler: AgentStateChangedHandler = async (data: AgentStateChangedEventData) => { console.log("Agent..
-