CDKTF Documentation for AWS provider and inbuilt TF functions

Hi - Can someone point me to the documentation for the CDKTF Java functions specifically for the AWS provider?

for example I see in the example you provided DynamodbTable.Builder.create(this, “Hello”).name(“my-first-table-” ) creates DynamoDB or Eks(this, “eks”, eksOptions) creates EKS cluster etc. Where can I find documentation so that I can built more on the examples provided

There really isn’t any documentation specifically before Java. There is inline documentation, but that mainly links to the Terraform documentation. You can look at that directly here.

In general, the snake case names from Terraform are converted to camel case names in Java. All resources are created using the builder pattern.

If you have any specific questions, we’d be happy to answer them.

Hi, I know it’s like 1.5yrs later but is the following the sort of docs you are/were after?

This is TypeScript but our idea is to generate docs for the other languages also.