/* * Copyright OpenSearch Contributors * SPDX-License-Identifier: Apache-2.0 */ import React from "react"; import { EuiIcon, EuiText } from '@elastic/eui' export const noDeliveryChannelsSelectedMessage = ( Please select a channel. ) export const testMessageConfirmationMessage = ( Test message sent to selected channels. If no test message is received, try again or check your channel settings in Notifications. ); export const testMessageFailureMessage = (failedChannels: Array) => ( Failed to send test message for some channels. Please adjust channel settings for {failedChannels.toString()} ) export const getChannelsQueryObject = { config_type: ['slack', 'email', 'chime', 'webhook', 'sns', 'ses'], from_index: 0, max_items: 1000, sort_field: 'name', sort_order: 'asc', feature_list: ['reports'] }