sparse-intern-71089
06/10/2021, 10:32 AMlively-breakfast-59078
06/10/2021, 10:43 AMimport {Bucket} from "@pulumi/aws/s3";
, doesn't work, but
import * as aws from "@pulumi/aws";
and subsequently using aws.s3.Bucket does.red-match-15116
06/10/2021, 4:17 PMimport {s3} from "@pulumi/aws"
and then s3.Bucket
should also work. As you’ve discovered, imports appear to only work at the top level or the module level.