constructor()

in amazon-msk-java-app-cdk/lib/dynamodb-stack.ts [25:32]


    constructor(scope: cdk.Construct, id: string, props?: cdk.StackProps) {
        super(scope, id, props);

        const table = new dynamodb.Table(this, "dynamoDbTable", {
            tableName: this.tableName,
            partitionKey: {name: "id", type: AttributeType.STRING}
        });
    }