18 lines
513 B
Plaintext
18 lines
513 B
Plaintext
import { Construct } from 'constructs';
|
|
import * as cdk from 'aws-cdk-lib';
|
|
import * as es from 'aws-cdk-lib/aws-elasticsearch';
|
|
import * as iam from 'aws-cdk-lib/aws-iam';
|
|
import * as opensearch from 'aws-cdk-lib/aws-opensearchservice';
|
|
|
|
declare const role: iam.IRole;
|
|
declare const elasticsearchVersion: es.ElasticsearchVersion;
|
|
declare const openSearchVersion: opensearch.EngineVersion;
|
|
|
|
class Fixture extends Construct {
|
|
constructor(scope: Construct, id: string) {
|
|
super(scope, id);
|
|
|
|
/// here
|
|
}
|
|
}
|