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:

4,946,997

Downloads of v 2.18.18:

2,133

Last Update:

31 Oct 2024

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)

This is not the latest version of AWS Command Line Interface v2 (Install) available.

  • 1
  • 2
  • 3

2.18.18 | Updated: 31 Oct 2024

Downloads:

4,946,997

Downloads of v 2.18.18:

2,133

Maintainer(s):

Software Author(s):

  • Amazon Web Services

AWS Command Line Interface v2 (Install) 2.18.18

This is not the latest version of AWS Command Line Interface v2 (Install) available.

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'" --version="'2.18.18'" [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'" --version="'2.18.18'" 
$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.18.18'
    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.18.18'
end

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


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

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


package { 'awscli':
  ensure   => '2.18.18',
  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 02 Nov 2024.

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.18.18.msi'
$checksum64 = '2ddf5e6ecaf7c28ce9b421fd52657c9099274bf68d93af9a5f72ae0afe8bfbc5'

$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.22.2 5090 Thursday, November 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.1 3479 Wednesday, November 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.0 4184 Tuesday, November 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.3 8716 Saturday, November 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.2 2946 Friday, November 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.0 2948 Thursday, November 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.20.0 5348 Wednesday, November 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.5 5038 Tuesday, November 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.4 7865 Saturday, November 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.3 2134 Friday, November 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.2 3408 Thursday, November 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.1 9798 Saturday, November 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.0 2494 Friday, November 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.18 2133 Thursday, October 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.17 67 Wednesday, October 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.16 5596 Tuesday, October 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.15 5340 Saturday, October 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.14 10158 Friday, October 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.13 4157 Thursday, October 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.12 2976 Wednesday, October 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.11 4683 Tuesday, October 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.10 8220 Saturday, October 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.9 3403 Friday, October 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.8 4051 Thursday, October 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.7 3719 Wednesday, October 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.6 3361 Tuesday, October 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.4 8859 Friday, October 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.3 3394 Thursday, October 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.2 3709 Wednesday, October 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.1 4554 Tuesday, October 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.0 6899 Saturday, October 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.65 2542 Friday, October 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.64 3686 Thursday, October 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.63 2643 Wednesday, October 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.61 11188 Saturday, September 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.59 5689 Thursday, September 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.58 3677 Wednesday, September 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.57 3886 Tuesday, September 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.56 7822 Saturday, September 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.55 2879 Friday, September 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.54 3600 Thursday, September 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.53 3628 Wednesday, September 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.52 3738 Tuesday, September 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.51 8018 Saturday, September 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.50 3063 Friday, September 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.49 3789 Thursday, September 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.48 4462 Wednesday, September 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.47 6091 Monday, September 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.46 4022 Saturday, September 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.45 203 Friday, September 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.44 3209 Thursday, September 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.43 7339 Wednesday, September 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.42 9219 Saturday, August 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.40 4485 Thursday, August 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.39 3744 Wednesday, August 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.38 3536 Tuesday, August 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.37 7446 Saturday, August 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.36 2896 Friday, August 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.35 3213 Thursday, August 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.34 3775 Wednesday, August 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.33 3379 Tuesday, August 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.32 6770 Saturday, August 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.31 2457 Friday, August 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.30 2766 Thursday, August 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.29 4364 Wednesday, August 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.28 3139 Tuesday, August 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.27 5302 Saturday, August 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.26 3062 Friday, August 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.25 3109 Thursday, August 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.24 2555 Wednesday, August 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.23 3976 Tuesday, August 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.22 6010 Saturday, August 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.21 2801 Friday, August 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.20 5478 Wednesday, July 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.19 2385 Tuesday, July 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.18 7201 Friday, July 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.16 5414 Wednesday, July 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.15 3250 Tuesday, July 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.14 8657 Friday, July 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.13 12325 Saturday, July 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.12 4044 Thursday, July 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.11 3645 Wednesday, July 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.10 3813 Tuesday, July 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.9 7874 Saturday, July 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.8 4692 Thursday, July 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.7 4169 Wednesday, July 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.6 3391 Tuesday, July 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.5 7454 Saturday, June 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.4 1884 Friday, June 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.3 74 Thursday, June 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.2 6232 Wednesday, June 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.1 4520 Tuesday, June 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.0 9364 Friday, June 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.12 4126 Thursday, June 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.11 2695 Wednesday, June 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.10 4738 Tuesday, June 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.9 8019 Friday, June 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.8 1906 Friday, June 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.7 4368 Thursday, June 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.6 3885 Wednesday, June 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.5 4470 Tuesday, June 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.4 7364 Saturday, June 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.3 1674 Friday, June 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.2 4844 Thursday, June 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.1 3513 Wednesday, June 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.0 3220 Tuesday, June 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.62 6031 Saturday, June 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.61 3018 Friday, May 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.60 5234 Thursday, May 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.59 3898 Wednesday, May 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.58 10917 Saturday, May 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.57 3486 Friday, May 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.56 3111 Thursday, May 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.55 4394 Wednesday, May 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.54 2762 Tuesday, May 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.53 6189 Saturday, May 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.52 2521 Friday, May 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.51 3563 Thursday, May 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.50 2989 Wednesday, May 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.49 3015 Tuesday, May 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.48 7404 Saturday, May 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.47 3730 Thursday, May 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.46 1009 Thursday, May 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.45 6655 Tuesday, May 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.44 15135 Saturday, May 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.43 4576 Thursday, May 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.42 10597 Saturday, April 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.41 5070 Thursday, April 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.40 10103 Saturday, April 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.39 4462 Thursday, April 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.38 10726 Saturday, April 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.37 4287 Thursday, April 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.36 10055 Saturday, April 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.35 4487 Thursday, April 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.34 12119 Saturday, March 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.33 5024 Thursday, March 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.32 11286 Saturday, March 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.31 6471 Thursday, March 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.30 12771 Saturday, March 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.28 10920 Tuesday, March 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.27 7018 Saturday, March 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.26 6783 Thursday, March 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.25 21966 Saturday, March 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.24 8426 Thursday, February 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.23 15541 Saturday, February 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.22 8347 Thursday, February 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.21 12844 Saturday, February 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.20 7106 Thursday, February 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.19 16609 Saturday, February 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.17 20709 Saturday, February 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.16 6672 Thursday, February 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.15 14899 Saturday, January 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.14 7090 Thursday, January 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.13 8721 Tuesday, January 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.12 8906 Saturday, January 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.11 8026 Thursday, January 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.10 13560 Saturday, January 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.9 7087 Thursday, January 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.8 12440 Saturday, January 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.7 6334 Thursday, January 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.6 10120 Saturday, December 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.5 5011 Thursday, December 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.4 8666 Saturday, December 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.3 6464 Thursday, December 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.2 11612 Saturday, December 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.1 5120 Thursday, December 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.0 15979 Saturday, December 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.6 8694 Thursday, December 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.5 15045 Friday, December 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.2 6377 Wednesday, November 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.0 7080 Tuesday, November 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.38 14239 Wednesday, November 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.37 14503 Saturday, November 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.36 5229 Thursday, November 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.35 8356 Tuesday, November 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.34 9123 Saturday, November 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.32 15382 Saturday, November 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.31 6358 Thursday, November 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.30 13054 Saturday, October 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.29 6247 Thursday, October 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.28 13409 Saturday, October 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.27 8027 Thursday, October 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.26 13428 Saturday, October 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.25 15829 Saturday, October 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.24 6397 Thursday, October 5, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.23 7948 Tuesday, October 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.21 141 Saturday, September 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.20 24687 Thursday, September 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.19 12565 Saturday, September 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.18 7089 Thursday, September 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.16 17737 Thursday, September 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.15 12138 Saturday, September 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.14 8484 Thursday, August 31, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.13 13347 Saturday, August 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.12 7021 Thursday, August 24, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.11 1641 Saturday, August 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.9 27501 Saturday, August 12, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.8 7258 Thursday, August 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.7 12962 Saturday, August 5, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.6 7592 Thursday, August 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.5 82 Saturday, July 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.4 15799 Thursday, July 27, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.3 14455 Saturday, July 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.2 14367 Thursday, July 20, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.1 23111 Friday, July 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.0 27881 Saturday, July 8, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.7 11020 Thursday, July 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.6 17568 Saturday, July 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.5 7350 Friday, June 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.4 8118 Thursday, June 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.3 17492 Saturday, June 24, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.2 10881 Thursday, June 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.1 18157 Saturday, June 17, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.0 11908 Thursday, June 15, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.27 13195 Saturday, June 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.26 6981 Thursday, June 8, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.25 12520 Saturday, June 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.24 7225 Thursday, June 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.23 12696 Saturday, May 27, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.22 7824 Thursday, May 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.21 13223 Saturday, May 20, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.20 25200 Saturday, May 13, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.19 9789 Thursday, May 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.17 17165 Thursday, May 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.16 16317 Saturday, April 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.13 24501 Saturday, April 15, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.11 21920 Monday, April 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.10 9175 Thursday, April 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.9 8727 Tuesday, April 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.8 9251 Saturday, April 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.6 17715 Saturday, March 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.5 6842 Thursday, March 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.4 17412 Saturday, March 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.2 17675 Saturday, March 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.1 7551 Thursday, March 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.0 14304 Friday, March 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.4 5940 Thursday, March 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.3 11619 Saturday, February 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.2 8213 Thursday, February 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.1 12528 Saturday, February 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.23 17730 Saturday, February 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.22 7346 Thursday, February 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.21 11287 Monday, February 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.20 11445 Thursday, February 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.19 11417 Monday, January 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.18 11737 Thursday, January 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.17 13387 Saturday, January 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.16 8651 Thursday, January 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.15 12827 Saturday, January 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.14 7507 Thursday, January 12, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.13 15784 Friday, January 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.12 14439 Saturday, December 31, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.11 7000 Thursday, December 29, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.10 11199 Friday, December 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.9 7490 Thursday, December 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.8 12850 Saturday, December 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.7 8501 Thursday, December 15, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.6 13929 Saturday, December 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.5 7422 Thursday, December 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.4 12286 Saturday, December 3, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.3 6362 Thursday, December 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.2 5436 Wednesday, November 30, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.1 13492 Thursday, November 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.0 16027 Saturday, November 19, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.13 6790 Thursday, November 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.12 9599 Saturday, November 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.11 11559 Thursday, November 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.9 13252 Saturday, November 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.8 7486 Thursday, November 3, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.7 15722 Friday, October 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.6 7391 Thursday, October 27, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.5 10780 Saturday, October 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.3 17763 Friday, October 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.2 15581 Saturday, October 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.1 6590 Thursday, October 6, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.0 10801 Saturday, October 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.35 13646 Saturday, September 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.34 6719 Thursday, September 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.33 11597 Saturday, September 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.32 6916 Thursday, September 15, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.31 14067 Saturday, September 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.30 7644 Thursday, September 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.29 13877 Monday, September 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.28 19856 Thursday, September 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.26 23192 Thursday, August 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.25 16558 Saturday, August 20, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.24 11597 Wednesday, August 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.22 15281 Friday, August 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.21 32575 Thursday, August 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.20 16098 Saturday, July 30, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.19 7923 Thursday, July 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.18 14067 Saturday, July 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.17 8192 Thursday, July 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.16 13985 Saturday, July 16, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.15 7257 Thursday, July 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.14 13307 Saturday, July 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.13 6231 Thursday, July 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.11 27758 Saturday, June 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.9 18280 Saturday, June 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.8 4856 Friday, June 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.7 21292 Thursday, June 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.6 11584 Saturday, June 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.5 6946 Thursday, June 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.4 11540 Friday, May 27, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.3 6116 Thursday, May 26, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.2 12294 Saturday, May 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.1 7916 Wednesday, May 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.0 11210 Saturday, May 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.4 6819 Wednesday, May 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.3 8211 Sunday, May 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.2 6866 Thursday, May 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.1 9351 Friday, April 29, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.0 5262 Thursday, April 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.8 10722 Friday, April 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.7 3700 Thursday, April 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.6 10531 Saturday, April 16, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.4 11240 Saturday, April 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.3 5810 Thursday, April 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.2 8578 Saturday, April 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.1 5833 Thursday, March 31, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.0 6694 Monday, March 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.29 8220 Saturday, March 26, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.28 5487 Thursday, March 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.27 10412 Friday, March 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.25 12173 Friday, March 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.24 5925 Wednesday, March 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.23 8744 Friday, March 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.22 6030 Wednesday, March 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.21 22687 Friday, February 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.20 6043 Wednesday, February 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.19 8082 Friday, February 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.18 10519 Friday, February 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.17 6749 Wednesday, February 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.16 8280 Friday, February 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.15 10528 Friday, January 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.13 10795 Friday, January 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.12 14755 Wednesday, January 19, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.11 6736 Friday, January 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.10 4136 Wednesday, January 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.9 6793 Friday, January 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.7 13172 Wednesday, December 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.6 16808 Friday, December 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.5 8473 Saturday, December 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.4 2612 Friday, December 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.3 4956 Tuesday, November 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.2 6562 Saturday, November 27, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.1 6045 Wednesday, November 24, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.0 6780 Friday, November 19, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.7 5183 Wednesday, November 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.6 7360 Friday, November 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.5 5091 Wednesday, November 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.4 6890 Friday, November 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.0 16184 Friday, October 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.47 4828 Wednesday, October 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.46 6639 Friday, October 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.45 5702 Tuesday, October 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.43 12438 Friday, October 1, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.42 5056 Wednesday, September 29, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.41 6522 Friday, September 24, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.40 3950 Wednesday, September 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.39 6043 Friday, September 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.38 4390 Wednesday, September 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.37 7458 Friday, September 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.36 4130 Wednesday, September 8, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.35 5739 Friday, September 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.33 7944 Friday, August 27, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.32 3605 Wednesday, August 25, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.31 6382 Friday, August 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.30 4145 Wednesday, August 18, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.29 5764 Friday, August 13, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.28 3827 Wednesday, August 11, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.27 6372 Friday, August 6, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.26 3302 Wednesday, August 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.25 7439 Saturday, July 31, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.24 2007 Friday, July 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.23 2360 Wednesday, July 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.22 6900 Friday, July 23, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.21 4492 Wednesday, July 21, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.20 5156 Friday, July 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.19 3330 Thursday, July 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.18 7037 Friday, July 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.17 3857 Wednesday, July 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.16 7002 Friday, July 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.15 5950 Wednesday, June 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.14 5437 Friday, June 25, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.13 7774 Thursday, June 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.12 6061 Wednesday, June 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.11 5557 Friday, June 11, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.10 4706 Wednesday, June 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.9 5952 Friday, June 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.8 3360 Wednesday, June 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.7 6428 Friday, May 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.6 4352 Wednesday, May 26, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.5 13293 Saturday, May 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.4 5550 Wednesday, May 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.3 5741 Friday, May 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.2 3928 Wednesday, May 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.1 5008 Friday, April 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.0 3115 Wednesday, April 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.39 107 Thursday, April 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.38 12345 Friday, April 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.37 4051 Wednesday, April 14, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.36 5631 Friday, April 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.35 406 Wednesday, April 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.34 9231 Friday, April 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.33 3518 Wednesday, March 31, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.32 543 Tuesday, March 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.29 53158 Tuesday, March 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.28 18503 Tuesday, February 23, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.27 33534 Wednesday, February 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.26 5908 Friday, February 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.25 3068 Wednesday, February 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.24 6733 Friday, February 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.23 3519 Wednesday, February 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.22 9918 Friday, January 29, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.21 7667 Friday, January 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.20 4324 Wednesday, January 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.19 5605 Friday, January 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.18 2770 Wednesday, January 13, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.17 4965 Friday, January 8, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.16 1889 Wednesday, January 6, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.15 5616 Wednesday, December 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.14 4065 Wednesday, December 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.13 4527 Friday, December 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.12 1907 Thursday, December 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.11 1684 Wednesday, December 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.10 5278 Friday, December 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.9 1674 Thursday, December 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.8 3083 Wednesday, December 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.7 4675 Friday, December 4, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.6 2450 Wednesday, December 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.4 6775 Wednesday, November 25, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.3 4673 Friday, November 20, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.2 2162 Wednesday, November 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.1 4446 Friday, November 13, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.0 4036 Wednesday, November 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.63 4719 Tuesday, November 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.62 2840 Friday, November 6, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.61 7120 Friday, October 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.60 4057 Wednesday, October 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.59 7198 Friday, October 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.58 3255 Wednesday, October 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.57 3714 Friday, October 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.56 9027 Friday, October 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.55 5555 Wednesday, October 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.54 4966 Friday, October 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.53 5895 Wednesday, September 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.52 4354 Friday, September 25, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.51 2389 Thursday, September 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.50 6558 Friday, September 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.49 2950 Wednesday, September 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.48 5236 Friday, September 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.47 3320 Wednesday, September 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.46 3862 Friday, September 4, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.45 2709 Wednesday, September 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.44 3209 Friday, August 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.43 4796 Wednesday, August 26, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.42 5729 Friday, August 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.41 3155 Wednesday, August 19, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.40 3634 Friday, August 14, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.39 3786 Wednesday, August 12, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.38 4232 Friday, August 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.37 3086 Wednesday, August 5, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.36 4035 Friday, July 31, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.35 3001 Wednesday, July 29, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.34 4511 Friday, July 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.33 3358 Wednesday, July 22, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.31 5576 Thursday, July 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.30 7960 Friday, July 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.29 2772 Wednesday, July 8, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.28 3966 Friday, July 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.27 2819 Wednesday, July 1, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.26 4415 Friday, June 26, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.25 2910 Wednesday, June 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.24 4404 Friday, June 19, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.23 2742 Wednesday, June 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.22 5535 Friday, June 12, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.21 1224 Thursday, June 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.20 1867 Wednesday, June 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.19 3629 Friday, June 5, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.18 2137 Wednesday, June 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.17 4594 Wednesday, May 27, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.15 3499 Thursday, May 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.14 5640 Friday, May 15, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.13 2530 Wednesday, May 13, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.12 4015 Friday, May 8, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.11 3254 Wednesday, May 6, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.10 6416 Tuesday, April 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.9 3399 Thursday, April 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.8 4761 Friday, April 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.7 6224 Tuesday, April 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.6 5833 Tuesday, March 31, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.5 5110 Tuesday, March 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.4 5424 Wednesday, March 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.3 5695 Tuesday, March 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.2 4303 Tuesday, March 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.1 5760 Wednesday, February 26, 2020 Approved
AWS Command Line Interface (Install) 1.36.8 5 Friday, November 22, 2024 Approved
AWS Command Line Interface (Install) 1.34.30 19 Tuesday, October 1, 2024 Approved
AWS Command Line Interface (Install) 1.33.37 22 Tuesday, August 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.102 45 Friday, May 10, 2024 Approved
AWS Command Line Interface (Install) 1.32.100 29 Wednesday, May 8, 2024 Approved
AWS Command Line Interface (Install) 1.32.97 24 Friday, May 3, 2024 Approved
AWS Command Line Interface (Install) 1.32.95 37 Wednesday, May 1, 2024 Approved
AWS Command Line Interface (Install) 1.32.94 32 Tuesday, April 30, 2024 Approved
AWS Command Line Interface (Install) 1.32.92 35 Friday, April 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.89 34 Tuesday, April 23, 2024 Approved
AWS Command Line Interface (Install) 1.32.87 30 Friday, April 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.86 29 Wednesday, April 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.85 34 Wednesday, April 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.83 25 Friday, April 12, 2024 Approved
AWS Command Line Interface (Install) 1.32.81 28 Wednesday, April 10, 2024 Approved
AWS Command Line Interface (Install) 1.32.80 32 Tuesday, April 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.76 28 Wednesday, April 3, 2024 Approved
AWS Command Line Interface (Install) 1.32.75 27 Tuesday, April 2, 2024 Approved
AWS Command Line Interface (Install) 1.32.73 30 Friday, March 29, 2024 Approved
AWS Command Line Interface (Install) 1.32.71 36 Wednesday, March 27, 2024 Approved
AWS Command Line Interface (Install) 1.32.70 38 Tuesday, March 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.66 34 Wednesday, March 20, 2024 Approved
AWS Command Line Interface (Install) 1.32.65 40 Tuesday, March 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.61 43 Wednesday, March 13, 2024 Approved
AWS Command Line Interface (Install) 1.32.58 31 Friday, March 8, 2024 Approved
AWS Command Line Interface (Install) 1.32.56 31 Wednesday, March 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.53 28 Friday, March 1, 2024 Approved
AWS Command Line Interface (Install) 1.32.51 29 Wednesday, February 28, 2024 Approved
AWS Command Line Interface (Install) 1.32.50 26 Tuesday, February 27, 2024 Approved
AWS Command Line Interface (Install) 1.32.48 32 Friday, February 23, 2024 Approved
AWS Command Line Interface (Install) 1.32.45 35 Tuesday, February 20, 2024 Approved
AWS Command Line Interface (Install) 1.32.43 28 Friday, February 16, 2024 Approved
AWS Command Line Interface (Install) 1.32.40 30 Tuesday, February 13, 2024 Approved
AWS Command Line Interface (Install) 1.32.38 41 Friday, February 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.36 43 Wednesday, February 7, 2024 Approved
AWS Command Line Interface (Install) 1.32.35 32 Tuesday, February 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.33 32 Friday, February 2, 2024 Approved
AWS Command Line Interface (Install) 1.32.31 29 Wednesday, January 31, 2024 Approved
AWS Command Line Interface (Install) 1.32.30 42 Tuesday, January 30, 2024 Approved
AWS Command Line Interface (Install) 1.32.28 38 Friday, January 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.22 30 Friday, January 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.20 32 Wednesday, January 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.19 42 Monday, January 15, 2024 Approved
AWS Command Line Interface (Install) 1.32.17 29 Friday, January 12, 2024 Approved
AWS Command Line Interface (Install) 1.32.15 39 Tuesday, January 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.13 40 Friday, January 5, 2024 Approved
AWS Command Line Interface (Install) 1.32.6 39 Friday, December 22, 2023 Approved
AWS Command Line Interface (Install) 1.32.4 41 Wednesday, December 20, 2023 Approved
AWS Command Line Interface (Install) 1.32.3 44 Tuesday, December 19, 2023 Approved
AWS Command Line Interface (Install) 1.32.1 40 Friday, December 15, 2023 Approved
AWS Command Line Interface (Install) 1.31.13 36 Wednesday, December 13, 2023 Approved
AWS Command Line Interface (Install) 1.31.12 39 Monday, December 11, 2023 Approved
AWS Command Line Interface (Install) 1.31.10 36 Friday, December 8, 2023 Approved
AWS Command Line Interface (Install) 1.31.7 33 Tuesday, December 5, 2023 Approved
AWS Command Line Interface (Install) 1.31.6 47 Saturday, December 2, 2023 Approved
AWS Command Line Interface (Install) 1.30.4 46 Tuesday, November 21, 2023 Approved
AWS Command Line Interface (Install) 1.30.2 41 Friday, November 17, 2023 Approved
AWS Command Line Interface (Install) 1.30.0 44 Wednesday, November 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.83 39 Friday, November 10, 2023 Approved
AWS Command Line Interface (Install) 1.29.82 45 Thursday, November 9, 2023 Approved
AWS Command Line Interface (Install) 1.29.80 49 Wednesday, November 8, 2023 Approved
AWS Command Line Interface (Install) 1.29.79 46 Tuesday, November 7, 2023 Approved
AWS Command Line Interface (Install) 1.29.77 46 Thursday, November 2, 2023 Approved
AWS Command Line Interface (Install) 1.29.75 38 Wednesday, November 1, 2023 Approved
AWS Command Line Interface (Install) 1.29.72 38 Friday, October 27, 2023 Approved
AWS Command Line Interface (Install) 1.29.70 42 Wednesday, October 25, 2023 Approved
AWS Command Line Interface (Install) 1.29.69 43 Tuesday, October 24, 2023 Approved
AWS Command Line Interface (Install) 1.29.67 54 Friday, October 20, 2023 Approved
AWS Command Line Interface (Install) 1.29.65 48 Wednesday, October 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.64 49 Tuesday, October 17, 2023 Approved
AWS Command Line Interface (Install) 1.29.63 51 Friday, October 13, 2023 Approved
AWS Command Line Interface (Install) 1.29.61 34 Friday, October 6, 2023 Approved
AWS Command Line Interface (Install) 1.29.59 45 Wednesday, October 4, 2023 Approved
AWS Command Line Interface (Install) 1.29.57 40 Saturday, September 30, 2023 Approved
AWS Command Line Interface (Install) 1.29.55 38 Wednesday, September 27, 2023 Approved
AWS Command Line Interface (Install) 1.29.54 35 Tuesday, September 26, 2023 Approved
AWS Command Line Interface (Install) 1.29.51 51 Wednesday, September 20, 2023 Approved
AWS Command Line Interface (Install) 1.29.50 46 Tuesday, September 19, 2023 Approved
AWS Command Line Interface (Install) 1.29.48 47 Friday, September 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.45 45 Tuesday, September 12, 2023 Approved
AWS Command Line Interface (Install) 1.29.43 52 Friday, September 8, 2023 Approved
AWS Command Line Interface (Install) 1.29.41 43 Wednesday, September 6, 2023 Approved
AWS Command Line Interface (Install) 1.29.36 263 Tuesday, August 29, 2023 Approved
AWS Command Line Interface (Install) 1.29.34 39 Friday, August 25, 2023 Approved
AWS Command Line Interface (Install) 1.29.32 44 Wednesday, August 23, 2023 Approved
AWS Command Line Interface (Install) 1.29.31 48 Tuesday, August 22, 2023 Approved
AWS Command Line Interface (Install) 1.29.29 53 Friday, August 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.26 52 Tuesday, August 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.24 51 Friday, August 11, 2023 Approved
AWS Command Line Interface (Install) 1.29.22 64 Wednesday, August 9, 2023 Approved
AWS Command Line Interface (Install) 1.29.16 57 Tuesday, August 1, 2023 Approved
AWS Command Line Interface (Install) 1.29.14 49 Friday, July 28, 2023 Approved
AWS Command Line Interface (Install) 1.29.11 49 Wednesday, July 26, 2023 Approved
AWS Command Line Interface (Install) 1.29.5 38 Wednesday, July 19, 2023 Approved
AWS Command Line Interface (Install) 1.29.4 38 Tuesday, July 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.2 101 Wednesday, July 12, 2023 Approved
AWS Command Line Interface (Install) 1.29.0 171 Friday, July 7, 2023 Approved
AWS Command Line Interface (Install) 1.28.0 45 Tuesday, July 4, 2023 Approved
AWS Command Line Interface (Install) 1.27.162 41 Wednesday, June 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.161 52 Tuesday, June 27, 2023 Approved
AWS Command Line Interface (Install) 1.27.159 49 Friday, June 23, 2023 Approved
AWS Command Line Interface (Install) 1.27.157 47 Wednesday, June 21, 2023 Approved
AWS Command Line Interface (Install) 1.27.156 46 Tuesday, June 20, 2023 Approved
AWS Command Line Interface (Install) 1.27.153 48 Wednesday, June 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.152 40 Tuesday, June 13, 2023 Approved
AWS Command Line Interface (Install) 1.27.150 44 Friday, June 9, 2023 Approved
AWS Command Line Interface (Install) 1.27.148 42 Wednesday, June 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.145 44 Friday, June 2, 2023 Approved
AWS Command Line Interface (Install) 1.27.143 43 Wednesday, May 31, 2023 Approved
AWS Command Line Interface (Install) 1.27.141 49 Friday, May 26, 2023 Approved
AWS Command Line Interface (Install) 1.27.139 39 Wednesday, May 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.138 41 Tuesday, May 23, 2023 Approved
AWS Command Line Interface (Install) 1.27.135 50 Thursday, May 18, 2023 Approved
AWS Command Line Interface (Install) 1.27.134 53 Tuesday, May 16, 2023 Approved
AWS Command Line Interface (Install) 1.27.133 46 Friday, May 12, 2023 Approved
AWS Command Line Interface (Install) 1.27.131 49 Wednesday, May 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.130 58 Tuesday, May 9, 2023 Approved
AWS Command Line Interface (Install) 1.27.127 38 Friday, May 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.125 40 Wednesday, May 3, 2023 Approved
AWS Command Line Interface (Install) 1.27.124 37 Tuesday, May 2, 2023 Approved
AWS Command Line Interface (Install) 1.27.122 39 Friday, April 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.120 53 Wednesday, April 26, 2023 Approved
AWS Command Line Interface (Install) 1.27.119 49 Tuesday, April 25, 2023 Approved
AWS Command Line Interface (Install) 1.27.113 50 Friday, April 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.110 47 Tuesday, April 11, 2023 Approved
AWS Command Line Interface (Install) 1.27.106 47 Wednesday, April 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.101 47 Wednesday, March 29, 2023 Approved
AWS Command Line Interface (Install) 1.27.100 49 Tuesday, March 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.98 47 Friday, March 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.93 50 Friday, March 17, 2023 Approved
AWS Command Line Interface (Install) 1.27.90 46 Tuesday, March 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.88 65 Friday, March 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.86 35 Wednesday, March 8, 2023 Approved
AWS Command Line Interface (Install) 1.27.85 52 Tuesday, March 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.81 49 Wednesday, March 1, 2023 Approved
AWS Command Line Interface (Install) 1.27.80 44 Tuesday, February 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.78 51 Friday, February 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.75 51 Tuesday, February 21, 2023 Approved
AWS Command Line Interface (Install) 1.27.73 54 Friday, February 17, 2023 Approved
AWS Command Line Interface (Install) 1.27.71 56 Wednesday, February 15, 2023 Approved
AWS Command Line Interface (Install) 1.27.70 50 Tuesday, February 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.68 50 Friday, February 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.66 46 Wednesday, February 8, 2023 Approved
AWS Command Line Interface (Install) 1.27.65 52 Tuesday, February 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.63 48 Friday, February 3, 2023 Approved
AWS Command Line Interface (Install) 1.27.61 52 Wednesday, February 1, 2023 Approved
AWS Command Line Interface (Install) 1.27.60 45 Tuesday, January 31, 2023 Approved
AWS Command Line Interface (Install) 1.27.58 44 Friday, January 27, 2023 Approved
AWS Command Line Interface (Install) 1.27.56 53 Wednesday, January 25, 2023 Approved
AWS Command Line Interface (Install) 1.27.53 55 Friday, January 20, 2023 Approved
AWS Command Line Interface (Install) 1.27.51 48 Wednesday, January 18, 2023 Approved
AWS Command Line Interface (Install) 1.27.49 56 Friday, January 13, 2023 Approved
AWS Command Line Interface (Install) 1.27.47 54 Wednesday, January 11, 2023 Approved
AWS Command Line Interface (Install) 1.27.46 49 Tuesday, January 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.43 48 Thursday, January 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.40 46 Friday, December 30, 2022 Approved
AWS Command Line Interface (Install) 1.27.38 54 Wednesday, December 28, 2022 Approved
AWS Command Line Interface (Install) 1.27.36 46 Friday, December 23, 2022 Approved
AWS Command Line Interface (Install) 1.27.33 51 Tuesday, December 20, 2022 Approved
AWS Command Line Interface (Install) 1.27.31 44 Friday, December 16, 2022 Approved
AWS Command Line Interface (Install) 1.27.29 52 Wednesday, December 14, 2022 Approved
AWS Command Line Interface (Install) 1.27.26 47 Friday, December 9, 2022 Approved
AWS Command Line Interface (Install) 1.27.24 50 Wednesday, December 7, 2022 Approved
AWS Command Line Interface (Install) 1.27.23 58 Tuesday, December 6, 2022 Approved
AWS Command Line Interface (Install) 1.27.15 71 Wednesday, November 23, 2022 Approved
AWS Command Line Interface (Install) 1.27.14 57 Tuesday, November 22, 2022 Approved
AWS Command Line Interface (Install) 1.27.12 43 Friday, November 18, 2022 Approved
AWS Command Line Interface (Install) 1.27.10 53 Wednesday, November 16, 2022 Approved
AWS Command Line Interface (Install) 1.27.9 51 Tuesday, November 15, 2022 Approved
AWS Command Line Interface (Install) 1.27.7 54 Friday, November 11, 2022 Approved
AWS Command Line Interface (Install) 1.27.4 54 Tuesday, November 8, 2022 Approved
AWS Command Line Interface (Install) 1.27.3 57 Saturday, November 5, 2022 Approved
AWS Command Line Interface (Install) 1.27.2 54 Friday, November 4, 2022 Approved
AWS Command Line Interface (Install) 1.27.0 65 Wednesday, November 2, 2022 Approved
AWS Command Line Interface (Install) 1.26.5 59 Tuesday, November 1, 2022 Approved
AWS Command Line Interface (Install) 1.26.3 50 Friday, October 28, 2022 Approved
AWS Command Line Interface (Install) 1.26.1 43 Wednesday, October 26, 2022 Approved
AWS Command Line Interface (Install) 1.26.0 69 Tuesday, October 25, 2022 Approved
AWS Command Line Interface (Install) 1.25.96 52 Friday, October 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.94 63 Wednesday, October 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.93 61 Tuesday, October 18, 2022 Approved
AWS Command Line Interface (Install) 1.25.92 53 Saturday, October 15, 2022 Approved
AWS Command Line Interface (Install) 1.25.89 65 Friday, October 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.87 45 Wednesday, October 5, 2022 Approved
AWS Command Line Interface (Install) 1.25.83 47 Wednesday, September 28, 2022 Approved
AWS Command Line Interface (Install) 1.25.82 48 Tuesday, September 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.78 59 Wednesday, September 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.77 59 Monday, September 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.75 62 Friday, September 16, 2022 Approved
AWS Command Line Interface (Install) 1.25.73 65 Wednesday, September 14, 2022 Approved
AWS Command Line Interface (Install) 1.25.68 60 Wednesday, September 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.66 64 Friday, September 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.64 71 Wednesday, August 31, 2022 Approved
AWS Command Line Interface (Install) 1.25.63 60 Tuesday, August 30, 2022 Approved
AWS Command Line Interface (Install) 1.25.62 51 Saturday, August 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.59 62 Wednesday, August 24, 2022 Approved
AWS Command Line Interface (Install) 1.25.58 68 Tuesday, August 23, 2022 Approved
AWS Command Line Interface (Install) 1.25.56 58 Friday, August 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.55 64 Thursday, August 18, 2022 Approved
AWS Command Line Interface (Install) 1.25.51 66 Saturday, August 13, 2022 Approved
AWS Command Line Interface (Install) 1.25.49 60 Thursday, August 11, 2022 Approved
AWS Command Line Interface (Install) 1.25.48 61 Wednesday, August 10, 2022 Approved
AWS Command Line Interface (Install) 1.25.46 61 Friday, August 5, 2022 Approved
AWS Command Line Interface (Install) 1.25.43 60 Tuesday, August 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.42 67 Monday, August 1, 2022 Approved
AWS Command Line Interface (Install) 1.25.40 67 Friday, July 29, 2022 Approved
AWS Command Line Interface (Install) 1.25.38 56 Wednesday, July 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.37 53 Tuesday, July 26, 2022 Approved
AWS Command Line Interface (Install) 1.25.35 50 Friday, July 22, 2022 Approved
AWS Command Line Interface (Install) 1.25.32 56 Tuesday, July 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.28 63 Wednesday, July 13, 2022 Approved
AWS Command Line Interface (Install) 1.25.25 54 Friday, July 8, 2022 Approved
AWS Command Line Interface (Install) 1.25.23 65 Wednesday, July 6, 2022 Approved
AWS Command Line Interface (Install) 1.25.22 67 Saturday, July 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.21 63 Friday, July 1, 2022 Approved
AWS Command Line Interface (Install) 1.25.19 59 Wednesday, June 29, 2022 Approved
AWS Command Line Interface (Install) 1.25.18 63 Tuesday, June 28, 2022 Approved
AWS Command Line Interface (Install) 1.25.16 64 Friday, June 24, 2022 Approved
AWS Command Line Interface (Install) 1.25.14 56 Wednesday, June 22, 2022 Approved
AWS Command Line Interface (Install) 1.25.13 68 Tuesday, June 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.10 73 Thursday, June 16, 2022 Approved
AWS Command Line Interface (Install) 1.25.9 50 Wednesday, June 15, 2022 Approved
AWS Command Line Interface (Install) 1.25.8 85 Tuesday, June 14, 2022 Approved
AWS Command Line Interface (Install) 1.25.7 64 Saturday, June 11, 2022 Approved
AWS Command Line Interface (Install) 1.25.6 60 Friday, June 10, 2022 Approved
AWS Command Line Interface (Install) 1.25.4 56 Wednesday, June 8, 2022 Approved
AWS Command Line Interface (Install) 1.25.3 65 Tuesday, June 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.2 64 Friday, June 3, 2022 Approved
AWS Command Line Interface (Install) 1.25.0 77 Wednesday, June 1, 2022 Approved
AWS Command Line Interface (Install) 1.24.9 67 Friday, May 27, 2022 Approved
AWS Command Line Interface (Install) 1.24.7 82 Wednesday, May 25, 2022 Approved
AWS Command Line Interface (Install) 1.24.6 69 Tuesday, May 24, 2022 Approved
AWS Command Line Interface (Install) 1.24.4 77 Friday, May 20, 2022 Approved
AWS Command Line Interface (Install) 1.24.2 72 Wednesday, May 18, 2022 Approved
AWS Command Line Interface (Install) 1.24.1 73 Tuesday, May 17, 2022 Approved
AWS Command Line Interface (Install) 1.23.13 76 Friday, May 13, 2022 Approved
AWS Command Line Interface (Install) 1.23.11 77 Wednesday, May 11, 2022 Approved
AWS Command Line Interface (Install) 1.23.6 101 Wednesday, May 4, 2022 Approved
AWS Command Line Interface (Install) 1.23.5 67 Tuesday, May 3, 2022 Approved
AWS Command Line Interface (Install) 1.23.3 57 Thursday, April 28, 2022 Approved
AWS Command Line Interface (Install) 1.23.1 65 Wednesday, April 27, 2022 Approved
AWS Command Line Interface (Install) 1.23.0 84 Tuesday, April 26, 2022 Approved
AWS Command Line Interface (Install) 1.22.101 73 Saturday, April 23, 2022 Approved
AWS Command Line Interface (Install) 1.22.98 60 Wednesday, April 20, 2022 Approved
AWS Command Line Interface (Install) 1.22.96 72 Friday, April 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.94 75 Wednesday, April 13, 2022 Approved
AWS Command Line Interface (Install) 1.22.93 69 Tuesday, April 12, 2022 Approved
AWS Command Line Interface (Install) 1.22.89 83 Wednesday, April 6, 2022 Approved
AWS Command Line Interface (Install) 1.22.88 70 Tuesday, April 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.86 71 Friday, April 1, 2022 Approved
AWS Command Line Interface (Install) 1.22.84 67 Wednesday, March 30, 2022 Approved
AWS Command Line Interface (Install) 1.22.81 74 Friday, March 25, 2022 Approved
AWS Command Line Interface (Install) 1.22.79 65 Wednesday, March 23, 2022 Approved
AWS Command Line Interface (Install) 1.22.78 71 Tuesday, March 22, 2022 Approved
AWS Command Line Interface (Install) 1.22.77 170 Saturday, March 19, 2022 Approved
AWS Command Line Interface (Install) 1.22.74 68 Tuesday, March 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.71 78 Thursday, March 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.69 75 Tuesday, March 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.68 69 Saturday, March 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.66 70 Thursday, March 3, 2022 Approved
AWS Command Line Interface (Install) 1.22.64 68 Tuesday, March 1, 2022 Approved
AWS Command Line Interface (Install) 1.22.63 69 Saturday, February 26, 2022 Approved
AWS Command Line Interface (Install) 1.22.61 71 Thursday, February 24, 2022 Approved
AWS Command Line Interface (Install) 1.22.59 75 Tuesday, February 22, 2022 Approved
AWS Command Line Interface (Install) 1.22.58 78 Saturday, February 19, 2022 Approved
AWS Command Line Interface (Install) 1.22.56 68 Thursday, February 17, 2022 Approved
AWS Command Line Interface (Install) 1.22.55 69 Tuesday, February 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.54 110 Saturday, February 12, 2022 Approved
AWS Command Line Interface (Install) 1.22.52 82 Thursday, February 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.50 65 Tuesday, February 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.49 64 Saturday, February 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.47 75 Thursday, February 3, 2022 Approved
AWS Command Line Interface (Install) 1.22.46 85 Saturday, January 29, 2022 Approved
AWS Command Line Interface (Install) 1.22.44 88 Thursday, January 27, 2022 Approved
AWS Command Line Interface (Install) 1.22.42 84 Monday, January 24, 2022 Approved
AWS Command Line Interface (Install) 1.22.39 87 Thursday, January 20, 2022 Approved
AWS Command Line Interface (Install) 1.22.37 91 Saturday, January 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.34 77 Thursday, January 13, 2022 Approved
AWS Command Line Interface (Install) 1.22.32 74 Monday, January 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.31 83 Saturday, January 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.29 76 Thursday, January 6, 2022 Approved
AWS Command Line Interface (Install) 1.22.25 159 Tuesday, December 21, 2021 Approved
AWS Command Line Interface (Install) 1.22.24 76 Tuesday, December 14, 2021 Approved
AWS Command Line Interface (Install) 1.22.22 79 Thursday, December 9, 2021 Approved
AWS Command Line Interface (Install) 1.22.21 62 Tuesday, December 7, 2021 Approved
AWS Command Line Interface (Install) 1.22.13 99 Thursday, November 25, 2021 Approved
AWS Command Line Interface (Install) 1.22.11 87 Tuesday, November 23, 2021 Approved
AWS Command Line Interface (Install) 1.22.10 68 Saturday, November 20, 2021 Approved
AWS Command Line Interface (Install) 1.22.8 88 Thursday, November 18, 2021 Approved
AWS Command Line Interface (Install) 1.22.6 85 Tuesday, November 16, 2021 Approved
AWS Command Line Interface (Install) 1.22.5 85 Saturday, November 13, 2021 Approved
AWS Command Line Interface (Install) 1.22.3 109 Thursday, November 11, 2021 Approved
AWS Command Line Interface (Install) 1.22.1 82 Tuesday, November 9, 2021 Approved
AWS Command Line Interface (Install) 1.21.12 144 Saturday, November 6, 2021 Approved
AWS Command Line Interface (Install) 1.21.0 85 Thursday, October 21, 2021 Approved
AWS Command Line Interface (Install) 1.20.64 79 Tuesday, October 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.63 86 Saturday, October 16, 2021 Approved
AWS Command Line Interface (Install) 1.20.61 89 Thursday, October 14, 2021 Approved
AWS Command Line Interface (Install) 1.20.58 206 Saturday, October 9, 2021 Approved
AWS Command Line Interface (Install) 1.20.57 93 Friday, October 8, 2021 Approved
AWS Command Line Interface (Install) 1.20.56 88 Thursday, October 7, 2021 Approved
AWS Command Line Interface (Install) 1.20.54 84 Tuesday, October 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.53 81 Saturday, October 2, 2021 Approved
AWS Command Line Interface (Install) 1.20.51 84 Thursday, September 30, 2021 Approved
AWS Command Line Interface (Install) 1.20.49 88 Tuesday, September 28, 2021 Approved
AWS Command Line Interface (Install) 1.20.48 88 Saturday, September 25, 2021 Approved
AWS Command Line Interface (Install) 1.20.46 81 Thursday, September 23, 2021 Approved
AWS Command Line Interface (Install) 1.20.44 107 Saturday, September 18, 2021 Approved
AWS Command Line Interface (Install) 1.20.40 119 Saturday, September 11, 2021 Approved
AWS Command Line Interface (Install) 1.20.38 93 Thursday, September 9, 2021 Approved
AWS Command Line Interface (Install) 1.20.36 81 Saturday, September 4, 2021 Approved
AWS Command Line Interface (Install) 1.20.34 101 Thursday, September 2, 2021 Approved
AWS Command Line Interface (Install) 1.20.32 91 Tuesday, August 31, 2021 Approved
AWS Command Line Interface (Install) 1.20.31 83 Saturday, August 28, 2021 Approved
AWS Command Line Interface (Install) 1.20.29 80 Thursday, August 26, 2021 Approved
AWS Command Line Interface (Install) 1.20.27 90 Tuesday, August 24, 2021 Approved
AWS Command Line Interface (Install) 1.20.26 121 Saturday, August 21, 2021 Approved
AWS Command Line Interface (Install) 1.20.24 89 Thursday, August 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.23 110 Tuesday, August 17, 2021 Approved
AWS Command Line Interface (Install) 1.20.22 77 Tuesday, August 17, 2021 Approved
AWS Command Line Interface (Install) 1.20.21 96 Saturday, August 14, 2021 Approved
AWS Command Line Interface (Install) 1.20.19 90 Thursday, August 12, 2021 Approved
AWS Command Line Interface (Install) 1.20.17 92 Tuesday, August 10, 2021 Approved
AWS Command Line Interface (Install) 1.20.16 100 Saturday, August 7, 2021 Approved
AWS Command Line Interface (Install) 1.20.15 107 Thursday, August 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.14 99 Thursday, August 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.12 83 Tuesday, August 3, 2021 Approved
AWS Command Line Interface (Install) 1.20.9 87 Thursday, July 29, 2021 Approved
AWS Command Line Interface (Install) 1.20.7 99 Tuesday, July 27, 2021 Approved
AWS Command Line Interface (Install) 1.20.6 97 Saturday, July 24, 2021 Approved
AWS Command Line Interface (Install) 1.20.4 91 Thursday, July 22, 2021 Approved
AWS Command Line Interface (Install) 1.20.2 90 Monday, July 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.1 101 Saturday, July 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.111 76 Wednesday, July 14, 2021 Approved
AWS Command Line Interface (Install) 1.19.110 89 Tuesday, July 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.109 90 Saturday, July 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.107 79 Thursday, July 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.105 88 Friday, July 2, 2021 Approved
AWS Command Line Interface (Install) 1.19.103 1164 Thursday, July 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.102 92 Tuesday, June 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.101 89 Saturday, June 26, 2021 Approved
AWS Command Line Interface (Install) 1.19.99 104 Thursday, June 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.98 76 Tuesday, June 22, 2021 Approved
AWS Command Line Interface (Install) 1.19.96 91 Thursday, June 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.94 91 Tuesday, June 15, 2021 Approved
AWS Command Line Interface (Install) 1.19.93 93 Saturday, June 12, 2021 Approved
AWS Command Line Interface (Install) 1.19.92 92 Thursday, June 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.91 95 Thursday, June 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.89 89 Tuesday, June 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.88 85 Saturday, June 5, 2021 Approved
AWS Command Line Interface (Install) 1.19.86 90 Thursday, June 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.84 84 Saturday, May 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.82 88 Thursday, May 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.79 95 Tuesday, May 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.78 90 Saturday, May 22, 2021 Approved
AWS Command Line Interface (Install) 1.19.77 81 Friday, May 21, 2021 Approved
AWS Command Line Interface (Install) 1.19.76 83 Thursday, May 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.75 91 Wednesday, May 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.74 98 Tuesday, May 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.72 80 Friday, May 14, 2021 Approved
AWS Command Line Interface (Install) 1.19.70 101 Tuesday, May 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.69 103 Saturday, May 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.67 108 Thursday, May 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.64 96 Monday, May 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.62 105 Saturday, May 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.60 76 Thursday, April 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.58 89 Tuesday, April 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.57 82 Saturday, April 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.56 89 Friday, April 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.54 93 Tuesday, April 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.52 80 Thursday, April 15, 2021 Approved
AWS Command Line Interface (Install) 1.19.50 75 Tuesday, April 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.49 92 Saturday, April 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.45 97 Tuesday, April 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.44 84 Saturday, April 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.42 83 Thursday, April 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.40 82 Monday, March 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.39 102 Saturday, March 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.37 101 Thursday, March 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.35 110 Wednesday, March 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.34 99 Tuesday, March 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.32 86 Friday, March 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.30 105 Thursday, March 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.29 88 Wednesday, March 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.28 115 Tuesday, March 16, 2021 Approved
AWS Command Line Interface (Install) 1.19.27 101 Saturday, March 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.26 4323 Thursday, March 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.25 106 Thursday, March 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.23 104 Tuesday, March 9, 2021 Approved
AWS Command Line Interface (Install) 1.19.22 90 Saturday, March 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.21 100 Friday, March 5, 2021 Approved
AWS Command Line Interface (Install) 1.19.20 105 Thursday, March 4, 2021 Approved
AWS Command Line Interface (Install) 1.19.19 107 Wednesday, March 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.17 113 Saturday, February 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.16 104 Friday, February 26, 2021 Approved
AWS Command Line Interface (Install) 1.19.15 95 Thursday, February 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.13 84 Tuesday, February 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.12 87 Saturday, February 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.11 86 Friday, February 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.10 106 Thursday, February 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.8 91 Tuesday, February 16, 2021 Approved
AWS Command Line Interface (Install) 1.19.7 111 Saturday, February 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.4 125 Tuesday, February 9, 2021 Approved
AWS Command Line Interface (Install) 1.19.3 194 Saturday, February 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.1 117 Thursday, February 4, 2021 Approved
AWS Command Line Interface (Install) 1.18.223 108 Saturday, January 30, 2021 Approved
AWS Command Line Interface (Install) 1.18.221 111 Thursday, January 28, 2021 Approved
AWS Command Line Interface (Install) 1.18.220 111 Wednesday, January 27, 2021 Approved
AWS Command Line Interface (Install) 1.18.219 128 Saturday, January 23, 2021 Approved
AWS Command Line Interface (Install) 1.18.216 95 Saturday, January 16, 2021 Approved
AWS Command Line Interface (Install) 1.18.214 117 Thursday, January 14, 2021 Approved
AWS Command Line Interface (Install) 1.18.212 112 Tuesday, January 12, 2021 Approved
AWS Command Line Interface (Install) 1.18.210 108 Thursday, January 7, 2021 Approved
AWS Command Line Interface (Install) 1.18.208 115 Tuesday, January 5, 2021 Approved
AWS Command Line Interface (Install) 1.18.207 99 Friday, January 1, 2021 Approved
AWS Command Line Interface (Install) 1.18.206 106 Thursday, December 31, 2020 Approved
AWS Command Line Interface (Install) 1.18.205 106 Tuesday, December 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.204 96 Monday, December 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.201 93 Tuesday, December 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.200 102 Friday, December 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.197 96 Tuesday, December 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.196 99 Tuesday, December 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.195 1765 Saturday, December 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.193 94 Wednesday, December 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.191 89 Tuesday, December 8, 2020 Approved
AWS Command Line Interface (Install) 1.18.190 100 Saturday, December 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.184 109 Tuesday, November 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.183 108 Saturday, November 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.181 126 Thursday, November 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.179 116 Tuesday, November 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.178 118 Saturday, November 14, 2020 Approved
AWS Command Line Interface (Install) 1.18.176 95 Thursday, November 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.174 106 Monday, November 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.173 110 Saturday, November 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.171 177 Thursday, November 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.170 121 Tuesday, November 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.167 126 Thursday, October 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.165 235 Tuesday, October 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.164 133 Saturday, October 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.162 126 Thursday, October 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.160 119 Tuesday, October 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.159 103 Saturday, October 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.157 181 Saturday, October 10, 2020 Approved
AWS Command Line Interface (Install) 1.18.153 119 Tuesday, October 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.152 132 Saturday, October 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.150 111 Thursday, October 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.148 120 Tuesday, September 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.147 144 Saturday, September 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.146 99 Thursday, September 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.144 100 Wednesday, September 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.143 111 Tuesday, September 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.142 112 Saturday, September 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.141 405 Thursday, September 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.140 120 Thursday, September 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.138 101 Tuesday, September 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.137 114 Saturday, September 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.133 166 Saturday, September 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.131 122 Thursday, September 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.129 127 Tuesday, September 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.128 135 Saturday, August 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.126 166 Thursday, August 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.125 138 Tuesday, August 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.123 147 Thursday, August 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.121 171 Tuesday, August 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.120 123 Saturday, August 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.119 118 Thursday, August 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.116 6586 Monday, August 10, 2020 Approved
AWS Command Line Interface (Install) 1.18.115 139 Saturday, August 8, 2020 Approved
AWS Command Line Interface (Install) 1.18.113 172 Thursday, August 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.111 164 Tuesday, August 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.110 173 Saturday, August 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.108 151 Thursday, July 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.106 172 Tuesday, July 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.105 172 Saturday, July 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.103 206 Thursday, July 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.101 1286 Tuesday, July 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.100 170 Saturday, July 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.96 195 Thursday, July 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.94 222 Tuesday, July 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.92 194 Thursday, July 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.90 194 Tuesday, June 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.89 238 Saturday, June 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.87 199 Thursday, June 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.85 207 Tuesday, June 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.84 230 Saturday, June 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.82 194 Thursday, June 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.80 271 Tuesday, June 16, 2020 Approved
AWS Command Line Interface (Install) 1.18.79 217 Saturday, June 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.75 183 Tuesday, June 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.74 212 Saturday, June 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.72 213 Thursday, June 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.70 205 Tuesday, June 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.69 6552 Friday, May 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.68 234 Thursday, May 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.65 24593 Thursday, May 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.63 181 Wednesday, May 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.62 228 Tuesday, May 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.61 204 Saturday, May 16, 2020 Approved
AWS Command Line Interface (Install) 1.18.57 193 Tuesday, May 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.56 252 Saturday, May 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.54 207 Thursday, May 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.52 202 Tuesday, May 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.51 275 Saturday, May 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.50 170 Friday, May 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.49 199 Thursday, April 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.46 373 Saturday, April 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.43 219 Wednesday, April 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.42 551 Tuesday, April 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.41 194 Friday, April 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.39 223 Thursday, April 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.36 328 Saturday, April 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.35 196 Friday, April 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.34 178 Thursday, April 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.31 225 Saturday, March 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.30 228 Thursday, March 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.29 186 Thursday, March 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.28 298 Wednesday, March 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.26 230 Saturday, March 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.25 226 Friday, March 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.24 212 Thursday, March 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.22 194 Tuesday, March 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.21 253 Saturday, March 14, 2020 Approved
AWS Command Line Interface (Install) 1.18.20 221 Friday, March 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.19 228 Thursday, March 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.16 177 Saturday, March 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.15 163 Friday, March 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.14 226 Thursday, March 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.11 22152 Saturday, February 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.9 5875 Friday, February 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.6 3722 Tuesday, February 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.5 4424 Friday, February 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.4 1218 Friday, February 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.3 1408 Thursday, February 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.2 1391 Wednesday, February 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.1 1664 Tuesday, February 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.0 1972 Saturday, February 15, 2020 Approved
AWS Command Line Interface (Install) 1.17.17 4220 Friday, February 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.16 2781 Thursday, February 13, 2020 Approved
AWS Command Line Interface (Install) 1.17.15 1542 Wednesday, February 12, 2020 Approved
AWS Command Line Interface (Install) 1.17.13 3046 Saturday, February 8, 2020 Approved
AWS Command Line Interface (Install) 1.17.12 1233 Friday, February 7, 2020 Approved
AWS Command Line Interface (Install) 1.17.11 162 Thursday, February 6, 2020 Approved
AWS Command Line Interface (Install) 1.17.10 184 Wednesday, February 5, 2020 Approved
AWS Command Line Interface (Install) 1.17.9 8278 Saturday, January 25, 2020 Approved
AWS Command Line Interface (Install) 1.17.8 949 Friday, January 24, 2020 Approved
AWS Command Line Interface (Install) 1.17.7 3042 Wednesday, January 22, 2020 Approved
AWS Command Line Interface (Install) 1.17.6 285 Tuesday, January 21, 2020 Approved
AWS Command Line Interface (Install) 1.17.5 2567 Saturday, January 18, 2020 Approved
AWS Command Line Interface (Install) 1.17.4 1211 Friday, January 17, 2020 Approved
AWS Command Line Interface (Install) 1.17.3 1109 Thursday, January 16, 2020 Approved
AWS Command Line Interface (Install) 1.17.2 2032 Tuesday, January 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.1 1186 Tuesday, January 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.0 2024 Saturday, January 11, 2020 Approved
AWS Command Line Interface (Install) 1.16.314 1392 Friday, January 10, 2020 Approved
AWS Command Line Interface (Install) 1.16.313 1417 Thursday, January 9, 2020 Approved
AWS Command Line Interface (Install) 1.16.312 1121 Wednesday, January 8, 2020 Approved
AWS Command Line Interface (Install) 1.16.311 1348 Tuesday, January 7, 2020 Approved
AWS Command Line Interface (Install) 1.16.310 187 Friday, January 3, 2020 Approved
AWS Command Line Interface (Install) 1.16.309 1431 Tuesday, December 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.308 5815 Saturday, December 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.307 1063 Friday, December 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.305 2038 Wednesday, December 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.303 2531 Saturday, December 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.302 1186 Friday, December 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.301 1533 Thursday, December 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.300 1293 Wednesday, December 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.299 1547 Tuesday, December 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.298 2559 Friday, December 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.297 1309 Thursday, December 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.296 1350 Wednesday, December 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.294 821 Tuesday, December 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.292 4713 Wednesday, November 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.291 1370 Tuesday, November 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.290 2075 Saturday, November 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.289 1210 Friday, November 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.287 1298 Thursday, November 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.286 1753 Wednesday, November 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.284 1552 Tuesday, November 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.283 2215 Saturday, November 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.282 1277 Friday, November 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.281 1556 Thursday, November 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.280 1518 Wednesday, November 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.279 1466 Tuesday, November 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.278 2088 Saturday, November 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.277 2676 Friday, November 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.276 1398 Thursday, November 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.274 1643 Tuesday, November 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.273 1296 Tuesday, November 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.272 2088 Saturday, November 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.271 1012 Friday, November 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.270 1502 Thursday, October 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.269 1566 Wednesday, October 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.268 1622 Tuesday, October 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.266 2889 Friday, October 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.265 1799 Thursday, October 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.264 1548 Wednesday, October 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.263 3561 Friday, October 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.262 728 Friday, October 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.261 2352 Thursday, October 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.260 1570 Wednesday, October 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.259 1507 Tuesday, October 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.258 1961 Saturday, October 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.257 1330 Friday, October 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.256 2066 Thursday, October 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.255 1712 Wednesday, October 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.254 1396 Tuesday, October 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.253 2032 Saturday, October 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.252 1522 Friday, October 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.251 2144 Thursday, October 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.250 1642 Wednesday, October 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.249 1662 Tuesday, October 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.248 2366 Saturday, September 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.247 1143 Friday, September 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.246 1844 Wednesday, September 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.245 1449 Wednesday, September 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.244 1537 Tuesday, September 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.243 1861 Saturday, September 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.242 1236 Friday, September 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.241 2346 Thursday, September 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.240 1502 Wednesday, September 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.239 1157 Tuesday, September 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.238 7171 Friday, September 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.237 1830 Thursday, September 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.236 1396 Wednesday, September 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.235 1326 Tuesday, September 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.234 1804 Saturday, September 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.233 1220 Friday, September 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.232 1851 Thursday, September 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.231 1265 Wednesday, September 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.230 2515 Saturday, August 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.229 1884 Friday, August 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.228 2830 Thursday, August 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.227 2367 Wednesday, August 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.226 1276 Tuesday, August 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.225 2034 Friday, August 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.224 1090 Friday, August 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.223 1157 Thursday, August 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.222 1239 Wednesday, August 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.221 2597 Tuesday, August 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.220 1866 Saturday, August 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.219 1117 Friday, August 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.218 1192 Thursday, August 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.217 1679 Wednesday, August 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.216 1136 Tuesday, August 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.215 1664 Saturday, August 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.214 1030 Friday, August 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.213 2225 Thursday, August 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.212 554 Wednesday, August 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.211 1722 Tuesday, August 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.210 1673 Saturday, August 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.209 5128 Wednesday, July 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.208 1014 Tuesday, July 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.207 1627 Saturday, July 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.206 1188 Friday, July 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.205 1403 Thursday, July 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.204 1200 Tuesday, July 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.203 1204 Tuesday, July 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.202 1158 Monday, July 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.201 844 Saturday, July 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.200 917 Friday, July 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.199 1117 Thursday, July 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.198 3118 Saturday, July 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.197 958 Friday, July 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.196 1035 Thursday, July 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.195 1053 Wednesday, July 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.194 1263 Tuesday, July 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.193 2743 Thursday, July 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.192 983 Wednesday, July 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.191 987 Tuesday, July 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.190 1548 Saturday, June 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.189 874 Friday, June 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.188 985 Thursday, June 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.186 1211 Wednesday, June 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.185 1037 Tuesday, June 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.184 2834 Saturday, June 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.183 999 Friday, June 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.182 867 Thursday, June 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.181 1369 Wednesday, June 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.180 1457 Tuesday, June 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.179 1690 Saturday, June 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.178 892 Friday, June 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.177 2283 Thursday, June 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.176 1591 Wednesday, June 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.175 1498 Tuesday, June 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.174 1881 Saturday, June 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.173 1078 Friday, June 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.172 1268 Thursday, June 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.171 1281 Wednesday, June 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.170 1426 Tuesday, June 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.169 2988 Friday, May 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.168 1170 Thursday, May 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.167 1070 Wednesday, May 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.166 2322 Saturday, May 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.165 1041 Friday, May 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.164 12780 Thursday, May 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.163 1257 Wednesday, May 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.162 1283 Monday, May 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.161 1776 Saturday, May 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.160 1126 Friday, May 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.159 1018 Thursday, May 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.158 1114 Wednesday, May 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.157 1383 Tuesday, May 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.156 1840 Saturday, May 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.155 1685 Thursday, May 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.154 1241 Wednesday, May 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.153 1310 Tuesday, May 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.152 2614 Saturday, May 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.151 1439 Friday, May 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.150 1231 Thursday, May 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.149 1027 Wednesday, May 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.148 1226 Tuesday, April 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.147 1973 Saturday, April 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.146 1212 Friday, April 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.145 1500 Thursday, April 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.144 2968 Saturday, April 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.143 1089 Friday, April 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.142 1046 Thursday, April 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.141 1120 Wednesday, April 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.140 10562 Saturday, April 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.139 1114 Friday, April 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.138 1234 Thursday, April 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.137 771 Wednesday, April 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.136 1470 Tuesday, April 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.135 2008 Saturday, March 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.134 1172 Friday, March 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.133 1703 Thursday, March 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.132 1562 Tuesday, March 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.131 1189 Tuesday, March 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.130 1858 Saturday, March 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.129 961 Friday, March 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.128 1164 Thursday, March 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.127 921 Wednesday, March 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.126 1627 Tuesday, March 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.125 2624 Friday, March 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.124 1210 Thursday, March 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.123 421 Wednesday, March 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.122 1933 Tuesday, March 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.121 1925 Saturday, March 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.120 1036 Friday, March 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.119 1058 Thursday, March 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.118 1175 Wednesday, March 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.117 1564 Tuesday, March 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.116 1665 Saturday, March 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.115 1387 Friday, March 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.114 4683 Thursday, February 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.113 1522 Wednesday, February 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.112 1203 Tuesday, February 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.111 1663 Saturday, February 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.110 952 Friday, February 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.109 1325 Thursday, February 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.108 1212 Wednesday, February 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.107 1233 Tuesday, February 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.106 1919 Saturday, February 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.105 1234 Friday, February 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.104 1176 Thursday, February 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.103 850 Wednesday, February 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.102 1262 Tuesday, February 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.101 1510 Saturday, February 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.99 1709 Thursday, February 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.98 1252 Wednesday, February 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.97 1174 Tuesday, February 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.96 5885 Saturday, January 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.94 1754 Thursday, January 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.93 1783 Tuesday, January 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.92 1716 Saturday, January 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.91 1044 Friday, January 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.90 1235 Thursday, January 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.89 1843 Tuesday, January 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.88 1609 Saturday, January 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.87 939 Friday, January 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.86 970 Thursday, January 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.85 1738 Tuesday, January 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.84 1509 Saturday, January 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.81 5016 Saturday, December 22, 2018 Approved
AWS Command Line Interface (Install) 1.16.80 870 Friday, December 21, 2018 Approved
AWS Command Line Interface (Install) 1.16.79 928 Thursday, December 20, 2018 Approved
AWS Command Line Interface (Install) 1.16.78 1098 Wednesday, December 19, 2018 Approved
AWS Command Line Interface (Install) 1.16.77 930 Tuesday, December 18, 2018 Approved
AWS Command Line Interface (Install) 1.16.76 1479 Saturday, December 15, 2018 Approved
AWS Command Line Interface (Install) 1.16.75 1070 Friday, December 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.74 1186 Thursday, December 13, 2018 Approved
AWS Command Line Interface (Install) 1.16.73 1174 Wednesday, December 12, 2018 Approved
AWS Command Line Interface (Install) 1.16.72 2543 Saturday, December 8, 2018 Approved
AWS Command Line Interface (Install) 1.16.71 1049 Friday, December 7, 2018 Approved
AWS Command Line Interface (Install) 1.16.70 1438 Thursday, December 6, 2018 Approved
AWS Command Line Interface (Install) 1.16.69 1336 Wednesday, December 5, 2018 Approved
AWS Command Line Interface (Install) 1.16.68 2088 Tuesday, December 4, 2018 Approved
AWS Command Line Interface (Install) 1.16.67 2998 Friday, November 30, 2018 Approved
AWS Command Line Interface (Install) 1.16.65 1074 Thursday, November 29, 2018 Approved
AWS Command Line Interface (Install) 1.16.63 1272 Wednesday, November 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.60 4016 Thursday, November 22, 2018 Approved
AWS Command Line Interface (Install) 1.16.59 776 Wednesday, November 21, 2018 Approved
AWS Command Line Interface (Install) 1.16.58 1507 Tuesday, November 20, 2018 Approved
AWS Command Line Interface (Install) 1.16.57 2113 Saturday, November 17, 2018 Approved
AWS Command Line Interface (Install) 1.16.56 1242 Friday, November 16, 2018 Approved
AWS Command Line Interface (Install) 1.16.55 1284 Thursday, November 15, 2018 Approved
AWS Command Line Interface (Install) 1.16.54 1269 Wednesday, November 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.53 1411 Tuesday, November 13, 2018 Approved
AWS Command Line Interface (Install) 1.16.52 1963 Saturday, November 10, 2018 Approved
AWS Command Line Interface (Install) 1.16.51 789 Friday, November 9, 2018 Approved
AWS Command Line Interface (Install) 1.16.50 675 Thursday, November 8, 2018 Approved
AWS Command Line Interface (Install) 1.16.48 2462 Tuesday, November 6, 2018 Approved
AWS Command Line Interface (Install) 1.16.47 1799 Saturday, November 3, 2018 Approved
AWS Command Line Interface (Install) 1.16.46 1042 Friday, November 2, 2018 Approved
AWS Command Line Interface (Install) 1.16.45 1139 Thursday, November 1, 2018 Approved
AWS Command Line Interface (Install) 1.16.44 1148 Wednesday, October 31, 2018 Approved
AWS Command Line Interface (Install) 1.16.43 2282 Sunday, October 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.42 1523 Friday, October 26, 2018 Approved
AWS Command Line Interface (Install) 1.16.41 1057 Thursday, October 25, 2018 Approved
AWS Command Line Interface (Install) 1.16.40 1116 Wednesday, October 24, 2018 Approved
AWS Command Line Interface (Install) 1.16.39 1005 Tuesday, October 23, 2018 Approved
AWS Command Line Interface (Install) 1.16.38 1152 Sunday, October 21, 2018 Approved
AWS Command Line Interface (Install) 1.16.37 1564 Friday, October 19, 2018 Approved
AWS Command Line Interface (Install) 1.16.36 1073 Thursday, October 18, 2018 Approved
AWS Command Line Interface (Install) 1.16.35 1272 Wednesday, October 17, 2018 Approved
AWS Command Line Interface (Install) 1.16.34 1001 Tuesday, October 16, 2018 Approved
AWS Command Line Interface (Install) 1.16.33 1067 Sunday, October 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.32 1552 Friday, October 12, 2018 Approved
AWS Command Line Interface (Install) 1.16.29 2436 Tuesday, October 9, 2018 Approved
AWS Command Line Interface (Install) 1.16.28 1071 Monday, October 8, 2018 Approved
AWS Command Line Interface (Install) 1.16.27 1558 Friday, October 5, 2018 Approved
AWS Command Line Interface (Install) 1.16.26 1599 Wednesday, October 3, 2018 Approved
AWS Command Line Interface (Install) 1.16.25 1071 Tuesday, October 2, 2018 Approved
AWS Command Line Interface (Install) 1.16.24 1059 Monday, October 1, 2018 Approved
AWS Command Line Interface (Install) 1.16.23 1445 Friday, September 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.22 999 Thursday, September 27, 2018 Approved
AWS Command Line Interface (Install) 1.16.21 1053 Wednesday, September 26, 2018 Approved
AWS Command Line Interface (Install) 1.16.20 1092 Tuesday, September 25, 2018 Approved
AWS Command Line Interface (Install) 1.16.19 1055 Monday, September 24, 2018 Approved
AWS Command Line Interface (Install) 1.16.18 1973 Friday, September 21, 2018 Approved
AWS Command Line Interface (Install) 1.16.17 1319 Thursday, September 20, 2018 Approved
AWS Command Line Interface (Install) 1.16.16 1113 Wednesday, September 19, 2018 Approved
AWS Command Line Interface (Install) 1.16.15 1233 Tuesday, September 18, 2018 Approved
AWS Command Line Interface (Install) 1.16.14 2532 Friday, September 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.13 1184 Thursday, September 13, 2018 Approved
AWS Command Line Interface (Install) 1.16.11 1767 Tuesday, September 11, 2018 Approved
AWS Command Line Interface (Install) 1.16.10 1297 Monday, September 10, 2018 Approved
AWS Command Line Interface (Install) 1.16.9 1762 Friday, September 7, 2018 Approved
AWS Command Line Interface (Install) 1.16.8 1033 Thursday, September 6, 2018 Approved
AWS Command Line Interface (Install) 1.16.7 1055 Wednesday, September 5, 2018 Approved
AWS Command Line Interface (Install) 1.16.6 1804 Monday, September 3, 2018 Approved
AWS Command Line Interface (Install) 1.16.5 1947 Friday, August 31, 2018 Approved
AWS Command Line Interface (Install) 1.16.4 1057 Thursday, August 30, 2018 Approved
AWS Command Line Interface (Install) 1.16.3 710 Wednesday, August 29, 2018 Approved
AWS Command Line Interface (Install) 1.16.2 504 Tuesday, August 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.1 1919 Monday, August 27, 2018 Approved
AWS Command Line Interface (Install) 1.15.85 1644 Friday, August 24, 2018 Approved
AWS Command Line Interface (Install) 1.15.84 1844 Thursday, August 23, 2018 Approved
AWS Command Line Interface (Install) 1.15.83 654 Wednesday, August 22, 2018 Approved
AWS Command Line Interface (Install) 1.15.82 1394 Tuesday, August 21, 2018 Approved
AWS Command Line Interface (Install) 1.15.81 1068 Monday, August 20, 2018 Approved
AWS Command Line Interface (Install) 1.15.80 1612 Friday, August 17, 2018 Approved
AWS Command Line Interface (Install) 1.15.79 936 Thursday, August 16, 2018 Approved
AWS Command Line Interface (Install) 1.15.78 954 Wednesday, August 15, 2018 Approved
AWS Command Line Interface (Install) 1.15.77 876 Tuesday, August 14, 2018 Approved
AWS Command Line Interface (Install) 1.15.76 974 Monday, August 13, 2018 Approved
AWS Command Line Interface (Install) 1.15.75 1598 Friday, August 10, 2018 Approved
AWS Command Line Interface (Install) 1.15.74 977 Thursday, August 9, 2018 Approved
AWS Command Line Interface (Install) 1.15.73 952 Wednesday, August 8, 2018 Approved
AWS Command Line Interface (Install) 1.15.72 966 Tuesday, August 7, 2018 Approved
AWS Command Line Interface (Install) 1.15.71 994 Monday, August 6, 2018 Approved
AWS Command Line Interface (Install) 1.15.70 1427 Friday, August 3, 2018 Approved
AWS Command Line Interface (Install) 1.15.69 978 Thursday, August 2, 2018 Approved
AWS Command Line Interface (Install) 1.15.68 1003 Wednesday, August 1, 2018 Approved
AWS Command Line Interface (Install) 1.15.67 1004 Tuesday, July 31, 2018 Approved
AWS Command Line Interface (Install) 1.15.66 2255 Friday, July 27, 2018 Approved
AWS Command Line Interface (Install) 1.15.65 1047 Thursday, July 26, 2018 Approved
AWS Command Line Interface (Install) 1.15.64 1018 Wednesday, July 25, 2018 Approved
AWS Command Line Interface (Install) 1.15.63 2022 Monday, July 23, 2018 Approved
AWS Command Line Interface (Install) 1.15.62 1540 Friday, July 20, 2018 Approved
AWS Command Line Interface (Install) 1.15.61 1102 Thursday, July 19, 2018 Approved
AWS Command Line Interface (Install) 1.15.60 1051 Wednesday, July 18, 2018 Approved
AWS Command Line Interface (Install) 1.15.59 1511 Monday, July 16, 2018 Approved
AWS Command Line Interface (Install) 1.15.58 1394 Friday, July 13, 2018 Approved
AWS Command Line Interface (Install) 1.15.57 981 Thursday, July 12, 2018 Approved
AWS Command Line Interface (Install) 1.15.56 983 Wednesday, July 11, 2018 Approved
AWS Command Line Interface (Install) 1.15.55 912 Tuesday, July 10, 2018 Approved
AWS Command Line Interface (Install) 1.15.53 1001 Sunday, July 8, 2018 Approved
AWS Command Line Interface (Install) 1.15.52 1300 Friday, July 6, 2018 Approved
AWS Command Line Interface 1.15.51 1571 Tuesday, July 3, 2018 Approved
AWS Command Line Interface 1.15.50 924 Monday, July 2, 2018 Approved
AWS Command Line Interface (Install) 1.15.49 1920 Friday, June 29, 2018 Approved
AWS Command Line Interface (Install) 1.15.47 920 Thursday, June 28, 2018 Approved
AWS Command Line Interface (Install) 1.15.46 490 Wednesday, June 27, 2018 Approved
AWS Command Line Interface (Install) 1.15.45 485 Monday, June 25, 2018 Approved
AWS Command Line Interface (Install) 1.15.44 715 Friday, June 22, 2018 Approved
AWS Command Line Interface (Install) 1.15.42 3051 Thursday, June 21, 2018 Approved
AWS Command Line Interface (Install) 1.15.41 977 Wednesday, June 20, 2018 Approved
AWS Command Line Interface (Install) 1.15.40 1440 Monday, June 18, 2018 Approved
AWS Command Line Interface (Install) 1.15.39 1455 Friday, June 15, 2018 Approved
AWS Command Line Interface (Install) 1.15.37 1524 Wednesday, June 13, 2018 Approved
AWS Command Line Interface (Install) 1.15.35 1487 Monday, June 11, 2018 Approved
AWS Command Line Interface (Install) 1.15.34 1581 Friday, June 8, 2018 Approved
AWS Command Line Interface (Install) 1.15.33 1850 Wednesday, June 6, 2018 Approved
AWS Command Line Interface ((Install) 1.15.31 2172 Saturday, June 2, 2018 Approved
AWS Command Line Interface 1.15.20 6970 Tuesday, May 15, 2018 Approved
AWS Command Line Interface 1.15.2 15371 Friday, April 6, 2018 Approved
AWS Command Line Interface 1.15.1 759 Thursday, April 5, 2018 Approved
AWS Command Line Interface 1.15.0 705 Wednesday, April 4, 2018 Approved
AWS Command Line Interface 1.14.70 808 Tuesday, April 3, 2018 Approved
AWS Command Line Interface 1.14.69 300 Tuesday, April 3, 2018 Approved
AWS Command Line Interface 1.14.68 276 Friday, March 30, 2018 Approved
AWS Command Line Interface 1.14.67 1556 Friday, March 30, 2018 Approved
AWS Command Line Interface 1.14.43 11580 Tuesday, February 20, 2018 Approved
AWS Command Line Interface 1.14.42 855 Monday, February 19, 2018 Approved
AWS Command Line Interface 1.14.41 821 Sunday, February 18, 2018 Approved
AWS Command Line Interface 1.14.40 885 Thursday, February 15, 2018 Approved
AWS Command Line Interface 1.14.39 703 Thursday, February 15, 2018 Approved
AWS Command Line Interface 1.14.37 1193 Tuesday, February 13, 2018 Approved
AWS Command Line Interface 1.14.36 1147 Saturday, February 10, 2018 Approved
AWS Command Line Interface 1.14.35 746 Thursday, February 8, 2018 Approved
AWS Command Line Interface 1.14.34 1013 Wednesday, February 7, 2018 Approved
AWS Command Line Interface 1.14.32 2727 Tuesday, January 30, 2018 Approved
AWS Command Line Interface 1.14.30 2471 Tuesday, January 23, 2018 Approved
AWS Command Line Interface 1.14.29 429 Monday, January 22, 2018 Approved
AWS Command Line Interface 1.14.24 3047 Saturday, January 13, 2018 Approved
AWS Command Line Interface 1.14.23 830 Thursday, January 11, 2018 Approved
AWS Command Line Interface 1.14.22 776 Thursday, January 11, 2018 Approved
AWS Command Line Interface 1.14.19 2220 Saturday, January 6, 2018 Approved
AWS Command Line Interface 1.14.18 1464 Wednesday, January 3, 2018 Approved
AWS Command Line Interface 1.14.16 1518 Friday, December 22, 2017 Approved
AWS Command Line Interface 1.14.15 569 Friday, December 22, 2017 Approved
AWS Command Line Interface 1.14.12 1108 Tuesday, December 19, 2017 Approved
AWS Command Line Interface 1.14.11 840 Saturday, December 16, 2017 Approved
AWS Command Line Interface 1.14.10 724 Thursday, December 14, 2017 Approved
AWS Command Line Interface 1.14.9 982 Tuesday, December 12, 2017 Approved
AWS Command Line Interface 1.14.8 639 Tuesday, December 12, 2017 Approved
AWS Command Line Interface 1.14.7 895 Saturday, December 9, 2017 Approved
AWS Command Line Interface 1.14.6 662 Thursday, December 7, 2017 Approved
AWS Command Line Interface 1.14.5 493 Thursday, December 7, 2017 Approved
AWS Command Line Interface 1.14.3 1119 Monday, December 4, 2017 Approved
AWS Command Line Interface 1.14.2 1042 Thursday, November 30, 2017 Approved
AWS Command Line Interface 1.14.1 552 Thursday, November 30, 2017 Approved
AWS Command Line Interface 1.14.0 442 Wednesday, November 29, 2017 Approved
AWS Command Line Interface 1.13.0 577 Wednesday, November 29, 2017 Approved
AWS Command Line Interface 1.12.2 937 Monday, November 27, 2017 Approved
AWS Command Line Interface 1.12.1 932 Thursday, November 23, 2017 Approved
AWS Command Line Interface 1.12.0 592 Wednesday, November 22, 2017 Approved
AWS Command Line Interface 1.11.190 726 Tuesday, November 21, 2017 Approved
AWS Command Line Interface 1.11.189 838 Saturday, November 18, 2017 Approved
AWS Command Line Interface 1.11.188 656 Friday, November 17, 2017 Approved
AWS Command Line Interface 1.11.187 647 Wednesday, November 15, 2017 Approved
AWS Command Line Interface 1.11.186 623 Wednesday, November 15, 2017 Approved
AWS Command Line Interface 1.11.185 1179 Thursday, November 9, 2017 Approved
AWS Command Line Interface 1.11.184 800 Thursday, November 9, 2017 Approved
AWS Command Line Interface 1.11.183 687 Tuesday, November 7, 2017 Approved
AWS Command Line Interface 1.11.181 1061 Saturday, November 4, 2017 Approved
AWS Command Line Interface 1.11.180 649 Friday, November 3, 2017 Approved
AWS Command Line Interface 1.11.179 651 Thursday, November 2, 2017 Approved
AWS Command Line Interface 1.11.178 1538 Friday, October 27, 2017 Approved
AWS Command Line Interface 1.11.177 838 Wednesday, October 25, 2017 Approved
AWS Command Line Interface 1.11.176 681 Tuesday, October 24, 2017 Approved
AWS Command Line Interface 1.11.175 875 Friday, October 20, 2017 Approved
AWS Command Line Interface 1.11.174 694 Thursday, October 19, 2017 Approved
AWS Command Line Interface 1.11.173 680 Wednesday, October 18, 2017 Approved
AWS Command Line Interface 1.11.172 784 Tuesday, October 17, 2017 Approved
AWS Command Line Interface 1.11.171 734 Monday, October 16, 2017 Approved
AWS Command Line Interface 1.11.170 1077 Thursday, October 12, 2017 Approved
AWS Command Line Interface 1.11.169 753 Wednesday, October 11, 2017 Approved
AWS Command Line Interface 1.11.167 1545 Saturday, October 7, 2017 Approved
AWS Command Line Interface 1.11.166 594 Thursday, October 5, 2017 Approved
AWS Command Line Interface 1.11.165 594 Thursday, October 5, 2017 Approved
AWS Command Line Interface 1.11.164 722 Tuesday, October 3, 2017 Approved
AWS Command Line Interface 1.11.163 689 Monday, October 2, 2017 Approved
AWS Command Line Interface 1.11.162 769 Saturday, September 30, 2017 Approved
AWS Command Line Interface 1.11.160 1896 Tuesday, September 26, 2017 Approved
AWS Command Line Interface 1.11.159 15505 Monday, September 25, 2017 Approved
AWS Command Line Interface 1.11.158 1409 Thursday, September 21, 2017 Approved
AWS Command Line Interface 1.11.157 471 Thursday, September 21, 2017 Approved
AWS Command Line Interface 1.11.156 980 Wednesday, September 20, 2017 Approved
AWS Command Line Interface 1.11.155 766 Tuesday, September 19, 2017 Approved
AWS Command Line Interface 1.11.154 995 Friday, September 15, 2017 Approved
AWS Command Line Interface 1.11.152 911 Wednesday, September 13, 2017 Approved
AWS Command Line Interface 1.11.151 768 Tuesday, September 12, 2017 Approved
AWS Command Line Interface 1.11.150 742 Tuesday, September 12, 2017 Approved
AWS Command Line Interface 1.11.148 1293 Friday, September 8, 2017 Approved
AWS Command Line Interface 1.11.146 1121 Tuesday, September 5, 2017 Approved
AWS Command Line Interface 1.11.145 1736 Saturday, September 2, 2017 Approved
AWS Command Line Interface 1.11.144 13623 Friday, September 1, 2017 Approved
AWS Command Line Interface 1.11.143 729 Thursday, August 31, 2017 Approved
AWS Command Line Interface 1.11.142 938 Tuesday, August 29, 2017 Approved
AWS Command Line Interface 1.11.141 1871 Saturday, August 26, 2017 Approved
AWS Command Line Interface 1.11.140 1135 Thursday, August 24, 2017 Approved
AWS Command Line Interface 1.11.139 976 Wednesday, August 23, 2017 Approved
AWS Command Line Interface 1.11.137 1543 Tuesday, August 22, 2017 Approved
AWS Command Line Interface 1.11.133 4196 Saturday, August 12, 2017 Approved
AWS Command Line Interface 1.11.132 1022 Friday, August 11, 2017 Approved
AWS Command Line Interface 1.11.131 1223 Wednesday, August 9, 2017 Approved
AWS Command Line Interface 1.11.129 7090 Wednesday, August 2, 2017 Approved
AWS Command Line Interface 1.11.128 1140 Tuesday, August 1, 2017 Approved
AWS Command Line Interface 1.11.127 2219 Friday, July 28, 2017 Approved
AWS Command Line Interface 1.11.126 1136 Thursday, July 27, 2017 Approved
AWS Command Line Interface 1.11.125 613 Wednesday, July 26, 2017 Approved
AWS Command Line Interface 1.11.124 1695 Monday, July 24, 2017 Approved
AWS Command Line Interface 1.11.123 2225 Friday, July 21, 2017 Approved
AWS Command Line Interface 1.11.122 1064 Wednesday, July 19, 2017 Approved
AWS Command Line Interface 1.11.121 1561 Tuesday, July 18, 2017 Approved
AWS Command Line Interface 1.11.120 2068 Saturday, July 15, 2017 Approved
AWS Command Line Interface 1.11.118 1847 Thursday, July 13, 2017 Approved
AWS Command Line Interface 1.11.115 8462 Friday, June 30, 2017 Approved
AWS Command Line Interface 1.11.114 1305 Thursday, June 29, 2017 Approved
AWS Command Line Interface 1.11.113 1261 Wednesday, June 28, 2017 Approved
AWS Command Line Interface 1.11.112 3433 Friday, June 23, 2017 Approved
AWS Command Line Interface 1.11.111 829 Friday, June 23, 2017 Approved
AWS Command Line Interface 1.11.110 1258 Thursday, June 22, 2017 Approved
AWS Command Line Interface 1.11.109 897 Wednesday, June 21, 2017 Approved
AWS Command Line Interface 1.11.108 1409 Monday, June 19, 2017 Approved
AWS Command Line Interface 1.11.107 1569 Sunday, June 18, 2017 Approved
AWS Command Line Interface 1.11.101 7203 Thursday, June 8, 2017 Approved
AWS Command Line Interface 1.11.100 1496 Wednesday, June 7, 2017 Approved
AWS Command Line Interface 1.11.99 647 Wednesday, June 7, 2017 Approved
AWS Command Line Interface 1.11.98 768 Monday, June 5, 2017 Approved
AWS Command Line Interface 1.11.97 3096 Saturday, June 3, 2017 Approved
AWS Command Line Interface 1.11.96 1198 Friday, June 2, 2017 Approved
AWS Command Line Interface 1.11.95 1201 Wednesday, May 31, 2017 Approved
AWS Command Line Interface 1.11.94 1151 Wednesday, May 31, 2017 Approved
AWS Command Line Interface 1.11.91 4689 Wednesday, May 24, 2017 Approved
AWS Command Line Interface 1.11.90 734 Tuesday, May 23, 2017 Approved
AWS Command Line Interface 1.11.89 3221 Friday, May 19, 2017 Approved
AWS Command Line Interface 1.11.88 1022 Thursday, May 18, 2017 Approved
AWS Command Line Interface 1.11.87 1240 Wednesday, May 17, 2017 Approved
AWS Command Line Interface 1.11.86 1157 Tuesday, May 16, 2017 Approved
AWS Command Line Interface 1.11.85 2381 Friday, May 12, 2017 Approved
AWS Command Line Interface 1.11.83 3919 Friday, May 5, 2017 Approved
AWS Command Line Interface 1.11.82 3609 Saturday, April 29, 2017 Approved
AWS Command Line Interface 1.11.81 1872 Wednesday, April 26, 2017 Approved
AWS Command Line Interface 1.11.80 1421 Saturday, April 22, 2017 Approved
AWS Command Line Interface 1.11.79 606 Friday, April 21, 2017 Approved
AWS Command Line Interface 1.11.78 887 Wednesday, April 19, 2017 Approved
AWS Command Line Interface 1.11.77 1486 Tuesday, April 18, 2017 Approved
AWS Command Line Interface 1.11.76 7964 Tuesday, April 11, 2017 Approved
AWS Command Line Interface 1.11.75 1445 Saturday, April 8, 2017 Approved
AWS Command Line Interface 1.11.74 871 Thursday, April 6, 2017 Approved
AWS Command Line Interface 1.11.73 901 Thursday, April 6, 2017 Approved
AWS Command Line Interface 1.11.72 760 Tuesday, April 4, 2017 Approved
AWS Command Line Interface 1.11.71 685 Tuesday, April 4, 2017 Approved
AWS Command Line Interface 1.11.70 922 Friday, March 31, 2017 Approved
AWS Command Line Interface 1.11.69 584 Friday, March 31, 2017 Approved
AWS Command Line Interface 1.11.68 1072 Wednesday, March 29, 2017 Approved
AWS Command Line Interface 1.11.67 700 Tuesday, March 28, 2017 Approved
AWS Command Line Interface 1.11.66 1024 Thursday, March 23, 2017 Approved
AWS Command Line Interface 1.11.65 827 Thursday, March 23, 2017 Approved
AWS Command Line Interface 1.11.64 679 Wednesday, March 22, 2017 Approved
AWS Command Line Interface 1.11.63 1791 Tuesday, March 14, 2017 Approved
AWS Command Line Interface 1.11.61 864 Friday, March 10, 2017 Approved
AWS Command Line Interface 1.11.60 740 Friday, March 10, 2017 Approved
AWS Command Line Interface 1.11.59 690 Thursday, March 9, 2017 Approved
AWS Command Line Interface 1.11.58 681 Wednesday, March 8, 2017 Approved
AWS Command Line Interface 1.11.57 626 Tuesday, March 7, 2017 Approved
AWS Command Line Interface 1.11.56 1835 Tuesday, February 28, 2017 Approved
AWS Command Line Interface 1.11.55 777 Sunday, February 26, 2017 Approved
AWS Command Line Interface 1.11.54 763 Friday, February 24, 2017 Approved
AWS Command Line Interface 1.11.52 1094 Wednesday, February 22, 2017 Approved
AWS Command Line Interface 1.11.51 42636 Sunday, February 19, 2017 Approved
AWS Command Line Interface 1.11.50 783 Friday, February 17, 2017 Approved
AWS Command Line Interface 1.11.49 756 Thursday, February 16, 2017 Approved
AWS Command Line Interface 1.11.48 791 Wednesday, February 15, 2017 Approved
AWS Command Line Interface 1.11.47 535 Tuesday, February 14, 2017 Approved
AWS Command Line Interface 1.11.46 1408 Friday, February 10, 2017 Approved
AWS Command Line Interface 1.11.45 977 Wednesday, February 8, 2017 Approved
AWS Command Line Interface 1.11.43 2438 Thursday, January 26, 2017 Approved
AWS Command Line Interface 1.11.42 724 Wednesday, January 25, 2017 Approved
AWS Command Line Interface 1.11.41 3197 Friday, January 20, 2017 Approved
AWS Command Line Interface 1.11.40 513 Friday, January 20, 2017 Approved
AWS Command Line Interface 1.11.39 758 Thursday, January 19, 2017 Approved
AWS Command Line Interface 1.11.38 694 Tuesday, January 17, 2017 Approved
AWS Command Line Interface 1.11.37 530 Tuesday, January 17, 2017 Approved
AWS Command Line Interface 1.11.36 1872 Wednesday, January 4, 2017 Approved
AWS Command Line Interface 1.11.34 1670 Friday, December 23, 2016 Approved
AWS Command Line Interface 1.11.33 947 Thursday, December 22, 2016 Approved
AWS Command Line Interface 1.11.32 646 Wednesday, December 21, 2016 Approved
AWS Command Line Interface 1.11.31 711 Tuesday, December 20, 2016 Approved
AWS Command Line Interface 1.11.30 860 Friday, December 16, 2016 Approved
AWS Command Line Interface 1.11.24 1954 Saturday, December 3, 2016 Approved
AWS Command Line Interface 1.11.22 1482 Wednesday, November 30, 2016 Approved
AWS Command Line Interface 1.10.38 10431 Wednesday, June 15, 2016 Approved
AWS Command Line Interface 1.10.35 484 Friday, June 3, 2016 Approved
AWS Command Line Interface 1.10.33 414 Friday, May 27, 2016 Approved
AWS Command Line Interface 1.10.30 428 Wednesday, May 18, 2016 Approved
AWS Command Line Interface 1.10.27 463 Wednesday, May 11, 2016 Approved
AWS Command Line Interface 1.10.26 433 Friday, May 6, 2016 Approved
AWS Command Line Interface 1.10.25 408 Wednesday, May 4, 2016 Approved
AWS Command Line Interface 1.10.24 467 Friday, April 29, 2016 Approved
AWS Command Line Interface 1.10.23 516 Thursday, April 28, 2016 Approved
AWS Command Line Interface 1.10.22 628 Friday, April 22, 2016 Approved
AWS Command Line Interface 1.10.21 530 Tuesday, April 19, 2016 Approved
AWS Command Line Interface 1.10.20 669 Tuesday, April 12, 2016 Approved
AWS Command Line Interface 1.10.18 543 Monday, April 11, 2016 Approved
AWS Command Line Interface 1.10.16 837 Friday, March 25, 2016 Approved
AWS Command Line Interface 1.10.15 563 Wednesday, March 23, 2016 Approved
AWS Command Line Interface 1.10.14 543 Friday, March 18, 2016 Approved
AWS Command Line Interface 1.10.13 482 Wednesday, March 16, 2016 Approved
AWS Command Line Interface 1.10.12 536 Friday, March 11, 2016 Approved
AWS Command Line Interface 1.10.11 548 Wednesday, March 9, 2016 Approved
AWS Command Line Interface 1.10.10 547 Friday, March 4, 2016 Approved
AWS Command Line Interface 1.10.9 529 Wednesday, March 2, 2016 Approved
AWS Command Line Interface 1.10.8 524 Monday, February 29, 2016 Approved
AWS Command Line Interface 1.10.7 634 Wednesday, February 24, 2016 Approved
awscli 1.0.4 13381 Saturday, February 22, 2014 Approved
awscli 1.0.3 571 Saturday, December 7, 2013 Approved
awscli 1.0.2 498 Saturday, December 7, 2013 Approved
awscli 1.0.1 692 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