In my Linux Ubuntu box, I have two variants for tools installed for AWS EC2.
AWS CLI v2 installed @ /usr/local/aws-cli/2.4.0 These provide the unified AWS CLI interface that everyone is used to
aws ec2 <subcmd>
EC2 API command line tools @/usr/bin/ec2-version These tools seem to be mer shell scripts wrappers to java invocations of ec2 commands. The actual Java files seem to be located in a jar ec2- api-tools-1.6.14.1.jar. Manage of ec2-version also shows a version of 1.6.14.1 api=2014-05-01
I am trying to write some automation scripts and would like to know which one of these are still supported by AWS. I understand 1st method had two variants AWS CLI v1 and AWS CLI v2, where CLI v1 is deprecated.
Is the 2nd variant EC2-api-tools (Java) also deprecated by Amazon, since the latest version seems to be somewhere in 2014. Which of these tools versions should I go ahead with my automation?