ThrottlingErrorMessage.tsx 769 B

1234567891011121314151617181920212223242526272829
  1. import React, { FunctionComponent } from 'react';
  2. export interface Props {
  3. region: string;
  4. }
  5. export const ThrottlingErrorMessage: FunctionComponent<Props> = ({ region }) => (
  6. <p>
  7. Please visit the&nbsp;
  8. <a
  9. target="_blank"
  10. rel="noreferrer"
  11. className="text-link"
  12. href={`https://${region}.console.aws.amazon.com/servicequotas/home?region=${region}#!/services/monitoring/quotas/L-5E141212`}
  13. >
  14. AWS Service Quotas console
  15. </a>
  16. &nbsp;to request a quota increase or see our&nbsp;
  17. <a
  18. target="_blank"
  19. rel="noreferrer"
  20. className="text-link"
  21. href="https://grafana.com/docs/grafana/latest/datasources/cloudwatch/#service-quotas"
  22. >
  23. documentation
  24. </a>
  25. &nbsp;to learn more.
  26. </p>
  27. );