I don't get why `pulumi.Output.all` works if I tel...
# python
n
I don't get why
pulumi.Output.all
works if I tell to wait explicitly for the id but not for the s3.Bucket object
🤔 1
b
The 
Output.all
 function acts like an 
apply
 over multiple 
Output[T]
only the properties of buckets are of type Output[T]
n
gotcha! many thanks!