Using anonymous objects instead of Dictionary<string, object?> results into compile-time error

I’m doing Pulumi C# Infrastructure as Code (IaC). Pulumi docs uses Dictionary<string, object?> which I want to replace with anonymous objects because they look better. The issue is that I’m getting a compile-time error with the anonymous objects. x is ImmutableArray<string>. Fine var xpolicyDoc = Output .All(tables.UserTradesTableArn) .Apply(x => new Dictionary<string, object?> { { "Version",… Read More Using anonymous objects instead of Dictionary<string, object?> results into compile-time error

Use pulumi to set automatic sign up emails in aws cognito

In aws console under Cognito user pools there is a Sign-up experience tab, under this tab is "Allow Cognito to automatically send messages to verify and confirm" which ends up Disabled if configuring a user pool with pulumi. How can I enable it? There doesn’t seem to be an option in the api (docs: https://www.pulumi.com/registry/packages/aws/api-docs/cognito/userpool)… Read More Use pulumi to set automatic sign up emails in aws cognito