Can you use CDK to configure openSearch serverless as a data source in AWS managed Grafana

0

Hi,

Can you use CDK to configure AWS openSearch serverless as a data source for AWS managed Grafana?

If so can you provide some sample code or point me in the right direction where it may exist?

Any help is Greatly appreciated,

Regards,

1 回答
1

Looking at the CDK API reference, there are no L2 constructs available for AWS Managed Grafana, however L1 constructs are available. L1 constructs are designed to expect the same properties as using the AWS API directly. L2 constructs abstract another layer of implementation away from using the AWS API directly.

The L1 construct CfnWorkspace and it's associated properties CfnWorkspaceProps can be used to enable OpenSearch as a data source via the dataSourcesproperty in CfnWorkspaceProps. This only works if the IAM role in OpenSearch is configured properly to handle data from Managed Grafana and you are using CDK to create a new workspace in Managed Grafana.

If you would only like to update an existing workspace to add OpenSearch as a data source, you can use a CustomResource construct in CDK with the UpdateWorkspace API and the workspaceDataSources property (should be fine to use despite the documentation saying otherwise).

Hope this helps!

profile pictureAWS
专家
已回答 2 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则