Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

5,254,791

Downloads of v 2.24.10:

304

Last Update:

22 Feb 2025

Package Maintainer(s):

Software Author(s):

  • Amazon Web Services

Tags:

awscli aws cli foss cloud amazon web services s3 admin

AWS Command Line Interface v2 (Install)

  • 1
  • 2
  • 3

2.24.10 | Updated: 22 Feb 2025

Downloads:

5,254,791

Downloads of v 2.24.10:

304

Maintainer(s):

Software Author(s):

  • Amazon Web Services

AWS Command Line Interface v2 (Install) 2.24.10

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Amazon Web Services. The inclusion of Amazon Web Services trademark(s), if any, upon this webpage is solely to identify Amazon Web Services goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install AWS Command Line Interface v2 (Install), run the following command from the command line or from PowerShell:

>

To upgrade AWS Command Line Interface v2 (Install), run the following command from the command line or from PowerShell:

>

To uninstall AWS Command Line Interface v2 (Install), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade awscli -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade awscli -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install awscli
  win_chocolatey:
    name: awscli
    version: '2.24.10'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'awscli' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2.24.10'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller awscli
{
    Name     = "awscli"
    Version  = "2.24.10"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'awscli':
  ensure   => '2.24.10',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved as a trusted package on 22 Feb 2025.

Description

AWS Command Line Interface

The AWS Command Line Interface (CLI) is a unified tool to manage your AWS services. With just one tool to download and configure, you can control multiple AWS services from the command line and automate them through scripts.

The AWS CLI v2 offers several new features including improved installers, new configuration options such as AWS Single Sign-On (SSO), and various interactive features.

Maintainer's Note

I produce and maintain Chocolatey packages in my spare time, for free. If you use my packages, and appreciate the time and effort I put into making and maintaining them, please consider making a small donation. Thank-you!


tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop';

$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url64      = 'https://awscli.amazonaws.com/AWSCLIV2-2.24.10.msi'
$checksum64 = '005151ad5d4ae8f338b4ba741e190662d1ab453c0830d22e50aff6ad84a5c7f0'

$packageArgs = @{
  packageName   = $env:ChocolateyPackageName
  unzipLocation = $toolsDir
  fileType      = 'MSI'
  url64bit      = $url64
  softwareName  = 'AWS Command Line Interface v2*'
  checksum64    = $checksum64
  checksumType64= 'sha256'
  silentArgs    = "/qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
  validExitCodes= @(0, 3010, 1641)
}

Install-ChocolateyPackage @packageArgs

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
AWS Command Line Interface v2 (Install) 2.24.9 3150 Friday, February 21, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.8 4531 Thursday, February 20, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.7 3350 Wednesday, February 19, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.6 5439 Tuesday, February 18, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.5 9156 Saturday, February 15, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.4 1588 Friday, February 14, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.3 6102 Wednesday, February 12, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.2 4150 Wednesday, February 12, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.1 4965 Tuesday, February 11, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.0 9030 Saturday, February 8, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.15 3069 Friday, February 7, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.14 4947 Wednesday, February 5, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.13 3741 Wednesday, February 5, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.12 1639 Tuesday, February 4, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.11 10567 Saturday, February 1, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.10 561 Friday, January 31, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.9 3664 Thursday, January 30, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.8 5567 Wednesday, January 29, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.7 5294 Tuesday, January 28, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.6 8279 Saturday, January 25, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.5 3121 Friday, January 24, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.4 3541 Thursday, January 23, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.3 2157 Wednesday, January 22, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.2 10464 Saturday, January 18, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.1 3416 Friday, January 17, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.0 3083 Thursday, January 16, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.35 3999 Wednesday, January 15, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.34 4529 Tuesday, January 14, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.33 8601 Saturday, January 11, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.32 3220 Friday, January 10, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.30 6188 Wednesday, January 8, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.29 4566 Tuesday, January 7, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.28 6881 Saturday, January 4, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.27 2731 Friday, January 3, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.26 8169 Monday, December 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.25 4375 Saturday, December 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.24 2691 Friday, December 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.23 4984 Tuesday, December 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.22 4566 Saturday, December 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.21 2680 Friday, December 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.20 5172 Thursday, December 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.19 1489 Wednesday, December 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.18 5498 Tuesday, December 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.17 7064 Saturday, December 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.16 2921 Friday, December 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.15 2091 Thursday, December 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.14 4672 Wednesday, December 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.13 4085 Tuesday, December 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.12 11167 Thursday, December 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.10 3807 Wednesday, December 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.8 6232 Tuesday, December 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.7 10330 Thursday, November 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.5 6109 Tuesday, November 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.4 8415 Saturday, November 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.2 5549 Thursday, November 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.1 3520 Wednesday, November 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.0 4289 Tuesday, November 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.3 8736 Saturday, November 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.2 2956 Friday, November 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.0 2957 Thursday, November 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.20.0 5371 Wednesday, November 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.5 5079 Tuesday, November 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.4 7881 Saturday, November 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.3 2143 Friday, November 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.2 3418 Thursday, November 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.1 9820 Saturday, November 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.0 2509 Friday, November 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.18 2148 Thursday, October 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.17 82 Wednesday, October 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.16 5615 Tuesday, October 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.15 5407 Saturday, October 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.14 10208 Friday, October 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.13 4170 Thursday, October 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.12 2991 Wednesday, October 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.11 4707 Tuesday, October 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.10 8342 Saturday, October 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.9 3417 Friday, October 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.8 4064 Thursday, October 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.7 3732 Wednesday, October 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.6 3380 Tuesday, October 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.4 8876 Friday, October 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.3 3407 Thursday, October 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.2 3814 Wednesday, October 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.1 4563 Tuesday, October 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.0 6921 Saturday, October 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.65 2551 Friday, October 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.64 3708 Thursday, October 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.63 2656 Wednesday, October 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.61 11210 Saturday, September 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.59 5709 Thursday, September 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.58 3689 Wednesday, September 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.57 3904 Tuesday, September 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.56 7834 Saturday, September 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.55 2900 Friday, September 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.54 3618 Thursday, September 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.53 3638 Wednesday, September 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.52 3749 Tuesday, September 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.51 8046 Saturday, September 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.50 3072 Friday, September 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.49 3941 Thursday, September 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.48 4708 Wednesday, September 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.47 6128 Monday, September 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.46 4041 Saturday, September 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.45 211 Friday, September 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.44 3227 Thursday, September 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.43 7356 Wednesday, September 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.42 9250 Saturday, August 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.40 4505 Thursday, August 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.39 4053 Wednesday, August 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.38 3544 Tuesday, August 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.37 7546 Saturday, August 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.36 2904 Friday, August 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.35 3325 Thursday, August 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.34 3783 Wednesday, August 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.33 3388 Tuesday, August 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.32 6781 Saturday, August 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.31 2487 Friday, August 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.30 2774 Thursday, August 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.29 4377 Wednesday, August 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.28 3160 Tuesday, August 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.27 5312 Saturday, August 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.26 3077 Friday, August 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.25 3130 Thursday, August 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.24 2572 Wednesday, August 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.23 3982 Tuesday, August 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.22 6020 Saturday, August 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.21 2813 Friday, August 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.20 5496 Wednesday, July 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.19 2402 Tuesday, July 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.18 7305 Friday, July 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.16 5424 Wednesday, July 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.15 3260 Tuesday, July 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.14 8704 Friday, July 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.13 12338 Saturday, July 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.12 4059 Thursday, July 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.11 3659 Wednesday, July 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.10 3827 Tuesday, July 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.9 7889 Saturday, July 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.8 4701 Thursday, July 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.7 4206 Wednesday, July 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.6 3406 Tuesday, July 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.5 7463 Saturday, June 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.4 1898 Friday, June 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.3 83 Thursday, June 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.2 6249 Wednesday, June 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.1 4536 Tuesday, June 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.0 9383 Friday, June 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.12 4189 Thursday, June 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.11 2710 Wednesday, June 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.10 4747 Tuesday, June 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.9 8030 Friday, June 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.8 1918 Friday, June 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.7 4381 Thursday, June 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.6 3894 Wednesday, June 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.5 4489 Tuesday, June 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.4 7376 Saturday, June 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.3 1685 Friday, June 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.2 4854 Thursday, June 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.1 3526 Wednesday, June 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.0 3274 Tuesday, June 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.62 6040 Saturday, June 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.61 3031 Friday, May 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.60 5270 Thursday, May 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.59 3902 Wednesday, May 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.58 11027 Saturday, May 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.57 3522 Friday, May 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.56 3126 Thursday, May 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.55 4412 Wednesday, May 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.54 2773 Tuesday, May 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.53 6203 Saturday, May 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.52 2534 Friday, May 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.51 3571 Thursday, May 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.50 3002 Wednesday, May 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.49 3026 Tuesday, May 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.48 7418 Saturday, May 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.47 3738 Thursday, May 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.46 1020 Thursday, May 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.45 6664 Tuesday, May 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.44 19063 Saturday, May 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.43 4592 Thursday, May 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.42 10613 Saturday, April 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.41 5081 Thursday, April 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.40 10116 Saturday, April 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.39 4481 Thursday, April 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.38 10737 Saturday, April 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.37 4298 Thursday, April 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.36 10070 Saturday, April 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.35 4497 Thursday, April 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.34 12184 Saturday, March 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.33 5030 Thursday, March 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.32 11296 Saturday, March 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.31 6481 Thursday, March 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.30 12784 Saturday, March 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.28 11046 Tuesday, March 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.27 7028 Saturday, March 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.26 6856 Thursday, March 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.25 21986 Saturday, March 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.24 8434 Thursday, February 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.23 15558 Saturday, February 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.22 8359 Thursday, February 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.21 12861 Saturday, February 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.20 7118 Thursday, February 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.19 16625 Saturday, February 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.17 20743 Saturday, February 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.16 6679 Thursday, February 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.15 14916 Saturday, January 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.14 7112 Thursday, January 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.13 8849 Tuesday, January 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.12 8918 Saturday, January 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.11 8033 Thursday, January 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.10 13579 Saturday, January 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.9 7096 Thursday, January 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.8 12527 Saturday, January 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.7 6353 Thursday, January 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.6 10139 Saturday, December 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.5 5026 Thursday, December 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.4 8677 Saturday, December 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.3 6501 Thursday, December 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.2 11620 Saturday, December 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.1 5138 Thursday, December 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.0 16442 Saturday, December 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.6 8807 Thursday, December 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.5 15052 Friday, December 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.2 6390 Wednesday, November 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.0 7094 Tuesday, November 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.38 14242 Wednesday, November 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.37 14527 Saturday, November 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.36 5245 Thursday, November 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.35 8369 Tuesday, November 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.34 9180 Saturday, November 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.32 15396 Saturday, November 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.31 6376 Thursday, November 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.30 13078 Saturday, October 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.29 6262 Thursday, October 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.28 13419 Saturday, October 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.27 8174 Thursday, October 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.26 13439 Saturday, October 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.25 15871 Saturday, October 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.24 6406 Thursday, October 5, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.23 7962 Tuesday, October 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.21 152 Saturday, September 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.20 24750 Thursday, September 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.19 12578 Saturday, September 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.18 7113 Thursday, September 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.16 17751 Thursday, September 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.15 12156 Saturday, September 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.14 8498 Thursday, August 31, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.13 13401 Saturday, August 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.12 7030 Thursday, August 24, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.11 1651 Saturday, August 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.9 27550 Saturday, August 12, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.8 7277 Thursday, August 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.7 12979 Saturday, August 5, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.6 7608 Thursday, August 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.5 91 Saturday, July 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.4 15810 Thursday, July 27, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.3 14469 Saturday, July 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.2 14380 Thursday, July 20, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.1 23126 Friday, July 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.0 28079 Saturday, July 8, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.7 11029 Thursday, July 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.6 17584 Saturday, July 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.5 7364 Friday, June 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.4 8137 Thursday, June 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.3 17515 Saturday, June 24, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.2 10893 Thursday, June 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.1 18173 Saturday, June 17, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.0 11919 Thursday, June 15, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.27 13213 Saturday, June 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.26 6992 Thursday, June 8, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.25 12532 Saturday, June 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.24 7235 Thursday, June 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.23 12710 Saturday, May 27, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.22 7835 Thursday, May 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.21 13240 Saturday, May 20, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.20 25212 Saturday, May 13, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.19 9799 Thursday, May 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.17 17188 Thursday, May 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.16 16333 Saturday, April 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.13 24511 Saturday, April 15, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.11 21932 Monday, April 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.10 9190 Thursday, April 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.9 8735 Tuesday, April 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.8 9257 Saturday, April 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.6 17756 Saturday, March 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.5 6861 Thursday, March 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.4 17532 Saturday, March 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.2 17689 Saturday, March 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.1 7559 Thursday, March 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.0 14312 Friday, March 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.4 5952 Thursday, March 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.3 11641 Saturday, February 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.2 8228 Thursday, February 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.1 12540 Saturday, February 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.23 17746 Saturday, February 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.22 7355 Thursday, February 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.21 11302 Monday, February 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.20 11457 Thursday, February 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.19 11424 Monday, January 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.18 11755 Thursday, January 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.17 13399 Saturday, January 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.16 8675 Thursday, January 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.15 12856 Saturday, January 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.14 7511 Thursday, January 12, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.13 15798 Friday, January 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.12 14456 Saturday, December 31, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.11 7011 Thursday, December 29, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.10 11223 Friday, December 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.9 7501 Thursday, December 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.8 12859 Saturday, December 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.7 8523 Thursday, December 15, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.6 13945 Saturday, December 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.5 7441 Thursday, December 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.4 12295 Saturday, December 3, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.3 6371 Thursday, December 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.2 5455 Wednesday, November 30, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.1 13521 Thursday, November 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.0 16220 Saturday, November 19, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.13 6801 Thursday, November 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.12 9614 Saturday, November 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.11 11594 Thursday, November 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.9 13300 Saturday, November 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.8 7498 Thursday, November 3, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.7 15735 Friday, October 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.6 7412 Thursday, October 27, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.5 10792 Saturday, October 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.3 17777 Friday, October 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.2 15611 Saturday, October 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.1 6601 Thursday, October 6, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.0 10816 Saturday, October 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.35 13659 Saturday, September 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.34 6735 Thursday, September 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.33 11609 Saturday, September 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.32 6929 Thursday, September 15, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.31 14077 Saturday, September 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.30 7652 Thursday, September 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.29 13884 Monday, September 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.28 19869 Thursday, September 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.26 23212 Thursday, August 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.25 16572 Saturday, August 20, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.24 11610 Wednesday, August 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.22 15290 Friday, August 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.21 32584 Thursday, August 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.20 16114 Saturday, July 30, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.19 7935 Thursday, July 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.18 14078 Saturday, July 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.17 8200 Thursday, July 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.16 13998 Saturday, July 16, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.15 7268 Thursday, July 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.14 13317 Saturday, July 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.13 6240 Thursday, July 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.11 27789 Saturday, June 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.9 18293 Saturday, June 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.8 4871 Friday, June 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.7 21312 Thursday, June 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.6 11606 Saturday, June 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.5 6973 Thursday, June 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.4 11548 Friday, May 27, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.3 6134 Thursday, May 26, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.2 12309 Saturday, May 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.1 7932 Wednesday, May 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.0 11223 Saturday, May 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.4 6837 Wednesday, May 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.3 8226 Sunday, May 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.2 6878 Thursday, May 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.1 9366 Friday, April 29, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.0 5269 Thursday, April 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.8 10739 Friday, April 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.7 3714 Thursday, April 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.6 10545 Saturday, April 16, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.4 11253 Saturday, April 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.3 5823 Thursday, April 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.2 8600 Saturday, April 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.1 5851 Thursday, March 31, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.0 6706 Monday, March 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.29 8301 Saturday, March 26, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.28 5498 Thursday, March 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.27 10428 Friday, March 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.25 12189 Friday, March 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.24 5938 Wednesday, March 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.23 8759 Friday, March 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.22 6045 Wednesday, March 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.21 22703 Friday, February 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.20 6053 Wednesday, February 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.19 8093 Friday, February 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.18 10530 Friday, February 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.17 6764 Wednesday, February 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.16 8291 Friday, February 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.15 10539 Friday, January 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.13 10804 Friday, January 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.12 14765 Wednesday, January 19, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.11 6754 Friday, January 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.10 4149 Wednesday, January 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.9 6807 Friday, January 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.7 13193 Wednesday, December 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.6 16953 Friday, December 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.5 8489 Saturday, December 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.4 2622 Friday, December 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.3 4965 Tuesday, November 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.2 6572 Saturday, November 27, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.1 6057 Wednesday, November 24, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.0 6794 Friday, November 19, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.7 5195 Wednesday, November 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.6 7377 Friday, November 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.5 5112 Wednesday, November 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.4 6906 Friday, November 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.0 16198 Friday, October 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.47 4847 Wednesday, October 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.46 6650 Friday, October 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.45 5709 Tuesday, October 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.43 12447 Friday, October 1, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.42 5072 Wednesday, September 29, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.41 6539 Friday, September 24, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.40 3963 Wednesday, September 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.39 6049 Friday, September 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.38 4401 Wednesday, September 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.37 7473 Friday, September 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.36 4150 Wednesday, September 8, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.35 5756 Friday, September 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.33 7949 Friday, August 27, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.32 3618 Wednesday, August 25, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.31 6399 Friday, August 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.30 4160 Wednesday, August 18, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.29 5778 Friday, August 13, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.28 3841 Wednesday, August 11, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.27 6395 Friday, August 6, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.26 3313 Wednesday, August 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.25 7450 Saturday, July 31, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.24 2019 Friday, July 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.23 2368 Wednesday, July 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.22 6914 Friday, July 23, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.21 4511 Wednesday, July 21, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.20 5169 Friday, July 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.19 3345 Thursday, July 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.18 7048 Friday, July 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.17 3869 Wednesday, July 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.16 7019 Friday, July 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.15 5963 Wednesday, June 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.14 5451 Friday, June 25, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.13 7780 Thursday, June 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.12 6074 Wednesday, June 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.11 5575 Friday, June 11, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.10 4716 Wednesday, June 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.9 5975 Friday, June 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.8 3375 Wednesday, June 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.7 6441 Friday, May 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.6 4372 Wednesday, May 26, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.5 13309 Saturday, May 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.4 5562 Wednesday, May 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.3 5760 Friday, May 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.2 3946 Wednesday, May 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.1 5019 Friday, April 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.0 3130 Wednesday, April 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.39 122 Thursday, April 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.38 12357 Friday, April 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.37 4064 Wednesday, April 14, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.36 5642 Friday, April 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.35 421 Wednesday, April 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.34 9243 Friday, April 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.33 3533 Wednesday, March 31, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.32 558 Tuesday, March 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.29 53534 Tuesday, March 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.28 18516 Tuesday, February 23, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.27 33923 Wednesday, February 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.26 5930 Friday, February 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.25 3076 Wednesday, February 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.24 6745 Friday, February 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.23 3526 Wednesday, February 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.22 9937 Friday, January 29, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.21 7677 Friday, January 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.20 4342 Wednesday, January 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.19 5620 Friday, January 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.18 2783 Wednesday, January 13, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.17 4978 Friday, January 8, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.16 1907 Wednesday, January 6, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.15 5638 Wednesday, December 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.14 4073 Wednesday, December 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.13 4539 Friday, December 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.12 1917 Thursday, December 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.11 1699 Wednesday, December 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.10 5288 Friday, December 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.9 1688 Thursday, December 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.8 3096 Wednesday, December 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.7 4693 Friday, December 4, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.6 2467 Wednesday, December 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.4 6788 Wednesday, November 25, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.3 4777 Friday, November 20, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.2 2170 Wednesday, November 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.1 4464 Friday, November 13, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.0 4055 Wednesday, November 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.63 4732 Tuesday, November 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.62 2850 Friday, November 6, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.61 7131 Friday, October 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.60 4070 Wednesday, October 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.59 7205 Friday, October 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.58 3270 Wednesday, October 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.57 3728 Friday, October 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.56 9041 Friday, October 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.55 5565 Wednesday, October 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.54 4983 Friday, October 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.53 5918 Wednesday, September 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.52 4369 Friday, September 25, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.51 2411 Thursday, September 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.50 6571 Friday, September 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.49 2962 Wednesday, September 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.48 5250 Friday, September 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.47 3342 Wednesday, September 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.46 3869 Friday, September 4, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.45 2723 Wednesday, September 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.44 3219 Friday, August 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.43 4806 Wednesday, August 26, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.42 5739 Friday, August 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.41 3168 Wednesday, August 19, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.40 3648 Friday, August 14, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.39 3794 Wednesday, August 12, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.38 4247 Friday, August 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.37 3097 Wednesday, August 5, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.36 4056 Friday, July 31, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.35 3015 Wednesday, July 29, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.34 4524 Friday, July 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.33 3371 Wednesday, July 22, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.31 5597 Thursday, July 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.30 7971 Friday, July 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.29 2782 Wednesday, July 8, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.28 3979 Friday, July 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.27 2829 Wednesday, July 1, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.26 4435 Friday, June 26, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.25 2922 Wednesday, June 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.24 4417 Friday, June 19, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.23 2756 Wednesday, June 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.22 5555 Friday, June 12, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.21 1233 Thursday, June 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.20 1882 Wednesday, June 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.19 3636 Friday, June 5, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.18 2149 Wednesday, June 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.17 4604 Wednesday, May 27, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.15 3511 Thursday, May 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.14 5658 Friday, May 15, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.13 2538 Wednesday, May 13, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.12 4022 Friday, May 8, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.11 3282 Wednesday, May 6, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.10 6430 Tuesday, April 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.9 3410 Thursday, April 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.8 4781 Friday, April 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.7 6240 Tuesday, April 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.6 5849 Tuesday, March 31, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.5 5120 Tuesday, March 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.4 5439 Wednesday, March 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.3 5711 Tuesday, March 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.2 4310 Tuesday, March 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.1 5774 Wednesday, February 26, 2020 Approved
AWS Command Line Interface (Install) 1.36.8 17 Friday, November 22, 2024 Approved
AWS Command Line Interface (Install) 1.34.30 28 Tuesday, October 1, 2024 Approved
AWS Command Line Interface (Install) 1.33.37 29 Tuesday, August 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.102 55 Friday, May 10, 2024 Approved
AWS Command Line Interface (Install) 1.32.100 43 Wednesday, May 8, 2024 Approved
AWS Command Line Interface (Install) 1.32.97 37 Friday, May 3, 2024 Approved
AWS Command Line Interface (Install) 1.32.95 49 Wednesday, May 1, 2024 Approved
AWS Command Line Interface (Install) 1.32.94 43 Tuesday, April 30, 2024 Approved
AWS Command Line Interface (Install) 1.32.92 44 Friday, April 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.89 48 Tuesday, April 23, 2024 Approved
AWS Command Line Interface (Install) 1.32.87 41 Friday, April 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.86 41 Wednesday, April 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.85 43 Wednesday, April 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.83 34 Friday, April 12, 2024 Approved
AWS Command Line Interface (Install) 1.32.81 39 Wednesday, April 10, 2024 Approved
AWS Command Line Interface (Install) 1.32.80 41 Tuesday, April 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.76 33 Wednesday, April 3, 2024 Approved
AWS Command Line Interface (Install) 1.32.75 39 Tuesday, April 2, 2024 Approved
AWS Command Line Interface (Install) 1.32.73 37 Friday, March 29, 2024 Approved
AWS Command Line Interface (Install) 1.32.71 52 Wednesday, March 27, 2024 Approved
AWS Command Line Interface (Install) 1.32.70 50 Tuesday, March 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.66 48 Wednesday, March 20, 2024 Approved
AWS Command Line Interface (Install) 1.32.65 45 Tuesday, March 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.61 52 Wednesday, March 13, 2024 Approved
AWS Command Line Interface (Install) 1.32.58 44 Friday, March 8, 2024 Approved
AWS Command Line Interface (Install) 1.32.56 39 Wednesday, March 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.53 44 Friday, March 1, 2024 Approved
AWS Command Line Interface (Install) 1.32.51 39 Wednesday, February 28, 2024 Approved
AWS Command Line Interface (Install) 1.32.50 34 Tuesday, February 27, 2024 Approved
AWS Command Line Interface (Install) 1.32.48 43 Friday, February 23, 2024 Approved
AWS Command Line Interface (Install) 1.32.45 47 Tuesday, February 20, 2024 Approved
AWS Command Line Interface (Install) 1.32.43 36 Friday, February 16, 2024 Approved
AWS Command Line Interface (Install) 1.32.40 39 Tuesday, February 13, 2024 Approved
AWS Command Line Interface (Install) 1.32.38 54 Friday, February 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.36 50 Wednesday, February 7, 2024 Approved
AWS Command Line Interface (Install) 1.32.35 42 Tuesday, February 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.33 43 Friday, February 2, 2024 Approved
AWS Command Line Interface (Install) 1.32.31 39 Wednesday, January 31, 2024 Approved
AWS Command Line Interface (Install) 1.32.30 53 Tuesday, January 30, 2024 Approved
AWS Command Line Interface (Install) 1.32.28 44 Friday, January 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.22 37 Friday, January 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.20 38 Wednesday, January 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.19 52 Monday, January 15, 2024 Approved
AWS Command Line Interface (Install) 1.32.17 38 Friday, January 12, 2024 Approved
AWS Command Line Interface (Install) 1.32.15 51 Tuesday, January 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.13 51 Friday, January 5, 2024 Approved
AWS Command Line Interface (Install) 1.32.6 49 Friday, December 22, 2023 Approved
AWS Command Line Interface (Install) 1.32.4 53 Wednesday, December 20, 2023 Approved
AWS Command Line Interface (Install) 1.32.3 53 Tuesday, December 19, 2023 Approved
AWS Command Line Interface (Install) 1.32.1 50 Friday, December 15, 2023 Approved
AWS Command Line Interface (Install) 1.31.13 50 Wednesday, December 13, 2023 Approved
AWS Command Line Interface (Install) 1.31.12 57 Monday, December 11, 2023 Approved
AWS Command Line Interface (Install) 1.31.10 51 Friday, December 8, 2023 Approved
AWS Command Line Interface (Install) 1.31.7 54 Tuesday, December 5, 2023 Approved
AWS Command Line Interface (Install) 1.31.6 65 Saturday, December 2, 2023 Approved
AWS Command Line Interface (Install) 1.30.4 56 Tuesday, November 21, 2023 Approved
AWS Command Line Interface (Install) 1.30.2 54 Friday, November 17, 2023 Approved
AWS Command Line Interface (Install) 1.30.0 53 Wednesday, November 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.83 48 Friday, November 10, 2023 Approved
AWS Command Line Interface (Install) 1.29.82 61 Thursday, November 9, 2023 Approved
AWS Command Line Interface (Install) 1.29.80 60 Wednesday, November 8, 2023 Approved
AWS Command Line Interface (Install) 1.29.79 57 Tuesday, November 7, 2023 Approved
AWS Command Line Interface (Install) 1.29.77 55 Thursday, November 2, 2023 Approved
AWS Command Line Interface (Install) 1.29.75 50 Wednesday, November 1, 2023 Approved
AWS Command Line Interface (Install) 1.29.72 49 Friday, October 27, 2023 Approved
AWS Command Line Interface (Install) 1.29.70 54 Wednesday, October 25, 2023 Approved
AWS Command Line Interface (Install) 1.29.69 53 Tuesday, October 24, 2023 Approved
AWS Command Line Interface (Install) 1.29.67 66 Friday, October 20, 2023 Approved
AWS Command Line Interface (Install) 1.29.65 56 Wednesday, October 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.64 61 Tuesday, October 17, 2023 Approved
AWS Command Line Interface (Install) 1.29.63 63 Friday, October 13, 2023 Approved
AWS Command Line Interface (Install) 1.29.61 44 Friday, October 6, 2023 Approved
AWS Command Line Interface (Install) 1.29.59 54 Wednesday, October 4, 2023 Approved
AWS Command Line Interface (Install) 1.29.57 54 Saturday, September 30, 2023 Approved
AWS Command Line Interface (Install) 1.29.55 52 Wednesday, September 27, 2023 Approved
AWS Command Line Interface (Install) 1.29.54 42 Tuesday, September 26, 2023 Approved
AWS Command Line Interface (Install) 1.29.51 64 Wednesday, September 20, 2023 Approved
AWS Command Line Interface (Install) 1.29.50 54 Tuesday, September 19, 2023 Approved
AWS Command Line Interface (Install) 1.29.48 56 Friday, September 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.45 57 Tuesday, September 12, 2023 Approved
AWS Command Line Interface (Install) 1.29.43 62 Friday, September 8, 2023 Approved
AWS Command Line Interface (Install) 1.29.41 49 Wednesday, September 6, 2023 Approved
AWS Command Line Interface (Install) 1.29.36 280 Tuesday, August 29, 2023 Approved
AWS Command Line Interface (Install) 1.29.34 45 Friday, August 25, 2023 Approved
AWS Command Line Interface (Install) 1.29.32 58 Wednesday, August 23, 2023 Approved
AWS Command Line Interface (Install) 1.29.31 61 Tuesday, August 22, 2023 Approved
AWS Command Line Interface (Install) 1.29.29 62 Friday, August 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.26 61 Tuesday, August 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.24 66 Friday, August 11, 2023 Approved
AWS Command Line Interface (Install) 1.29.22 81 Wednesday, August 9, 2023 Approved
AWS Command Line Interface (Install) 1.29.16 76 Tuesday, August 1, 2023 Approved
AWS Command Line Interface (Install) 1.29.14 60 Friday, July 28, 2023 Approved
AWS Command Line Interface (Install) 1.29.11 57 Wednesday, July 26, 2023 Approved
AWS Command Line Interface (Install) 1.29.5 47 Wednesday, July 19, 2023 Approved
AWS Command Line Interface (Install) 1.29.4 50 Tuesday, July 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.2 128 Wednesday, July 12, 2023 Approved
AWS Command Line Interface (Install) 1.29.0 179 Friday, July 7, 2023 Approved
AWS Command Line Interface (Install) 1.28.0 53 Tuesday, July 4, 2023 Approved
AWS Command Line Interface (Install) 1.27.162 50 Wednesday, June 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.161 65 Tuesday, June 27, 2023 Approved
AWS Command Line Interface (Install) 1.27.159 57 Friday, June 23, 2023 Approved
AWS Command Line Interface (Install) 1.27.157 57 Wednesday, June 21, 2023 Approved
AWS Command Line Interface (Install) 1.27.156 55 Tuesday, June 20, 2023 Approved
AWS Command Line Interface (Install) 1.27.153 56 Wednesday, June 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.152 46 Tuesday, June 13, 2023 Approved
AWS Command Line Interface (Install) 1.27.150 59 Friday, June 9, 2023 Approved
AWS Command Line Interface (Install) 1.27.148 49 Wednesday, June 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.145 55 Friday, June 2, 2023 Approved
AWS Command Line Interface (Install) 1.27.143 52 Wednesday, May 31, 2023 Approved
AWS Command Line Interface (Install) 1.27.141 63 Friday, May 26, 2023 Approved
AWS Command Line Interface (Install) 1.27.139 50 Wednesday, May 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.138 52 Tuesday, May 23, 2023 Approved
AWS Command Line Interface (Install) 1.27.135 59 Thursday, May 18, 2023 Approved
AWS Command Line Interface (Install) 1.27.134 64 Tuesday, May 16, 2023 Approved
AWS Command Line Interface (Install) 1.27.133 51 Friday, May 12, 2023 Approved
AWS Command Line Interface (Install) 1.27.131 60 Wednesday, May 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.130 66 Tuesday, May 9, 2023 Approved
AWS Command Line Interface (Install) 1.27.127 51 Friday, May 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.125 52 Wednesday, May 3, 2023 Approved
AWS Command Line Interface (Install) 1.27.124 52 Tuesday, May 2, 2023 Approved
AWS Command Line Interface (Install) 1.27.122 45 Friday, April 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.120 69 Wednesday, April 26, 2023 Approved
AWS Command Line Interface (Install) 1.27.119 57 Tuesday, April 25, 2023 Approved
AWS Command Line Interface (Install) 1.27.113 69 Friday, April 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.110 56 Tuesday, April 11, 2023 Approved
AWS Command Line Interface (Install) 1.27.106 53 Wednesday, April 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.101 65 Wednesday, March 29, 2023 Approved
AWS Command Line Interface (Install) 1.27.100 67 Tuesday, March 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.98 59 Friday, March 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.93 57 Friday, March 17, 2023 Approved
AWS Command Line Interface (Install) 1.27.90 57 Tuesday, March 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.88 76 Friday, March 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.86 47 Wednesday, March 8, 2023 Approved
AWS Command Line Interface (Install) 1.27.85 62 Tuesday, March 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.81 66 Wednesday, March 1, 2023 Approved
AWS Command Line Interface (Install) 1.27.80 53 Tuesday, February 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.78 64 Friday, February 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.75 64 Tuesday, February 21, 2023 Approved
AWS Command Line Interface (Install) 1.27.73 71 Friday, February 17, 2023 Approved
AWS Command Line Interface (Install) 1.27.71 66 Wednesday, February 15, 2023 Approved
AWS Command Line Interface (Install) 1.27.70 61 Tuesday, February 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.68 63 Friday, February 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.66 59 Wednesday, February 8, 2023 Approved
AWS Command Line Interface (Install) 1.27.65 64 Tuesday, February 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.63 69 Friday, February 3, 2023 Approved
AWS Command Line Interface (Install) 1.27.61 64 Wednesday, February 1, 2023 Approved
AWS Command Line Interface (Install) 1.27.60 59 Tuesday, January 31, 2023 Approved
AWS Command Line Interface (Install) 1.27.58 62 Friday, January 27, 2023 Approved
AWS Command Line Interface (Install) 1.27.56 60 Wednesday, January 25, 2023 Approved
AWS Command Line Interface (Install) 1.27.53 65 Friday, January 20, 2023 Approved
AWS Command Line Interface (Install) 1.27.51 58 Wednesday, January 18, 2023 Approved
AWS Command Line Interface (Install) 1.27.49 63 Friday, January 13, 2023 Approved
AWS Command Line Interface (Install) 1.27.47 65 Wednesday, January 11, 2023 Approved
AWS Command Line Interface (Install) 1.27.46 57 Tuesday, January 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.43 60 Thursday, January 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.40 58 Friday, December 30, 2022 Approved
AWS Command Line Interface (Install) 1.27.38 65 Wednesday, December 28, 2022 Approved
AWS Command Line Interface (Install) 1.27.36 61 Friday, December 23, 2022 Approved
AWS Command Line Interface (Install) 1.27.33 66 Tuesday, December 20, 2022 Approved
AWS Command Line Interface (Install) 1.27.31 60 Friday, December 16, 2022 Approved
AWS Command Line Interface (Install) 1.27.29 66 Wednesday, December 14, 2022 Approved
AWS Command Line Interface (Install) 1.27.26 60 Friday, December 9, 2022 Approved
AWS Command Line Interface (Install) 1.27.24 64 Wednesday, December 7, 2022 Approved
AWS Command Line Interface (Install) 1.27.23 63 Tuesday, December 6, 2022 Approved
AWS Command Line Interface (Install) 1.27.15 83 Wednesday, November 23, 2022 Approved
AWS Command Line Interface (Install) 1.27.14 73 Tuesday, November 22, 2022 Approved
AWS Command Line Interface (Install) 1.27.12 59 Friday, November 18, 2022 Approved
AWS Command Line Interface (Install) 1.27.10 67 Wednesday, November 16, 2022 Approved
AWS Command Line Interface (Install) 1.27.9 60 Tuesday, November 15, 2022 Approved
AWS Command Line Interface (Install) 1.27.7 67 Friday, November 11, 2022 Approved
AWS Command Line Interface (Install) 1.27.4 62 Tuesday, November 8, 2022 Approved
AWS Command Line Interface (Install) 1.27.3 69 Saturday, November 5, 2022 Approved
AWS Command Line Interface (Install) 1.27.2 77 Friday, November 4, 2022 Approved
AWS Command Line Interface (Install) 1.27.0 81 Wednesday, November 2, 2022 Approved
AWS Command Line Interface (Install) 1.26.5 75 Tuesday, November 1, 2022 Approved
AWS Command Line Interface (Install) 1.26.3 57 Friday, October 28, 2022 Approved
AWS Command Line Interface (Install) 1.26.1 54 Wednesday, October 26, 2022 Approved
AWS Command Line Interface (Install) 1.26.0 83 Tuesday, October 25, 2022 Approved
AWS Command Line Interface (Install) 1.25.96 60 Friday, October 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.94 75 Wednesday, October 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.93 70 Tuesday, October 18, 2022 Approved
AWS Command Line Interface (Install) 1.25.92 63 Saturday, October 15, 2022 Approved
AWS Command Line Interface (Install) 1.25.89 76 Friday, October 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.87 51 Wednesday, October 5, 2022 Approved
AWS Command Line Interface (Install) 1.25.83 58 Wednesday, September 28, 2022 Approved
AWS Command Line Interface (Install) 1.25.82 64 Tuesday, September 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.78 72 Wednesday, September 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.77 67 Monday, September 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.75 73 Friday, September 16, 2022 Approved
AWS Command Line Interface (Install) 1.25.73 79 Wednesday, September 14, 2022 Approved
AWS Command Line Interface (Install) 1.25.68 73 Wednesday, September 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.66 79 Friday, September 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.64 86 Wednesday, August 31, 2022 Approved
AWS Command Line Interface (Install) 1.25.63 74 Tuesday, August 30, 2022 Approved
AWS Command Line Interface (Install) 1.25.62 60 Saturday, August 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.59 70 Wednesday, August 24, 2022 Approved
AWS Command Line Interface (Install) 1.25.58 85 Tuesday, August 23, 2022 Approved
AWS Command Line Interface (Install) 1.25.56 71 Friday, August 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.55 77 Thursday, August 18, 2022 Approved
AWS Command Line Interface (Install) 1.25.51 80 Saturday, August 13, 2022 Approved
AWS Command Line Interface (Install) 1.25.49 75 Thursday, August 11, 2022 Approved
AWS Command Line Interface (Install) 1.25.48 74 Wednesday, August 10, 2022 Approved
AWS Command Line Interface (Install) 1.25.46 75 Friday, August 5, 2022 Approved
AWS Command Line Interface (Install) 1.25.43 70 Tuesday, August 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.42 74 Monday, August 1, 2022 Approved
AWS Command Line Interface (Install) 1.25.40 82 Friday, July 29, 2022 Approved
AWS Command Line Interface (Install) 1.25.38 69 Wednesday, July 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.37 65 Tuesday, July 26, 2022 Approved
AWS Command Line Interface (Install) 1.25.35 59 Friday, July 22, 2022 Approved
AWS Command Line Interface (Install) 1.25.32 63 Tuesday, July 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.28 70 Wednesday, July 13, 2022 Approved
AWS Command Line Interface (Install) 1.25.25 64 Friday, July 8, 2022 Approved
AWS Command Line Interface (Install) 1.25.23 76 Wednesday, July 6, 2022 Approved
AWS Command Line Interface (Install) 1.25.22 75 Saturday, July 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.21 71 Friday, July 1, 2022 Approved
AWS Command Line Interface (Install) 1.25.19 70 Wednesday, June 29, 2022 Approved
AWS Command Line Interface (Install) 1.25.18 71 Tuesday, June 28, 2022 Approved
AWS Command Line Interface (Install) 1.25.16 74 Friday, June 24, 2022 Approved
AWS Command Line Interface (Install) 1.25.14 69 Wednesday, June 22, 2022 Approved
AWS Command Line Interface (Install) 1.25.13 76 Tuesday, June 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.10 85 Thursday, June 16, 2022 Approved
AWS Command Line Interface (Install) 1.25.9 59 Wednesday, June 15, 2022 Approved
AWS Command Line Interface (Install) 1.25.8 100 Tuesday, June 14, 2022 Approved
AWS Command Line Interface (Install) 1.25.7 77 Saturday, June 11, 2022 Approved
AWS Command Line Interface (Install) 1.25.6 70 Friday, June 10, 2022 Approved
AWS Command Line Interface (Install) 1.25.4 65 Wednesday, June 8, 2022 Approved
AWS Command Line Interface (Install) 1.25.3 77 Tuesday, June 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.2 76 Friday, June 3, 2022 Approved
AWS Command Line Interface (Install) 1.25.0 94 Wednesday, June 1, 2022 Approved
AWS Command Line Interface (Install) 1.24.9 74 Friday, May 27, 2022 Approved
AWS Command Line Interface (Install) 1.24.7 94 Wednesday, May 25, 2022 Approved
AWS Command Line Interface (Install) 1.24.6 89 Tuesday, May 24, 2022 Approved
AWS Command Line Interface (Install) 1.24.4 87 Friday, May 20, 2022 Approved
AWS Command Line Interface (Install) 1.24.2 90 Wednesday, May 18, 2022 Approved
AWS Command Line Interface (Install) 1.24.1 88 Tuesday, May 17, 2022 Approved
AWS Command Line Interface (Install) 1.23.13 87 Friday, May 13, 2022 Approved
AWS Command Line Interface (Install) 1.23.11 87 Wednesday, May 11, 2022 Approved
AWS Command Line Interface (Install) 1.23.6 116 Wednesday, May 4, 2022 Approved
AWS Command Line Interface (Install) 1.23.5 75 Tuesday, May 3, 2022 Approved
AWS Command Line Interface (Install) 1.23.3 74 Thursday, April 28, 2022 Approved
AWS Command Line Interface (Install) 1.23.1 79 Wednesday, April 27, 2022 Approved
AWS Command Line Interface (Install) 1.23.0 107 Tuesday, April 26, 2022 Approved
AWS Command Line Interface (Install) 1.22.101 83 Saturday, April 23, 2022 Approved
AWS Command Line Interface (Install) 1.22.98 72 Wednesday, April 20, 2022 Approved
AWS Command Line Interface (Install) 1.22.96 87 Friday, April 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.94 87 Wednesday, April 13, 2022 Approved
AWS Command Line Interface (Install) 1.22.93 82 Tuesday, April 12, 2022 Approved
AWS Command Line Interface (Install) 1.22.89 94 Wednesday, April 6, 2022 Approved
AWS Command Line Interface (Install) 1.22.88 83 Tuesday, April 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.86 86 Friday, April 1, 2022 Approved
AWS Command Line Interface (Install) 1.22.84 75 Wednesday, March 30, 2022 Approved
AWS Command Line Interface (Install) 1.22.81 80 Friday, March 25, 2022 Approved
AWS Command Line Interface (Install) 1.22.79 75 Wednesday, March 23, 2022 Approved
AWS Command Line Interface (Install) 1.22.78 77 Tuesday, March 22, 2022 Approved
AWS Command Line Interface (Install) 1.22.77 197 Saturday, March 19, 2022 Approved
AWS Command Line Interface (Install) 1.22.74 83 Tuesday, March 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.71 89 Thursday, March 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.69 84 Tuesday, March 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.68 83 Saturday, March 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.66 82 Thursday, March 3, 2022 Approved
AWS Command Line Interface (Install) 1.22.64 77 Tuesday, March 1, 2022 Approved
AWS Command Line Interface (Install) 1.22.63 80 Saturday, February 26, 2022 Approved
AWS Command Line Interface (Install) 1.22.61 81 Thursday, February 24, 2022 Approved
AWS Command Line Interface (Install) 1.22.59 90 Tuesday, February 22, 2022 Approved
AWS Command Line Interface (Install) 1.22.58 89 Saturday, February 19, 2022 Approved
AWS Command Line Interface (Install) 1.22.56 84 Thursday, February 17, 2022 Approved
AWS Command Line Interface (Install) 1.22.55 84 Tuesday, February 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.54 122 Saturday, February 12, 2022 Approved
AWS Command Line Interface (Install) 1.22.52 96 Thursday, February 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.50 81 Tuesday, February 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.49 73 Saturday, February 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.47 91 Thursday, February 3, 2022 Approved
AWS Command Line Interface (Install) 1.22.46 96 Saturday, January 29, 2022 Approved
AWS Command Line Interface (Install) 1.22.44 99 Thursday, January 27, 2022 Approved
AWS Command Line Interface (Install) 1.22.42 103 Monday, January 24, 2022 Approved
AWS Command Line Interface (Install) 1.22.39 104 Thursday, January 20, 2022 Approved
AWS Command Line Interface (Install) 1.22.37 115 Saturday, January 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.34 83 Thursday, January 13, 2022 Approved
AWS Command Line Interface (Install) 1.22.32 87 Monday, January 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.31 96 Saturday, January 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.29 82 Thursday, January 6, 2022 Approved
AWS Command Line Interface (Install) 1.22.25 180 Tuesday, December 21, 2021 Approved
AWS Command Line Interface (Install) 1.22.24 92 Tuesday, December 14, 2021 Approved
AWS Command Line Interface (Install) 1.22.22 91 Thursday, December 9, 2021 Approved
AWS Command Line Interface (Install) 1.22.21 76 Tuesday, December 7, 2021 Approved
AWS Command Line Interface (Install) 1.22.13 109 Thursday, November 25, 2021 Approved
AWS Command Line Interface (Install) 1.22.11 95 Tuesday, November 23, 2021 Approved
AWS Command Line Interface (Install) 1.22.10 76 Saturday, November 20, 2021 Approved
AWS Command Line Interface (Install) 1.22.8 104 Thursday, November 18, 2021 Approved
AWS Command Line Interface (Install) 1.22.6 101 Tuesday, November 16, 2021 Approved
AWS Command Line Interface (Install) 1.22.5 99 Saturday, November 13, 2021 Approved
AWS Command Line Interface (Install) 1.22.3 118 Thursday, November 11, 2021 Approved
AWS Command Line Interface (Install) 1.22.1 96 Tuesday, November 9, 2021 Approved
AWS Command Line Interface (Install) 1.21.12 169 Saturday, November 6, 2021 Approved
AWS Command Line Interface (Install) 1.21.0 93 Thursday, October 21, 2021 Approved
AWS Command Line Interface (Install) 1.20.64 91 Tuesday, October 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.63 97 Saturday, October 16, 2021 Approved
AWS Command Line Interface (Install) 1.20.61 102 Thursday, October 14, 2021 Approved
AWS Command Line Interface (Install) 1.20.58 217 Saturday, October 9, 2021 Approved
AWS Command Line Interface (Install) 1.20.57 117 Friday, October 8, 2021 Approved
AWS Command Line Interface (Install) 1.20.56 104 Thursday, October 7, 2021 Approved
AWS Command Line Interface (Install) 1.20.54 98 Tuesday, October 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.53 92 Saturday, October 2, 2021 Approved
AWS Command Line Interface (Install) 1.20.51 96 Thursday, September 30, 2021 Approved
AWS Command Line Interface (Install) 1.20.49 103 Tuesday, September 28, 2021 Approved
AWS Command Line Interface (Install) 1.20.48 100 Saturday, September 25, 2021 Approved
AWS Command Line Interface (Install) 1.20.46 98 Thursday, September 23, 2021 Approved
AWS Command Line Interface (Install) 1.20.44 118 Saturday, September 18, 2021 Approved
AWS Command Line Interface (Install) 1.20.40 132 Saturday, September 11, 2021 Approved
AWS Command Line Interface (Install) 1.20.38 107 Thursday, September 9, 2021 Approved
AWS Command Line Interface (Install) 1.20.36 91 Saturday, September 4, 2021 Approved
AWS Command Line Interface (Install) 1.20.34 114 Thursday, September 2, 2021 Approved
AWS Command Line Interface (Install) 1.20.32 103 Tuesday, August 31, 2021 Approved
AWS Command Line Interface (Install) 1.20.31 95 Saturday, August 28, 2021 Approved
AWS Command Line Interface (Install) 1.20.29 89 Thursday, August 26, 2021 Approved
AWS Command Line Interface (Install) 1.20.27 103 Tuesday, August 24, 2021 Approved
AWS Command Line Interface (Install) 1.20.26 144 Saturday, August 21, 2021 Approved
AWS Command Line Interface (Install) 1.20.24 100 Thursday, August 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.23 121 Tuesday, August 17, 2021 Approved
AWS Command Line Interface (Install) 1.20.22 88 Tuesday, August 17, 2021 Approved
AWS Command Line Interface (Install) 1.20.21 108 Saturday, August 14, 2021 Approved
AWS Command Line Interface (Install) 1.20.19 106 Thursday, August 12, 2021 Approved
AWS Command Line Interface (Install) 1.20.17 101 Tuesday, August 10, 2021 Approved
AWS Command Line Interface (Install) 1.20.16 107 Saturday, August 7, 2021 Approved
AWS Command Line Interface (Install) 1.20.15 120 Thursday, August 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.14 109 Thursday, August 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.12 92 Tuesday, August 3, 2021 Approved
AWS Command Line Interface (Install) 1.20.9 103 Thursday, July 29, 2021 Approved
AWS Command Line Interface (Install) 1.20.7 111 Tuesday, July 27, 2021 Approved
AWS Command Line Interface (Install) 1.20.6 113 Saturday, July 24, 2021 Approved
AWS Command Line Interface (Install) 1.20.4 94 Thursday, July 22, 2021 Approved
AWS Command Line Interface (Install) 1.20.2 103 Monday, July 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.1 115 Saturday, July 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.111 83 Wednesday, July 14, 2021 Approved
AWS Command Line Interface (Install) 1.19.110 103 Tuesday, July 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.109 103 Saturday, July 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.107 91 Thursday, July 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.105 100 Friday, July 2, 2021 Approved
AWS Command Line Interface (Install) 1.19.103 1174 Thursday, July 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.102 114 Tuesday, June 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.101 101 Saturday, June 26, 2021 Approved
AWS Command Line Interface (Install) 1.19.99 117 Thursday, June 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.98 88 Tuesday, June 22, 2021 Approved
AWS Command Line Interface (Install) 1.19.96 103 Thursday, June 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.94 107 Tuesday, June 15, 2021 Approved
AWS Command Line Interface (Install) 1.19.93 104 Saturday, June 12, 2021 Approved
AWS Command Line Interface (Install) 1.19.92 101 Thursday, June 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.91 107 Thursday, June 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.89 105 Tuesday, June 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.88 98 Saturday, June 5, 2021 Approved
AWS Command Line Interface (Install) 1.19.86 99 Thursday, June 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.84 92 Saturday, May 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.82 98 Thursday, May 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.79 109 Tuesday, May 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.78 98 Saturday, May 22, 2021 Approved
AWS Command Line Interface (Install) 1.19.77 94 Friday, May 21, 2021 Approved
AWS Command Line Interface (Install) 1.19.76 96 Thursday, May 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.75 109 Wednesday, May 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.74 108 Tuesday, May 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.72 101 Friday, May 14, 2021 Approved
AWS Command Line Interface (Install) 1.19.70 107 Tuesday, May 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.69 114 Saturday, May 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.67 118 Thursday, May 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.64 114 Monday, May 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.62 117 Saturday, May 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.60 91 Thursday, April 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.58 103 Tuesday, April 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.57 91 Saturday, April 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.56 99 Friday, April 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.54 102 Tuesday, April 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.52 99 Thursday, April 15, 2021 Approved
AWS Command Line Interface (Install) 1.19.50 85 Tuesday, April 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.49 103 Saturday, April 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.45 107 Tuesday, April 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.44 94 Saturday, April 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.42 91 Thursday, April 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.40 92 Monday, March 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.39 113 Saturday, March 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.37 113 Thursday, March 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.35 120 Wednesday, March 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.34 110 Tuesday, March 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.32 96 Friday, March 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.30 121 Thursday, March 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.29 96 Wednesday, March 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.28 134 Tuesday, March 16, 2021 Approved
AWS Command Line Interface (Install) 1.19.27 113 Saturday, March 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.26 4333 Thursday, March 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.25 116 Thursday, March 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.23 119 Tuesday, March 9, 2021 Approved
AWS Command Line Interface (Install) 1.19.22 100 Saturday, March 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.21 112 Friday, March 5, 2021 Approved
AWS Command Line Interface (Install) 1.19.20 118 Thursday, March 4, 2021 Approved
AWS Command Line Interface (Install) 1.19.19 127 Wednesday, March 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.17 126 Saturday, February 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.16 119 Friday, February 26, 2021 Approved
AWS Command Line Interface (Install) 1.19.15 106 Thursday, February 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.13 94 Tuesday, February 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.12 108 Saturday, February 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.11 106 Friday, February 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.10 117 Thursday, February 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.8 97 Tuesday, February 16, 2021 Approved
AWS Command Line Interface (Install) 1.19.7 125 Saturday, February 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.4 137 Tuesday, February 9, 2021 Approved
AWS Command Line Interface (Install) 1.19.3 209 Saturday, February 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.1 135 Thursday, February 4, 2021 Approved
AWS Command Line Interface (Install) 1.18.223 117 Saturday, January 30, 2021 Approved
AWS Command Line Interface (Install) 1.18.221 120 Thursday, January 28, 2021 Approved
AWS Command Line Interface (Install) 1.18.220 122 Wednesday, January 27, 2021 Approved
AWS Command Line Interface (Install) 1.18.219 141 Saturday, January 23, 2021 Approved
AWS Command Line Interface (Install) 1.18.216 107 Saturday, January 16, 2021 Approved
AWS Command Line Interface (Install) 1.18.214 131 Thursday, January 14, 2021 Approved
AWS Command Line Interface (Install) 1.18.212 127 Tuesday, January 12, 2021 Approved
AWS Command Line Interface (Install) 1.18.210 117 Thursday, January 7, 2021 Approved
AWS Command Line Interface (Install) 1.18.208 127 Tuesday, January 5, 2021 Approved
AWS Command Line Interface (Install) 1.18.207 105 Friday, January 1, 2021 Approved
AWS Command Line Interface (Install) 1.18.206 118 Thursday, December 31, 2020 Approved
AWS Command Line Interface (Install) 1.18.205 120 Tuesday, December 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.204 108 Monday, December 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.201 109 Tuesday, December 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.200 111 Friday, December 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.197 106 Tuesday, December 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.196 113 Tuesday, December 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.195 1864 Saturday, December 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.193 100 Wednesday, December 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.191 104 Tuesday, December 8, 2020 Approved
AWS Command Line Interface (Install) 1.18.190 118 Saturday, December 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.184 123 Tuesday, November 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.183 120 Saturday, November 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.181 138 Thursday, November 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.179 129 Tuesday, November 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.178 135 Saturday, November 14, 2020 Approved
AWS Command Line Interface (Install) 1.18.176 106 Thursday, November 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.174 117 Monday, November 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.173 126 Saturday, November 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.171 191 Thursday, November 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.170 132 Tuesday, November 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.167 140 Thursday, October 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.165 249 Tuesday, October 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.164 144 Saturday, October 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.162 142 Thursday, October 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.160 129 Tuesday, October 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.159 113 Saturday, October 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.157 189 Saturday, October 10, 2020 Approved
AWS Command Line Interface (Install) 1.18.153 131 Tuesday, October 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.152 142 Saturday, October 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.150 133 Thursday, October 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.148 129 Tuesday, September 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.147 156 Saturday, September 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.146 114 Thursday, September 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.144 111 Wednesday, September 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.143 123 Tuesday, September 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.142 120 Saturday, September 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.141 414 Thursday, September 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.140 133 Thursday, September 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.138 110 Tuesday, September 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.137 124 Saturday, September 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.133 172 Saturday, September 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.131 135 Thursday, September 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.129 141 Tuesday, September 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.128 144 Saturday, August 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.126 182 Thursday, August 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.125 146 Tuesday, August 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.123 157 Thursday, August 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.121 184 Tuesday, August 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.120 140 Saturday, August 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.119 129 Thursday, August 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.116 7036 Monday, August 10, 2020 Approved
AWS Command Line Interface (Install) 1.18.115 146 Saturday, August 8, 2020 Approved
AWS Command Line Interface (Install) 1.18.113 184 Thursday, August 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.111 180 Tuesday, August 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.110 186 Saturday, August 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.108 165 Thursday, July 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.106 183 Tuesday, July 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.105 185 Saturday, July 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.103 220 Thursday, July 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.101 1302 Tuesday, July 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.100 181 Saturday, July 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.96 209 Thursday, July 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.94 233 Tuesday, July 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.92 208 Thursday, July 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.90 209 Tuesday, June 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.89 252 Saturday, June 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.87 215 Thursday, June 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.85 218 Tuesday, June 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.84 244 Saturday, June 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.82 203 Thursday, June 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.80 287 Tuesday, June 16, 2020 Approved
AWS Command Line Interface (Install) 1.18.79 225 Saturday, June 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.75 191 Tuesday, June 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.74 228 Saturday, June 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.72 229 Thursday, June 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.70 223 Tuesday, June 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.69 6581 Friday, May 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.68 241 Thursday, May 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.65 29098 Thursday, May 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.63 196 Wednesday, May 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.62 240 Tuesday, May 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.61 217 Saturday, May 16, 2020 Approved
AWS Command Line Interface (Install) 1.18.57 204 Tuesday, May 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.56 265 Saturday, May 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.54 220 Thursday, May 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.52 216 Tuesday, May 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.51 288 Saturday, May 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.50 179 Friday, May 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.49 213 Thursday, April 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.46 390 Saturday, April 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.43 234 Wednesday, April 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.42 559 Tuesday, April 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.41 210 Friday, April 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.39 236 Thursday, April 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.36 369 Saturday, April 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.35 215 Friday, April 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.34 190 Thursday, April 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.31 238 Saturday, March 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.30 241 Thursday, March 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.29 196 Thursday, March 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.28 314 Wednesday, March 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.26 254 Saturday, March 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.25 243 Friday, March 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.24 230 Thursday, March 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.22 204 Tuesday, March 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.21 267 Saturday, March 14, 2020 Approved
AWS Command Line Interface (Install) 1.18.20 230 Friday, March 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.19 233 Thursday, March 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.16 183 Saturday, March 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.15 174 Friday, March 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.14 242 Thursday, March 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.11 22546 Saturday, February 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.9 5891 Friday, February 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.6 3730 Tuesday, February 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.5 4432 Friday, February 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.4 1230 Friday, February 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.3 1423 Thursday, February 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.2 1405 Wednesday, February 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.1 1674 Tuesday, February 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.0 1991 Saturday, February 15, 2020 Approved
AWS Command Line Interface (Install) 1.17.17 4233 Friday, February 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.16 2967 Thursday, February 13, 2020 Approved
AWS Command Line Interface (Install) 1.17.15 1556 Wednesday, February 12, 2020 Approved
AWS Command Line Interface (Install) 1.17.13 3062 Saturday, February 8, 2020 Approved
AWS Command Line Interface (Install) 1.17.12 1242 Friday, February 7, 2020 Approved
AWS Command Line Interface (Install) 1.17.11 175 Thursday, February 6, 2020 Approved
AWS Command Line Interface (Install) 1.17.10 197 Wednesday, February 5, 2020 Approved
AWS Command Line Interface (Install) 1.17.9 8287 Saturday, January 25, 2020 Approved
AWS Command Line Interface (Install) 1.17.8 961 Friday, January 24, 2020 Approved
AWS Command Line Interface (Install) 1.17.7 3053 Wednesday, January 22, 2020 Approved
AWS Command Line Interface (Install) 1.17.6 293 Tuesday, January 21, 2020 Approved
AWS Command Line Interface (Install) 1.17.5 2580 Saturday, January 18, 2020 Approved
AWS Command Line Interface (Install) 1.17.4 1223 Friday, January 17, 2020 Approved
AWS Command Line Interface (Install) 1.17.3 1119 Thursday, January 16, 2020 Approved
AWS Command Line Interface (Install) 1.17.2 2041 Tuesday, January 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.1 1198 Tuesday, January 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.0 2047 Saturday, January 11, 2020 Approved
AWS Command Line Interface (Install) 1.16.314 1403 Friday, January 10, 2020 Approved
AWS Command Line Interface (Install) 1.16.313 1429 Thursday, January 9, 2020 Approved
AWS Command Line Interface (Install) 1.16.312 1128 Wednesday, January 8, 2020 Approved
AWS Command Line Interface (Install) 1.16.311 1359 Tuesday, January 7, 2020 Approved
AWS Command Line Interface (Install) 1.16.310 198 Friday, January 3, 2020 Approved
AWS Command Line Interface (Install) 1.16.309 1446 Tuesday, December 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.308 5840 Saturday, December 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.307 1078 Friday, December 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.305 2047 Wednesday, December 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.303 2546 Saturday, December 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.302 1192 Friday, December 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.301 1544 Thursday, December 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.300 1306 Wednesday, December 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.299 1552 Tuesday, December 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.298 2569 Friday, December 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.297 1318 Thursday, December 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.296 1363 Wednesday, December 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.294 833 Tuesday, December 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.292 4758 Wednesday, November 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.291 1381 Tuesday, November 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.290 2104 Saturday, November 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.289 1219 Friday, November 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.287 1315 Thursday, November 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.286 1764 Wednesday, November 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.284 1564 Tuesday, November 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.283 2223 Saturday, November 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.282 1285 Friday, November 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.281 1574 Thursday, November 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.280 1530 Wednesday, November 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.279 1478 Tuesday, November 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.278 2101 Saturday, November 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.277 2687 Friday, November 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.276 1410 Thursday, November 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.274 1656 Tuesday, November 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.273 1312 Tuesday, November 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.272 2103 Saturday, November 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.271 1024 Friday, November 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.270 1518 Thursday, October 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.269 1584 Wednesday, October 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.268 1635 Tuesday, October 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.266 2898 Friday, October 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.265 1818 Thursday, October 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.264 1556 Wednesday, October 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.263 3578 Friday, October 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.262 741 Friday, October 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.261 2365 Thursday, October 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.260 1583 Wednesday, October 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.259 1520 Tuesday, October 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.258 1972 Saturday, October 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.257 1345 Friday, October 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.256 2079 Thursday, October 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.255 1726 Wednesday, October 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.254 1406 Tuesday, October 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.253 2039 Saturday, October 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.252 1537 Friday, October 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.251 2156 Thursday, October 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.250 1651 Wednesday, October 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.249 1677 Tuesday, October 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.248 2385 Saturday, September 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.247 1159 Friday, September 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.246 1853 Wednesday, September 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.245 1460 Wednesday, September 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.244 1552 Tuesday, September 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.243 1872 Saturday, September 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.242 1263 Friday, September 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.241 2355 Thursday, September 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.240 1510 Wednesday, September 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.239 1168 Tuesday, September 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.238 7187 Friday, September 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.237 1837 Thursday, September 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.236 1408 Wednesday, September 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.235 1340 Tuesday, September 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.234 1819 Saturday, September 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.233 1239 Friday, September 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.232 1873 Thursday, September 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.231 1285 Wednesday, September 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.230 2527 Saturday, August 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.229 1906 Friday, August 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.228 2840 Thursday, August 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.227 2376 Wednesday, August 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.226 1292 Tuesday, August 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.225 2047 Friday, August 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.224 1102 Friday, August 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.223 1174 Thursday, August 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.222 1251 Wednesday, August 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.221 2608 Tuesday, August 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.220 1884 Saturday, August 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.219 1130 Friday, August 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.218 1207 Thursday, August 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.217 1695 Wednesday, August 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.216 1151 Tuesday, August 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.215 1681 Saturday, August 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.214 1042 Friday, August 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.213 2238 Thursday, August 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.212 564 Wednesday, August 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.211 1727 Tuesday, August 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.210 1684 Saturday, August 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.209 5171 Wednesday, July 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.208 1024 Tuesday, July 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.207 1635 Saturday, July 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.206 1200 Friday, July 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.205 1414 Thursday, July 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.204 1219 Tuesday, July 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.203 1217 Tuesday, July 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.202 1169 Monday, July 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.201 855 Saturday, July 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.200 927 Friday, July 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.199 1130 Thursday, July 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.198 3130 Saturday, July 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.197 971 Friday, July 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.196 1045 Thursday, July 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.195 1063 Wednesday, July 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.194 1275 Tuesday, July 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.193 2757 Thursday, July 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.192 998 Wednesday, July 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.191 997 Tuesday, July 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.190 1567 Saturday, June 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.189 885 Friday, June 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.188 997 Thursday, June 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.186 1221 Wednesday, June 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.185 1051 Tuesday, June 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.184 2840 Saturday, June 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.183 1014 Friday, June 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.182 879 Thursday, June 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.181 1380 Wednesday, June 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.180 1471 Tuesday, June 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.179 1705 Saturday, June 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.178 905 Friday, June 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.177 2301 Thursday, June 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.176 1605 Wednesday, June 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.175 1511 Tuesday, June 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.174 1895 Saturday, June 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.173 1083 Friday, June 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.172 1285 Thursday, June 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.171 1294 Wednesday, June 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.170 1436 Tuesday, June 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.169 2998 Friday, May 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.168 1181 Thursday, May 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.167 1083 Wednesday, May 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.166 2335 Saturday, May 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.165 1052 Friday, May 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.164 12792 Thursday, May 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.163 1266 Wednesday, May 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.162 1294 Monday, May 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.161 1789 Saturday, May 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.160 1139 Friday, May 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.159 1029 Thursday, May 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.158 1124 Wednesday, May 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.157 1395 Tuesday, May 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.156 1848 Saturday, May 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.155 1698 Thursday, May 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.154 1256 Wednesday, May 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.153 1327 Tuesday, May 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.152 2632 Saturday, May 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.151 1452 Friday, May 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.150 1237 Thursday, May 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.149 1039 Wednesday, May 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.148 1246 Tuesday, April 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.147 1982 Saturday, April 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.146 1229 Friday, April 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.145 1511 Thursday, April 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.144 2981 Saturday, April 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.143 1100 Friday, April 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.142 1053 Thursday, April 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.141 1125 Wednesday, April 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.140 10584 Saturday, April 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.139 1125 Friday, April 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.138 1246 Thursday, April 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.137 781 Wednesday, April 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.136 1487 Tuesday, April 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.135 2020 Saturday, March 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.134 1182 Friday, March 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.133 1715 Thursday, March 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.132 1581 Tuesday, March 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.131 1202 Tuesday, March 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.130 1867 Saturday, March 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.129 969 Friday, March 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.128 1174 Thursday, March 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.127 938 Wednesday, March 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.126 1639 Tuesday, March 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.125 2639 Friday, March 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.124 1224 Thursday, March 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.123 435 Wednesday, March 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.122 1947 Tuesday, March 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.121 1940 Saturday, March 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.120 1044 Friday, March 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.119 1066 Thursday, March 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.118 1188 Wednesday, March 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.117 1573 Tuesday, March 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.116 1673 Saturday, March 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.115 1401 Friday, March 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.114 4695 Thursday, February 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.113 1528 Wednesday, February 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.112 1218 Tuesday, February 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.111 1679 Saturday, February 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.110 964 Friday, February 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.109 1334 Thursday, February 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.108 1223 Wednesday, February 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.107 1248 Tuesday, February 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.106 1932 Saturday, February 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.105 1248 Friday, February 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.104 1185 Thursday, February 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.103 872 Wednesday, February 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.102 1270 Tuesday, February 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.101 1526 Saturday, February 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.99 1730 Thursday, February 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.98 1272 Wednesday, February 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.97 1191 Tuesday, February 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.96 5906 Saturday, January 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.94 1764 Thursday, January 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.93 1794 Tuesday, January 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.92 1731 Saturday, January 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.91 1061 Friday, January 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.90 1254 Thursday, January 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.89 1868 Tuesday, January 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.88 1619 Saturday, January 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.87 951 Friday, January 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.86 986 Thursday, January 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.85 1754 Tuesday, January 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.84 1521 Saturday, January 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.81 5028 Saturday, December 22, 2018 Approved
AWS Command Line Interface (Install) 1.16.80 883 Friday, December 21, 2018 Approved
AWS Command Line Interface (Install) 1.16.79 941 Thursday, December 20, 2018 Approved
AWS Command Line Interface (Install) 1.16.78 1111 Wednesday, December 19, 2018 Approved
AWS Command Line Interface (Install) 1.16.77 936 Tuesday, December 18, 2018 Approved
AWS Command Line Interface (Install) 1.16.76 1501 Saturday, December 15, 2018 Approved
AWS Command Line Interface (Install) 1.16.75 1084 Friday, December 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.74 1205 Thursday, December 13, 2018 Approved
AWS Command Line Interface (Install) 1.16.73 1186 Wednesday, December 12, 2018 Approved
AWS Command Line Interface (Install) 1.16.72 2556 Saturday, December 8, 2018 Approved
AWS Command Line Interface (Install) 1.16.71 1056 Friday, December 7, 2018 Approved
AWS Command Line Interface (Install) 1.16.70 1448 Thursday, December 6, 2018 Approved
AWS Command Line Interface (Install) 1.16.69 1349 Wednesday, December 5, 2018 Approved
AWS Command Line Interface (Install) 1.16.68 2135 Tuesday, December 4, 2018 Approved
AWS Command Line Interface (Install) 1.16.67 3013 Friday, November 30, 2018 Approved
AWS Command Line Interface (Install) 1.16.65 1083 Thursday, November 29, 2018 Approved
AWS Command Line Interface (Install) 1.16.63 1281 Wednesday, November 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.60 4027 Thursday, November 22, 2018 Approved
AWS Command Line Interface (Install) 1.16.59 790 Wednesday, November 21, 2018 Approved
AWS Command Line Interface (Install) 1.16.58 1522 Tuesday, November 20, 2018 Approved
AWS Command Line Interface (Install) 1.16.57 2128 Saturday, November 17, 2018 Approved
AWS Command Line Interface (Install) 1.16.56 1252 Friday, November 16, 2018 Approved
AWS Command Line Interface (Install) 1.16.55 1303 Thursday, November 15, 2018 Approved
AWS Command Line Interface (Install) 1.16.54 1278 Wednesday, November 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.53 1430 Tuesday, November 13, 2018 Approved
AWS Command Line Interface (Install) 1.16.52 1983 Saturday, November 10, 2018 Approved
AWS Command Line Interface (Install) 1.16.51 797 Friday, November 9, 2018 Approved
AWS Command Line Interface (Install) 1.16.50 689 Thursday, November 8, 2018 Approved
AWS Command Line Interface (Install) 1.16.48 2474 Tuesday, November 6, 2018 Approved
AWS Command Line Interface (Install) 1.16.47 1816 Saturday, November 3, 2018 Approved
AWS Command Line Interface (Install) 1.16.46 1055 Friday, November 2, 2018 Approved
AWS Command Line Interface (Install) 1.16.45 1150 Thursday, November 1, 2018 Approved
AWS Command Line Interface (Install) 1.16.44 1163 Wednesday, October 31, 2018 Approved
AWS Command Line Interface (Install) 1.16.43 2295 Sunday, October 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.42 1542 Friday, October 26, 2018 Approved
AWS Command Line Interface (Install) 1.16.41 1066 Thursday, October 25, 2018 Approved
AWS Command Line Interface (Install) 1.16.40 1127 Wednesday, October 24, 2018 Approved
AWS Command Line Interface (Install) 1.16.39 1019 Tuesday, October 23, 2018 Approved
AWS Command Line Interface (Install) 1.16.38 1163 Sunday, October 21, 2018 Approved
AWS Command Line Interface (Install) 1.16.37 1576 Friday, October 19, 2018 Approved
AWS Command Line Interface (Install) 1.16.36 1088 Thursday, October 18, 2018 Approved
AWS Command Line Interface (Install) 1.16.35 1286 Wednesday, October 17, 2018 Approved
AWS Command Line Interface (Install) 1.16.34 1025 Tuesday, October 16, 2018 Approved
AWS Command Line Interface (Install) 1.16.33 1086 Sunday, October 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.32 1567 Friday, October 12, 2018 Approved
AWS Command Line Interface (Install) 1.16.29 2448 Tuesday, October 9, 2018 Approved
AWS Command Line Interface (Install) 1.16.28 1096 Monday, October 8, 2018 Approved
AWS Command Line Interface (Install) 1.16.27 1574 Friday, October 5, 2018 Approved
AWS Command Line Interface (Install) 1.16.26 1613 Wednesday, October 3, 2018 Approved
AWS Command Line Interface (Install) 1.16.25 1084 Tuesday, October 2, 2018 Approved
AWS Command Line Interface (Install) 1.16.24 1069 Monday, October 1, 2018 Approved
AWS Command Line Interface (Install) 1.16.23 1462 Friday, September 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.22 1015 Thursday, September 27, 2018 Approved
AWS Command Line Interface (Install) 1.16.21 1064 Wednesday, September 26, 2018 Approved
AWS Command Line Interface (Install) 1.16.20 1103 Tuesday, September 25, 2018 Approved
AWS Command Line Interface (Install) 1.16.19 1070 Monday, September 24, 2018 Approved
AWS Command Line Interface (Install) 1.16.18 1989 Friday, September 21, 2018 Approved
AWS Command Line Interface (Install) 1.16.17 1328 Thursday, September 20, 2018 Approved
AWS Command Line Interface (Install) 1.16.16 1124 Wednesday, September 19, 2018 Approved
AWS Command Line Interface (Install) 1.16.15 1242 Tuesday, September 18, 2018 Approved
AWS Command Line Interface (Install) 1.16.14 2554 Friday, September 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.13 1195 Thursday, September 13, 2018 Approved
AWS Command Line Interface (Install) 1.16.11 1774 Tuesday, September 11, 2018 Approved
AWS Command Line Interface (Install) 1.16.10 1303 Monday, September 10, 2018 Approved
AWS Command Line Interface (Install) 1.16.9 1772 Friday, September 7, 2018 Approved
AWS Command Line Interface (Install) 1.16.8 1050 Thursday, September 6, 2018 Approved
AWS Command Line Interface (Install) 1.16.7 1073 Wednesday, September 5, 2018 Approved
AWS Command Line Interface (Install) 1.16.6 1823 Monday, September 3, 2018 Approved
AWS Command Line Interface (Install) 1.16.5 1951 Friday, August 31, 2018 Approved
AWS Command Line Interface (Install) 1.16.4 1070 Thursday, August 30, 2018 Approved
AWS Command Line Interface (Install) 1.16.3 726 Wednesday, August 29, 2018 Approved
AWS Command Line Interface (Install) 1.16.2 520 Tuesday, August 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.1 1928 Monday, August 27, 2018 Approved
AWS Command Line Interface (Install) 1.15.85 1656 Friday, August 24, 2018 Approved
AWS Command Line Interface (Install) 1.15.84 1855 Thursday, August 23, 2018 Approved
AWS Command Line Interface (Install) 1.15.83 667 Wednesday, August 22, 2018 Approved
AWS Command Line Interface (Install) 1.15.82 1400 Tuesday, August 21, 2018 Approved
AWS Command Line Interface (Install) 1.15.81 1079 Monday, August 20, 2018 Approved
AWS Command Line Interface (Install) 1.15.80 1624 Friday, August 17, 2018 Approved
AWS Command Line Interface (Install) 1.15.79 971 Thursday, August 16, 2018 Approved
AWS Command Line Interface (Install) 1.15.78 967 Wednesday, August 15, 2018 Approved
AWS Command Line Interface (Install) 1.15.77 887 Tuesday, August 14, 2018 Approved
AWS Command Line Interface (Install) 1.15.76 985 Monday, August 13, 2018 Approved
AWS Command Line Interface (Install) 1.15.75 1610 Friday, August 10, 2018 Approved
AWS Command Line Interface (Install) 1.15.74 988 Thursday, August 9, 2018 Approved
AWS Command Line Interface (Install) 1.15.73 966 Wednesday, August 8, 2018 Approved
AWS Command Line Interface (Install) 1.15.72 979 Tuesday, August 7, 2018 Approved
AWS Command Line Interface (Install) 1.15.71 1009 Monday, August 6, 2018 Approved
AWS Command Line Interface (Install) 1.15.70 1442 Friday, August 3, 2018 Approved
AWS Command Line Interface (Install) 1.15.69 990 Thursday, August 2, 2018 Approved
AWS Command Line Interface (Install) 1.15.68 1010 Wednesday, August 1, 2018 Approved
AWS Command Line Interface (Install) 1.15.67 1014 Tuesday, July 31, 2018 Approved
AWS Command Line Interface (Install) 1.15.66 2268 Friday, July 27, 2018 Approved
AWS Command Line Interface (Install) 1.15.65 1062 Thursday, July 26, 2018 Approved
AWS Command Line Interface (Install) 1.15.64 1031 Wednesday, July 25, 2018 Approved
AWS Command Line Interface (Install) 1.15.63 2032 Monday, July 23, 2018 Approved
AWS Command Line Interface (Install) 1.15.62 1550 Friday, July 20, 2018 Approved
AWS Command Line Interface (Install) 1.15.61 1112 Thursday, July 19, 2018 Approved
AWS Command Line Interface (Install) 1.15.60 1064 Wednesday, July 18, 2018 Approved
AWS Command Line Interface (Install) 1.15.59 1532 Monday, July 16, 2018 Approved
AWS Command Line Interface (Install) 1.15.58 1404 Friday, July 13, 2018 Approved
AWS Command Line Interface (Install) 1.15.57 1005 Thursday, July 12, 2018 Approved
AWS Command Line Interface (Install) 1.15.56 997 Wednesday, July 11, 2018 Approved
AWS Command Line Interface (Install) 1.15.55 929 Tuesday, July 10, 2018 Approved
AWS Command Line Interface (Install) 1.15.53 1019 Sunday, July 8, 2018 Approved
AWS Command Line Interface (Install) 1.15.52 1319 Friday, July 6, 2018 Approved
AWS Command Line Interface 1.15.51 1583 Tuesday, July 3, 2018 Approved
AWS Command Line Interface 1.15.50 937 Monday, July 2, 2018 Approved
AWS Command Line Interface (Install) 1.15.49 1943 Friday, June 29, 2018 Approved
AWS Command Line Interface (Install) 1.15.47 942 Thursday, June 28, 2018 Approved
AWS Command Line Interface (Install) 1.15.46 499 Wednesday, June 27, 2018 Approved
AWS Command Line Interface (Install) 1.15.45 503 Monday, June 25, 2018 Approved
AWS Command Line Interface (Install) 1.15.44 727 Friday, June 22, 2018 Approved
AWS Command Line Interface (Install) 1.15.42 3060 Thursday, June 21, 2018 Approved
AWS Command Line Interface (Install) 1.15.41 988 Wednesday, June 20, 2018 Approved
AWS Command Line Interface (Install) 1.15.40 1452 Monday, June 18, 2018 Approved
AWS Command Line Interface (Install) 1.15.39 1462 Friday, June 15, 2018 Approved
AWS Command Line Interface (Install) 1.15.37 1542 Wednesday, June 13, 2018 Approved
AWS Command Line Interface (Install) 1.15.35 1501 Monday, June 11, 2018 Approved
AWS Command Line Interface (Install) 1.15.34 1602 Friday, June 8, 2018 Approved
AWS Command Line Interface (Install) 1.15.33 1861 Wednesday, June 6, 2018 Approved
AWS Command Line Interface ((Install) 1.15.31 2184 Saturday, June 2, 2018 Approved
AWS Command Line Interface 1.15.20 6980 Tuesday, May 15, 2018 Approved
AWS Command Line Interface 1.15.2 15386 Friday, April 6, 2018 Approved
AWS Command Line Interface 1.15.1 776 Thursday, April 5, 2018 Approved
AWS Command Line Interface 1.15.0 717 Wednesday, April 4, 2018 Approved
AWS Command Line Interface 1.14.70 823 Tuesday, April 3, 2018 Approved
AWS Command Line Interface 1.14.69 313 Tuesday, April 3, 2018 Approved
AWS Command Line Interface 1.14.68 295 Friday, March 30, 2018 Approved
AWS Command Line Interface 1.14.67 1568 Friday, March 30, 2018 Approved
AWS Command Line Interface 1.14.43 11592 Tuesday, February 20, 2018 Approved
AWS Command Line Interface 1.14.42 867 Monday, February 19, 2018 Approved
AWS Command Line Interface 1.14.41 833 Sunday, February 18, 2018 Approved
AWS Command Line Interface 1.14.40 896 Thursday, February 15, 2018 Approved
AWS Command Line Interface 1.14.39 715 Thursday, February 15, 2018 Approved
AWS Command Line Interface 1.14.37 1201 Tuesday, February 13, 2018 Approved
AWS Command Line Interface 1.14.36 1166 Saturday, February 10, 2018 Approved
AWS Command Line Interface 1.14.35 766 Thursday, February 8, 2018 Approved
AWS Command Line Interface 1.14.34 1026 Wednesday, February 7, 2018 Approved
AWS Command Line Interface 1.14.32 2747 Tuesday, January 30, 2018 Approved
AWS Command Line Interface 1.14.30 2488 Tuesday, January 23, 2018 Approved
AWS Command Line Interface 1.14.29 442 Monday, January 22, 2018 Approved
AWS Command Line Interface 1.14.24 3063 Saturday, January 13, 2018 Approved
AWS Command Line Interface 1.14.23 841 Thursday, January 11, 2018 Approved
AWS Command Line Interface 1.14.22 791 Thursday, January 11, 2018 Approved
AWS Command Line Interface 1.14.19 2231 Saturday, January 6, 2018 Approved
AWS Command Line Interface 1.14.18 1490 Wednesday, January 3, 2018 Approved
AWS Command Line Interface 1.14.16 1527 Friday, December 22, 2017 Approved
AWS Command Line Interface 1.14.15 577 Friday, December 22, 2017 Approved
AWS Command Line Interface 1.14.12 1122 Tuesday, December 19, 2017 Approved
AWS Command Line Interface 1.14.11 848 Saturday, December 16, 2017 Approved
AWS Command Line Interface 1.14.10 731 Thursday, December 14, 2017 Approved
AWS Command Line Interface 1.14.9 1000 Tuesday, December 12, 2017 Approved
AWS Command Line Interface 1.14.8 655 Tuesday, December 12, 2017 Approved
AWS Command Line Interface 1.14.7 907 Saturday, December 9, 2017 Approved
AWS Command Line Interface 1.14.6 676 Thursday, December 7, 2017 Approved
AWS Command Line Interface 1.14.5 506 Thursday, December 7, 2017 Approved
AWS Command Line Interface 1.14.3 1138 Monday, December 4, 2017 Approved
AWS Command Line Interface 1.14.2 1055 Thursday, November 30, 2017 Approved
AWS Command Line Interface 1.14.1 564 Thursday, November 30, 2017 Approved
AWS Command Line Interface 1.14.0 463 Wednesday, November 29, 2017 Approved
AWS Command Line Interface 1.13.0 587 Wednesday, November 29, 2017 Approved
AWS Command Line Interface 1.12.2 955 Monday, November 27, 2017 Approved
AWS Command Line Interface 1.12.1 949 Thursday, November 23, 2017 Approved
AWS Command Line Interface 1.12.0 604 Wednesday, November 22, 2017 Approved
AWS Command Line Interface 1.11.190 742 Tuesday, November 21, 2017 Approved
AWS Command Line Interface 1.11.189 850 Saturday, November 18, 2017 Approved
AWS Command Line Interface 1.11.188 666 Friday, November 17, 2017 Approved
AWS Command Line Interface 1.11.187 659 Wednesday, November 15, 2017 Approved
AWS Command Line Interface 1.11.186 635 Wednesday, November 15, 2017 Approved
AWS Command Line Interface 1.11.185 1190 Thursday, November 9, 2017 Approved
AWS Command Line Interface 1.11.184 806 Thursday, November 9, 2017 Approved
AWS Command Line Interface 1.11.183 695 Tuesday, November 7, 2017 Approved
AWS Command Line Interface 1.11.181 1075 Saturday, November 4, 2017 Approved
AWS Command Line Interface 1.11.180 662 Friday, November 3, 2017 Approved
AWS Command Line Interface 1.11.179 669 Thursday, November 2, 2017 Approved
AWS Command Line Interface 1.11.178 1547 Friday, October 27, 2017 Approved
AWS Command Line Interface 1.11.177 854 Wednesday, October 25, 2017 Approved
AWS Command Line Interface 1.11.176 695 Tuesday, October 24, 2017 Approved
AWS Command Line Interface 1.11.175 888 Friday, October 20, 2017 Approved
AWS Command Line Interface 1.11.174 706 Thursday, October 19, 2017 Approved
AWS Command Line Interface 1.11.173 689 Wednesday, October 18, 2017 Approved
AWS Command Line Interface 1.11.172 794 Tuesday, October 17, 2017 Approved
AWS Command Line Interface 1.11.171 746 Monday, October 16, 2017 Approved
AWS Command Line Interface 1.11.170 1087 Thursday, October 12, 2017 Approved
AWS Command Line Interface 1.11.169 767 Wednesday, October 11, 2017 Approved
AWS Command Line Interface 1.11.167 1555 Saturday, October 7, 2017 Approved
AWS Command Line Interface 1.11.166 607 Thursday, October 5, 2017 Approved
AWS Command Line Interface 1.11.165 605 Thursday, October 5, 2017 Approved
AWS Command Line Interface 1.11.164 732 Tuesday, October 3, 2017 Approved
AWS Command Line Interface 1.11.163 694 Monday, October 2, 2017 Approved
AWS Command Line Interface 1.11.162 787 Saturday, September 30, 2017 Approved
AWS Command Line Interface 1.11.160 1912 Tuesday, September 26, 2017 Approved
AWS Command Line Interface 1.11.159 15518 Monday, September 25, 2017 Approved
AWS Command Line Interface 1.11.158 1423 Thursday, September 21, 2017 Approved
AWS Command Line Interface 1.11.157 481 Thursday, September 21, 2017 Approved
AWS Command Line Interface 1.11.156 991 Wednesday, September 20, 2017 Approved
AWS Command Line Interface 1.11.155 773 Tuesday, September 19, 2017 Approved
AWS Command Line Interface 1.11.154 1017 Friday, September 15, 2017 Approved
AWS Command Line Interface 1.11.152 916 Wednesday, September 13, 2017 Approved
AWS Command Line Interface 1.11.151 783 Tuesday, September 12, 2017 Approved
AWS Command Line Interface 1.11.150 750 Tuesday, September 12, 2017 Approved
AWS Command Line Interface 1.11.148 1303 Friday, September 8, 2017 Approved
AWS Command Line Interface 1.11.146 1135 Tuesday, September 5, 2017 Approved
AWS Command Line Interface 1.11.145 1745 Saturday, September 2, 2017 Approved
AWS Command Line Interface 1.11.144 13646 Friday, September 1, 2017 Approved
AWS Command Line Interface 1.11.143 741 Thursday, August 31, 2017 Approved
AWS Command Line Interface 1.11.142 962 Tuesday, August 29, 2017 Approved
AWS Command Line Interface 1.11.141 1893 Saturday, August 26, 2017 Approved
AWS Command Line Interface 1.11.140 1157 Thursday, August 24, 2017 Approved
AWS Command Line Interface 1.11.139 990 Wednesday, August 23, 2017 Approved
AWS Command Line Interface 1.11.137 1558 Tuesday, August 22, 2017 Approved
AWS Command Line Interface 1.11.133 4214 Saturday, August 12, 2017 Approved
AWS Command Line Interface 1.11.132 1038 Friday, August 11, 2017 Approved
AWS Command Line Interface 1.11.131 1242 Wednesday, August 9, 2017 Approved
AWS Command Line Interface 1.11.129 7102 Wednesday, August 2, 2017 Approved
AWS Command Line Interface 1.11.128 1161 Tuesday, August 1, 2017 Approved
AWS Command Line Interface 1.11.127 2234 Friday, July 28, 2017 Approved
AWS Command Line Interface 1.11.126 1151 Thursday, July 27, 2017 Approved
AWS Command Line Interface 1.11.125 628 Wednesday, July 26, 2017 Approved
AWS Command Line Interface 1.11.124 1714 Monday, July 24, 2017 Approved
AWS Command Line Interface 1.11.123 2240 Friday, July 21, 2017 Approved
AWS Command Line Interface 1.11.122 1080 Wednesday, July 19, 2017 Approved
AWS Command Line Interface 1.11.121 1568 Tuesday, July 18, 2017 Approved
AWS Command Line Interface 1.11.120 2082 Saturday, July 15, 2017 Approved
AWS Command Line Interface 1.11.118 1864 Thursday, July 13, 2017 Approved
AWS Command Line Interface 1.11.115 8474 Friday, June 30, 2017 Approved
AWS Command Line Interface 1.11.114 1316 Thursday, June 29, 2017 Approved
AWS Command Line Interface 1.11.113 1273 Wednesday, June 28, 2017 Approved
AWS Command Line Interface 1.11.112 3440 Friday, June 23, 2017 Approved
AWS Command Line Interface 1.11.111 840 Friday, June 23, 2017 Approved
AWS Command Line Interface 1.11.110 1283 Thursday, June 22, 2017 Approved
AWS Command Line Interface 1.11.109 911 Wednesday, June 21, 2017 Approved
AWS Command Line Interface 1.11.108 1417 Monday, June 19, 2017 Approved
AWS Command Line Interface 1.11.107 1576 Sunday, June 18, 2017 Approved
AWS Command Line Interface 1.11.101 7224 Thursday, June 8, 2017 Approved
AWS Command Line Interface 1.11.100 1503 Wednesday, June 7, 2017 Approved
AWS Command Line Interface 1.11.99 658 Wednesday, June 7, 2017 Approved
AWS Command Line Interface 1.11.98 788 Monday, June 5, 2017 Approved
AWS Command Line Interface 1.11.97 3116 Saturday, June 3, 2017 Approved
AWS Command Line Interface 1.11.96 1213 Friday, June 2, 2017 Approved
AWS Command Line Interface 1.11.95 1214 Wednesday, May 31, 2017 Approved
AWS Command Line Interface 1.11.94 1169 Wednesday, May 31, 2017 Approved
AWS Command Line Interface 1.11.91 4706 Wednesday, May 24, 2017 Approved
AWS Command Line Interface 1.11.90 746 Tuesday, May 23, 2017 Approved
AWS Command Line Interface 1.11.89 3231 Friday, May 19, 2017 Approved
AWS Command Line Interface 1.11.88 1036 Thursday, May 18, 2017 Approved
AWS Command Line Interface 1.11.87 1256 Wednesday, May 17, 2017 Approved
AWS Command Line Interface 1.11.86 1172 Tuesday, May 16, 2017 Approved
AWS Command Line Interface 1.11.85 2402 Friday, May 12, 2017 Approved
AWS Command Line Interface 1.11.83 3934 Friday, May 5, 2017 Approved
AWS Command Line Interface 1.11.82 3624 Saturday, April 29, 2017 Approved
AWS Command Line Interface 1.11.81 1887 Wednesday, April 26, 2017 Approved
AWS Command Line Interface 1.11.80 1436 Saturday, April 22, 2017 Approved
AWS Command Line Interface 1.11.79 619 Friday, April 21, 2017 Approved
AWS Command Line Interface 1.11.78 894 Wednesday, April 19, 2017 Approved
AWS Command Line Interface 1.11.77 1493 Tuesday, April 18, 2017 Approved
AWS Command Line Interface 1.11.76 7977 Tuesday, April 11, 2017 Approved
AWS Command Line Interface 1.11.75 1465 Saturday, April 8, 2017 Approved
AWS Command Line Interface 1.11.74 890 Thursday, April 6, 2017 Approved
AWS Command Line Interface 1.11.73 915 Thursday, April 6, 2017 Approved
AWS Command Line Interface 1.11.72 782 Tuesday, April 4, 2017 Approved
AWS Command Line Interface 1.11.71 701 Tuesday, April 4, 2017 Approved
AWS Command Line Interface 1.11.70 940 Friday, March 31, 2017 Approved
AWS Command Line Interface 1.11.69 611 Friday, March 31, 2017 Approved
AWS Command Line Interface 1.11.68 1085 Wednesday, March 29, 2017 Approved
AWS Command Line Interface 1.11.67 716 Tuesday, March 28, 2017 Approved
AWS Command Line Interface 1.11.66 1033 Thursday, March 23, 2017 Approved
AWS Command Line Interface 1.11.65 844 Thursday, March 23, 2017 Approved
AWS Command Line Interface 1.11.64 703 Wednesday, March 22, 2017 Approved
AWS Command Line Interface 1.11.63 1805 Tuesday, March 14, 2017 Approved
AWS Command Line Interface 1.11.61 881 Friday, March 10, 2017 Approved
AWS Command Line Interface 1.11.60 758 Friday, March 10, 2017 Approved
AWS Command Line Interface 1.11.59 708 Thursday, March 9, 2017 Approved
AWS Command Line Interface 1.11.58 693 Wednesday, March 8, 2017 Approved
AWS Command Line Interface 1.11.57 638 Tuesday, March 7, 2017 Approved
AWS Command Line Interface 1.11.56 1850 Tuesday, February 28, 2017 Approved
AWS Command Line Interface 1.11.55 791 Sunday, February 26, 2017 Approved
AWS Command Line Interface 1.11.54 771 Friday, February 24, 2017 Approved
AWS Command Line Interface 1.11.52 1105 Wednesday, February 22, 2017 Approved
AWS Command Line Interface 1.11.51 42647 Sunday, February 19, 2017 Approved
AWS Command Line Interface 1.11.50 799 Friday, February 17, 2017 Approved
AWS Command Line Interface 1.11.49 781 Thursday, February 16, 2017 Approved
AWS Command Line Interface 1.11.48 803 Wednesday, February 15, 2017 Approved
AWS Command Line Interface 1.11.47 547 Tuesday, February 14, 2017 Approved
AWS Command Line Interface 1.11.46 1423 Friday, February 10, 2017 Approved
AWS Command Line Interface 1.11.45 998 Wednesday, February 8, 2017 Approved
AWS Command Line Interface 1.11.43 2449 Thursday, January 26, 2017 Approved
AWS Command Line Interface 1.11.42 730 Wednesday, January 25, 2017 Approved
AWS Command Line Interface 1.11.41 3209 Friday, January 20, 2017 Approved
AWS Command Line Interface 1.11.40 533 Friday, January 20, 2017 Approved
AWS Command Line Interface 1.11.39 769 Thursday, January 19, 2017 Approved
AWS Command Line Interface 1.11.38 701 Tuesday, January 17, 2017 Approved
AWS Command Line Interface 1.11.37 540 Tuesday, January 17, 2017 Approved
AWS Command Line Interface 1.11.36 1887 Wednesday, January 4, 2017 Approved
AWS Command Line Interface 1.11.34 1681 Friday, December 23, 2016 Approved
AWS Command Line Interface 1.11.33 958 Thursday, December 22, 2016 Approved
AWS Command Line Interface 1.11.32 658 Wednesday, December 21, 2016 Approved
AWS Command Line Interface 1.11.31 727 Tuesday, December 20, 2016 Approved
AWS Command Line Interface 1.11.30 875 Friday, December 16, 2016 Approved
AWS Command Line Interface 1.11.24 1967 Saturday, December 3, 2016 Approved
AWS Command Line Interface 1.11.22 1501 Wednesday, November 30, 2016 Approved
AWS Command Line Interface 1.10.38 10455 Wednesday, June 15, 2016 Approved
AWS Command Line Interface 1.10.35 498 Friday, June 3, 2016 Approved
AWS Command Line Interface 1.10.33 429 Friday, May 27, 2016 Approved
AWS Command Line Interface 1.10.30 445 Wednesday, May 18, 2016 Approved
AWS Command Line Interface 1.10.27 480 Wednesday, May 11, 2016 Approved
AWS Command Line Interface 1.10.26 450 Friday, May 6, 2016 Approved
AWS Command Line Interface 1.10.25 419 Wednesday, May 4, 2016 Approved
AWS Command Line Interface 1.10.24 475 Friday, April 29, 2016 Approved
AWS Command Line Interface 1.10.23 533 Thursday, April 28, 2016 Approved
AWS Command Line Interface 1.10.22 644 Friday, April 22, 2016 Approved
AWS Command Line Interface 1.10.21 543 Tuesday, April 19, 2016 Approved
AWS Command Line Interface 1.10.20 680 Tuesday, April 12, 2016 Approved
AWS Command Line Interface 1.10.18 568 Monday, April 11, 2016 Approved
AWS Command Line Interface 1.10.16 844 Friday, March 25, 2016 Approved
AWS Command Line Interface 1.10.15 575 Wednesday, March 23, 2016 Approved
AWS Command Line Interface 1.10.14 554 Friday, March 18, 2016 Approved
AWS Command Line Interface 1.10.13 496 Wednesday, March 16, 2016 Approved
AWS Command Line Interface 1.10.12 560 Friday, March 11, 2016 Approved
AWS Command Line Interface 1.10.11 566 Wednesday, March 9, 2016 Approved
AWS Command Line Interface 1.10.10 562 Friday, March 4, 2016 Approved
AWS Command Line Interface 1.10.9 546 Wednesday, March 2, 2016 Approved
AWS Command Line Interface 1.10.8 533 Monday, February 29, 2016 Approved
AWS Command Line Interface 1.10.7 649 Wednesday, February 24, 2016 Approved
awscli 1.0.4 13395 Saturday, February 22, 2014 Approved
awscli 1.0.3 586 Saturday, December 7, 2013 Approved
awscli 1.0.2 515 Saturday, December 7, 2013 Approved
awscli 1.0.1 713 Saturday, December 7, 2013 Approved

This package has no dependencies.

Discussion for the AWS Command Line Interface v2 (Install) Package

Ground Rules:

  • This discussion is only about AWS Command Line Interface v2 (Install) and the AWS Command Line Interface v2 (Install) package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or AWS Command Line Interface v2 (Install), or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus