Server

AWS

AWS CLI

Installation

macOS

  1. Install Homebrew
  2. Install AWS CLI
$ brew install awscli
  1. Verify Installation

After installation, check the version:

$ aws --version

Configure

$ aws configure

You’ll be prompted to enter:

  • AWS Access Key ID
  • AWS Secret Access Key
  • Default region name (e.g., us-east-1)
  • Default output format (json)

Uninstall

macOS

$ brew uninstall awscli

IAM Certificate

List Certificates

$ aws iam list-server-certificates

Delete Certificate

Reference URL

Ensure that the certificate being deleted is not in use by any other AWS services.

$ aws iam delete-server-certificate --server-certificate-name certificate_object_name
Previous
Apache Pulsar