import { ACCESS_KEY_ID_LENGTH, SECRET_ACCESS_KEY_LENGTH, } from 'Types/integrations/cloudwatchConfig'; import React from 'react'; import IntegrationModalCard from 'Components/Client/Integrations/IntegrationModalCard'; import DocLink from 'Shared/DocLink/DocLink'; import IntegrationForm from '../IntegrationForm'; import LogGroupDropdown from './LogGroupDropdown'; import RegionDropdown from './RegionDropdown'; const CloudwatchForm = (props) => (
How it works?
  1. Create a Service Account
  2. Enter the details below
  3. Propagate openReplaySessionToken
config.awsSecretAccessKey.length === SECRET_ACCESS_KEY_LENGTH && config.region !== '' && config.awsAccessKeyId.length === ACCESS_KEY_ID_LENGTH, }, ]} />
); CloudwatchForm.displayName = 'CloudwatchForm'; export default CloudwatchForm;