I am trying to run congnito via cloudformation and everything works but there is section in cognito as follows:
As you see there is section \"Enable identity pr
As ASR says, this doesn't seem to be supported in Cloudformation yet.
We ended up trying out Terraform - which does support it e.g.
resource "aws_cognito_user_pool_client" "my_client" {
...
supported_identity_providers = ["COGNITO"]
}
We've now switched everything to using terraform as it's orders of magnitude easier to understand, read, and write than Cloudformation.
I know that's probably not the answer you want but I hope it helps.