Anyone familiar with the aws v2 sdk? I'm not sure ...
# intellij
r
Anyone familiar with the aws v2 sdk? I'm not sure how to make intelliJ autocomplete for the various *Request builders. Having to refer to the docs for everything is cumbersome.
k
I don't have any issues with IntelliJ autocompleting - it just does so, like it does with everything else it autocompletes. Make sure your dependencies are with the
software.amazon.awssdk
group id (e.g.
software.amazon.awssdk:s3:2.18.34
) and that you
import software.amazon.awssdk.<whatever...>
.
r
Yeah generally completion works, I'm talking specifically about the builders, suppose you type something like;
Copy code
CreateNodegroupRequest {
how do I know which fields are available/required to complete this?