import React from 'react'; import { ACCESS_KEY_ID_LENGTH, SECRET_ACCESS_KEY_LENGTH } from 'Types/integrations/cloudwatchConfig'; import IntegrationForm from '../IntegrationForm'; import LogGroupDropdown from './LogGroupDropdown'; import RegionDropdown from './RegionDropdown'; import DocLink from 'Shared/DocLink/DocLink'; const CloudwatchForm = (props) => (

Cloud Watch

How to integrate CloudWatch with OpenReplay and see backend errors alongside session replays.
config.awsSecretAccessKey.length === SECRET_ACCESS_KEY_LENGTH && config.region !== '' && config.awsAccessKeyId.length === ACCESS_KEY_ID_LENGTH, }, ]} />
); CloudwatchForm.displayName = 'CloudwatchForm'; export default CloudwatchForm;