Hello!
When I print the name of a newly created bucket in a stack:
print(bucket.bucket_name)
I see something like this:
${Token[TOKEN.18]}
Is it possible to access the values for those Tokens with Python during synthesizing/deploying?
And more specifically - if I create a Bucket bucket = s3.Bucket(...) without specifying its name - what would be the easiest way to find out about the generic name or the ARN?
Thanks
Raffael
As per what I could grasp, you want to see some outputs from your created resources.
You can accomplish that by creating CloudFormation outputs.
Details here.
I asked a similiar question. @NetaNir's response might be of help.
Closing this as it seems sufficient answers were provided. Please feel free to re-open if needed.
Most helpful comment
I asked a similiar question. @NetaNir's response might be of help.