21 lines
760 B
TypeScript
21 lines
760 B
TypeScript
import * as cdk from 'aws-cdk-lib/core';
|
|
import { Construct } from 'constructs';
|
|
import * as dynamodb from "aws-cdk-lib/aws-dynamodb";
|
|
|
|
export class GhostV2Stack extends cdk.Stack {
|
|
constructor(scope: Construct, id: string, props?: cdk.StackProps) {
|
|
super(scope, id, props);
|
|
|
|
const table = new dynamodb.TableV2(this, "ghostv2-table", {
|
|
partitionKey: { name: "pk", type: dynamodb.AttributeType.STRING },
|
|
sortKey: { name: "sk", type: dynamodb.AttributeType.STRING },
|
|
billing: dynamodb.Billing.onDemand(),
|
|
})
|
|
table.addGlobalSecondaryIndex({
|
|
indexName: "gsi1",
|
|
partitionKey: { name: "gsi1pk", type: dynamodb.AttributeType.STRING },
|
|
sortKey: { name: "gsi1sk", type: dynamodb.AttributeType.STRING }
|
|
})
|
|
}
|
|
}
|