I have been having trouble creating a TimestreamInfluxdb Db Instance - it seems that the type / namespace is missing
1 using Pulumi;
2 using Pulumi.Aws.TimestreamInfluxDb;
3
4 class MyStack : Stack
5 {
6 public MyStack()
7 {
8 var db = new Pulumi.Aws.TimestreamInfluxDb.DbInstance("influxdb-test", new
Pulumi.Aws.TimestreamInfluxDb.DbInstanceArgs
9 {
10 AllocatedStorage = 20,
11 DbInstanceClass = "db.influx.medium",
12 DbStorageType = "InfluxIOIncluded",
13 VpcSubnetIds = { "subnet-12345" },
14 PubliclyAccessible = false,
15 Username = "admin",
16 Password = "password",
17 Organization = "test-org",
18 Bucket = "test-bucket"
19 });
20 }
21 }
has it been moved to a different package ?