mirror of
https://github.com/awslabs/amazon-bedrock-agentcore-samples.git
synced 2025-09-08 20:50:46 +00:00
* Data Analyst Assistant Solution with Amazon Bedrock AgentCore * Data Analyst Assistant Solution with Amazon Bedrock AgentCore * Data Analyst Assistant Solution with Amazon Bedrock AgentCore * Data Analyst Assistant Solution with Amazon Bedrock AgentCore * Data Analyst Assistant Solution with Amazon Bedrock AgentCore * Data Analyst Assistant Solution with Amazon Bedrock AgentCore * Data Analyst Assistant Solution with Amazon Bedrock AgentCore --------- Co-authored-by: Uriel Ramirez <beralfon@amazon.com>
18 lines
659 B
TypeScript
18 lines
659 B
TypeScript
// import * as cdk from 'aws-cdk-lib';
|
|
// import { Template } from 'aws-cdk-lib/assertions';
|
|
// import * as CdkDataAnalystAssistant from '../lib/cdk-data-analyst-assistant-stack';
|
|
|
|
// example test. To run these tests, uncomment this file along with the
|
|
// example resource in lib/cdk-data-analyst-assistant-stack.ts
|
|
test('SQS Queue Created', () => {
|
|
// const app = new cdk.App();
|
|
// // WHEN
|
|
// const stack = new CdkDataAnalystAssistant.CdkDataAnalystAssistantStack(app, 'MyTestStack');
|
|
// // THEN
|
|
// const template = Template.fromStack(stack);
|
|
|
|
// template.hasResourceProperties('AWS::SQS::Queue', {
|
|
// VisibilityTimeout: 300
|
|
// });
|
|
});
|