David Garcia
02/11/2022, 4:18 PMbucket
property seems to be associated with table output. I can't quite identify how I can configure what S3 bucket the generated glue table is supposed to be looking through when using something like athena to run a query on the bucket.Frank
Frank
import * as glue from "@aws-cdk/aws-glue-alpha";
import * as sst from "@serverless-stack/resources";
const bucket = new sst.Bucket(this, "Bucket", {...});
const table = new glue.Table(this, "GlueTable", {
bucket: bucket.s3Bucket,
});
David Garcia
02/11/2022, 9:01 PMDavid Garcia
02/11/2022, 9:04 PMFrank
Frank