I've a created bucket like this. Inside `S3Bucket`...
# help
s
I've a created bucket like this. Inside
S3Bucket
i'm creating a bucket and apply notification triggers.
Copy code
const s3Bucket = new S3Bucket(app, "Bucket", {
    dbEnvs: database.dbEnvs,
});
Before, i was able get the bucket name using
s3Bucket.fileBucket.bucketName
But now when i console logged i get something like this
${Token[TOKEN.637]}
any idea about this?
t
You can't get the bucket name because it's generated only when deployed
That token is replaced inside aws
s
Aha ok. Thanks