0

I'm trying to update AWS Opensearch using following command but "opensearch" command is missing!

aws opensearch start-service-software-update --domain-name <my-domain-name> --schedule-at "NOW"

AWS CLI Version: aws-cli/2.2.3

enter image description here

John Rotenstein
  • 241,921
  • 22
  • 380
  • 470
Ash
  • 1,180
  • 3
  • 22
  • 36

1 Answers1

2

Looks like opensearch is not supported in aws-cli/2.2.3 version.

Updating AWS CLI would resolve issue.

AWS CLI Update steps:

curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "AWSCLIV2.pkg"

aws-cli/2.11.4 version has opensearch command.

Ash
  • 1,180
  • 3
  • 22
  • 36