constructor()

in src/dataServices/apiDataService.ts [27:31]


    constructor(integrationTransformUrl: string, awsRegion: string, axiosInstance?: AxiosInstance) {
        const instance = axiosInstance ?? axios.create({ baseURL: integrationTransformUrl });
        new IamAuth(awsRegion).attachInterceptor(instance);
        this.axiosInstance = instance;
    }