Sri Hari Vignesh
Sri Hari Vignesh

Reputation: 358

Enable AWS Batch in AWS CLI

I am working in the US-East-1 (N.Virginia) and have even configured the Default Region Name to us-east-1 using the command aws configure.

But I am not able to access Batch using CLI. Batch is not even listed as one of the Available Services in aws help.

Any ideas how to enable Batch in AWS Cli? I have administrative access in IAM console so permissions don't seem to be the issue.

Upvotes: 1

Views: 386

Answers (1)

le3th4x0rbot
le3th4x0rbot

Reputation: 2451

The batch service is relatively new, so its commands only exist in fairly new versions of the aws CLI.

Commands for batch in the latest cli documentation: http://docs.aws.amazon.com/cli/latest/reference/batch/index.html?highlight=batch

If you are running Windows, simply download the updated installer. https://aws.amazon.com/cli/

If you are using OSX or Linux use pip. pip install --upgrade awscli

Upvotes: 2

Related Questions