Unpacking Software Livestream

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

Learn More

Chocolatey Product Spotlight

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

Learn More

Chocolatey Coding Livestream

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

Learn More

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

Webinar from
Wednesday, 17 January 2024

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

Watch On-Demand
Chocolatey Community Coffee Break

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

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

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

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

Livestream from
Thursday, 9 June 2022

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

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

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

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

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

Watch On-Demand

Downloads:

5,339,559

Downloads of v 2.6.2:

6,878

Last Update:

05 May 2022

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.6.2 | Updated: 05 May 2022

Downloads:

5,339,559

Downloads of v 2.6.2:

6,878

Maintainer(s):

Software Author(s):

  • Amazon Web Services

AWS Command Line Interface v2 (Install) 2.6.2

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.6.2'" [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.6.2'" 
$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.6.2'
    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.6.2'
end

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


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

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


package { 'awscli':
  ensure   => '2.6.2',
  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 05 May 2022.

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.6.2.msi'
$checksum64 = 'c12466098cdd9d9a860711f838b904127818952cf37a7e8ee8e01f62f7f38d03'

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

Install-ChocolateyPackage @packageArgs

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

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

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
AWS Command Line Interface v2 (Install) 2.24.23 2943 Friday, March 14, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.22 6934 Wednesday, March 12, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.21 6040 Tuesday, March 11, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.20 9278 Saturday, March 8, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.19 934 Friday, March 7, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.18 3225 Thursday, March 6, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.17 5912 Wednesday, March 5, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.16 4197 Tuesday, March 4, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.15 6301 Saturday, March 1, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.14 5006 Friday, February 28, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.13 5210 Thursday, February 27, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.12 2996 Wednesday, February 26, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.11 5999 Tuesday, February 25, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.10 9934 Saturday, February 22, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.9 3987 Friday, February 21, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.8 4793 Thursday, February 20, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.7 3363 Wednesday, February 19, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.6 5462 Tuesday, February 18, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.5 9164 Saturday, February 15, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.4 1591 Friday, February 14, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.3 6130 Wednesday, February 12, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.2 4155 Wednesday, February 12, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.1 4968 Tuesday, February 11, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.0 9054 Saturday, February 8, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.15 3071 Friday, February 7, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.14 4948 Wednesday, February 5, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.13 3743 Wednesday, February 5, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.12 1640 Tuesday, February 4, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.11 10568 Saturday, February 1, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.10 562 Friday, January 31, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.9 3665 Thursday, January 30, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.8 5567 Wednesday, January 29, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.7 5295 Tuesday, January 28, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.6 8281 Saturday, January 25, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.5 3123 Friday, January 24, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.4 3543 Thursday, January 23, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.3 2160 Wednesday, January 22, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.2 10467 Saturday, January 18, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.1 3417 Friday, January 17, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.0 3090 Thursday, January 16, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.35 4059 Wednesday, January 15, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.34 4536 Tuesday, January 14, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.33 8602 Saturday, January 11, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.32 3232 Friday, January 10, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.30 6189 Wednesday, January 8, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.29 4567 Tuesday, January 7, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.28 6886 Saturday, January 4, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.27 2732 Friday, January 3, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.26 8170 Monday, December 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.25 4382 Saturday, December 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.24 2692 Friday, December 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.23 4985 Tuesday, December 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.22 4567 Saturday, December 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.21 2682 Friday, December 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.20 5175 Thursday, December 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.19 1491 Wednesday, December 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.18 5502 Tuesday, December 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.17 7066 Saturday, December 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.16 3051 Friday, December 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.15 2095 Thursday, December 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.14 4674 Wednesday, December 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.13 4086 Tuesday, December 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.12 11169 Thursday, December 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.10 3809 Wednesday, December 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.8 6234 Tuesday, December 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.7 10334 Thursday, November 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.5 6111 Tuesday, November 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.4 8416 Saturday, November 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.2 5552 Thursday, November 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.1 3521 Wednesday, November 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.0 4312 Tuesday, November 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.3 8737 Saturday, November 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.2 2957 Friday, November 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.0 2958 Thursday, November 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.20.0 5372 Wednesday, November 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.5 5080 Tuesday, November 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.4 7884 Saturday, November 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.3 2144 Friday, November 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.2 3420 Thursday, November 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.1 9821 Saturday, November 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.0 2512 Friday, November 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.18 2149 Thursday, October 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.17 83 Wednesday, October 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.16 5616 Tuesday, October 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.15 5409 Saturday, October 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.14 10208 Friday, October 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.13 4171 Thursday, October 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.12 2992 Wednesday, October 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.11 4707 Tuesday, October 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.10 8401 Saturday, October 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.9 3418 Friday, October 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.8 4064 Thursday, October 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.7 3732 Wednesday, October 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.6 3380 Tuesday, October 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.4 8877 Friday, October 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.3 3409 Thursday, October 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.2 3817 Wednesday, October 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.1 4564 Tuesday, October 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.0 6923 Saturday, October 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.65 2552 Friday, October 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.64 3712 Thursday, October 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.63 2657 Wednesday, October 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.61 11211 Saturday, September 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.59 5711 Thursday, September 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.58 3692 Wednesday, September 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.57 3909 Tuesday, September 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.56 7836 Saturday, September 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.55 2901 Friday, September 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.54 3620 Thursday, September 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.53 3638 Wednesday, September 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.52 3750 Tuesday, September 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.51 8047 Saturday, September 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.50 3073 Friday, September 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.49 3944 Thursday, September 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.48 4773 Wednesday, September 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.47 6131 Monday, September 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.46 4043 Saturday, September 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.45 213 Friday, September 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.44 3228 Thursday, September 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.43 7357 Wednesday, September 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.42 9251 Saturday, August 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.40 4506 Thursday, August 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.39 4156 Wednesday, August 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.38 3545 Tuesday, August 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.37 7569 Saturday, August 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.36 2905 Friday, August 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.35 3347 Thursday, August 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.34 3784 Wednesday, August 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.33 3389 Tuesday, August 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.32 6798 Saturday, August 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.31 2488 Friday, August 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.30 2776 Thursday, August 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.29 4379 Wednesday, August 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.28 3185 Tuesday, August 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.27 5316 Saturday, August 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.26 3079 Friday, August 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.25 3131 Thursday, August 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.24 2575 Wednesday, August 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.23 3985 Tuesday, August 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.22 6023 Saturday, August 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.21 2813 Friday, August 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.20 5505 Wednesday, July 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.19 2402 Tuesday, July 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.18 7328 Friday, July 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.16 5427 Wednesday, July 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.15 3263 Tuesday, July 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.14 8714 Friday, July 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.13 12342 Saturday, July 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.12 4062 Thursday, July 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.11 3662 Wednesday, July 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.10 3829 Tuesday, July 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.9 7890 Saturday, July 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.8 4704 Thursday, July 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.7 4209 Wednesday, July 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.6 3408 Tuesday, July 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.5 7467 Saturday, June 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.4 1899 Friday, June 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.3 86 Thursday, June 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.2 6251 Wednesday, June 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.1 4538 Tuesday, June 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.0 9387 Friday, June 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.12 4210 Thursday, June 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.11 2711 Wednesday, June 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.10 4750 Tuesday, June 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.9 8031 Friday, June 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.8 1922 Friday, June 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.7 4382 Thursday, June 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.6 3897 Wednesday, June 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.5 4491 Tuesday, June 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.4 7378 Saturday, June 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.3 1687 Friday, June 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.2 4855 Thursday, June 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.1 3527 Wednesday, June 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.0 3293 Tuesday, June 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.62 6042 Saturday, June 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.61 3034 Friday, May 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.60 5273 Thursday, May 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.59 3903 Wednesday, May 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.58 11051 Saturday, May 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.57 3523 Friday, May 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.56 3128 Thursday, May 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.55 4415 Wednesday, May 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.54 2774 Tuesday, May 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.53 6207 Saturday, May 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.52 2536 Friday, May 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.51 3574 Thursday, May 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.50 3003 Wednesday, May 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.49 3027 Tuesday, May 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.48 7420 Saturday, May 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.47 3739 Thursday, May 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.46 1021 Thursday, May 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.45 6666 Tuesday, May 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.44 19998 Saturday, May 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.43 4595 Thursday, May 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.42 10615 Saturday, April 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.41 5082 Thursday, April 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.40 10118 Saturday, April 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.39 4484 Thursday, April 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.38 10738 Saturday, April 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.37 4302 Thursday, April 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.36 10074 Saturday, April 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.35 4498 Thursday, April 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.34 12186 Saturday, March 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.33 5032 Thursday, March 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.32 11301 Saturday, March 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.31 6484 Thursday, March 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.30 12787 Saturday, March 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.28 11120 Tuesday, March 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.27 7030 Saturday, March 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.26 6864 Thursday, March 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.25 21990 Saturday, March 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.24 8438 Thursday, February 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.23 15562 Saturday, February 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.22 8363 Thursday, February 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.21 12863 Saturday, February 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.20 7121 Thursday, February 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.19 16626 Saturday, February 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.17 20750 Saturday, February 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.16 6681 Thursday, February 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.15 14921 Saturday, January 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.14 7118 Thursday, January 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.13 8864 Tuesday, January 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.12 8920 Saturday, January 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.11 8035 Thursday, January 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.10 13581 Saturday, January 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.9 7097 Thursday, January 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.8 12551 Saturday, January 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.7 6355 Thursday, January 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.6 10141 Saturday, December 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.5 5028 Thursday, December 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.4 8679 Saturday, December 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.3 6503 Thursday, December 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.2 11622 Saturday, December 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.1 5140 Thursday, December 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.0 16558 Saturday, December 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.6 8830 Thursday, December 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.5 15055 Friday, December 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.2 6393 Wednesday, November 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.0 7097 Tuesday, November 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.38 14244 Wednesday, November 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.37 14529 Saturday, November 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.36 5248 Thursday, November 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.35 8371 Tuesday, November 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.34 9191 Saturday, November 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.32 15398 Saturday, November 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.31 6381 Thursday, November 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.30 13082 Saturday, October 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.29 6265 Thursday, October 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.28 13422 Saturday, October 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.27 8198 Thursday, October 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.26 13442 Saturday, October 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.25 15882 Saturday, October 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.24 6410 Thursday, October 5, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.23 7965 Tuesday, October 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.21 155 Saturday, September 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.20 24771 Thursday, September 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.19 12583 Saturday, September 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.18 7117 Thursday, September 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.16 17755 Thursday, September 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.15 12159 Saturday, September 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.14 8500 Thursday, August 31, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.13 13405 Saturday, August 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.12 7031 Thursday, August 24, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.11 1653 Saturday, August 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.9 27563 Saturday, August 12, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.8 7280 Thursday, August 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.7 12981 Saturday, August 5, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.6 7612 Thursday, August 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.5 94 Saturday, July 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.4 15812 Thursday, July 27, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.3 14473 Saturday, July 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.2 14383 Thursday, July 20, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.1 23129 Friday, July 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.0 28148 Saturday, July 8, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.7 11032 Thursday, July 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.6 17591 Saturday, July 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.5 7366 Friday, June 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.4 8142 Thursday, June 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.3 17519 Saturday, June 24, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.2 10896 Thursday, June 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.1 18177 Saturday, June 17, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.0 11923 Thursday, June 15, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.27 13216 Saturday, June 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.26 6996 Thursday, June 8, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.25 12535 Saturday, June 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.24 7238 Thursday, June 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.23 12713 Saturday, May 27, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.22 7837 Thursday, May 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.21 13243 Saturday, May 20, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.20 25216 Saturday, May 13, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.19 9802 Thursday, May 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.17 17190 Thursday, May 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.16 16335 Saturday, April 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.13 24515 Saturday, April 15, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.11 21935 Monday, April 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.10 9193 Thursday, April 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.9 8738 Tuesday, April 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.8 9261 Saturday, April 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.6 17768 Saturday, March 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.5 6864 Thursday, March 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.4 17536 Saturday, March 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.2 17692 Saturday, March 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.1 7564 Thursday, March 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.0 14316 Friday, March 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.4 5956 Thursday, March 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.3 11645 Saturday, February 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.2 8231 Thursday, February 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.1 12544 Saturday, February 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.23 17749 Saturday, February 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.22 7359 Thursday, February 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.21 11304 Monday, February 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.20 11460 Thursday, February 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.19 11427 Monday, January 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.18 11759 Thursday, January 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.17 13402 Saturday, January 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.16 8679 Thursday, January 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.15 12861 Saturday, January 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.14 7514 Thursday, January 12, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.13 15800 Friday, January 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.12 14458 Saturday, December 31, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.11 7013 Thursday, December 29, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.10 11229 Friday, December 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.9 7504 Thursday, December 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.8 12861 Saturday, December 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.7 8533 Thursday, December 15, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.6 13948 Saturday, December 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.5 7442 Thursday, December 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.4 12297 Saturday, December 3, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.3 6375 Thursday, December 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.2 5457 Wednesday, November 30, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.1 13528 Thursday, November 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.0 16295 Saturday, November 19, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.13 6805 Thursday, November 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.12 9616 Saturday, November 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.11 11598 Thursday, November 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.9 13322 Saturday, November 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.8 7501 Thursday, November 3, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.7 15737 Friday, October 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.6 7423 Thursday, October 27, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.5 10793 Saturday, October 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.3 17779 Friday, October 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.2 15636 Saturday, October 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.1 6604 Thursday, October 6, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.0 10818 Saturday, October 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.35 13660 Saturday, September 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.34 6740 Thursday, September 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.33 11612 Saturday, September 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.32 6930 Thursday, September 15, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.31 14079 Saturday, September 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.30 7655 Thursday, September 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.29 13888 Monday, September 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.28 19871 Thursday, September 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.26 23219 Thursday, August 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.25 16576 Saturday, August 20, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.24 11613 Wednesday, August 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.22 15294 Friday, August 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.21 32588 Thursday, August 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.20 16117 Saturday, July 30, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.19 7939 Thursday, July 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.18 14097 Saturday, July 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.17 8203 Thursday, July 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.16 13999 Saturday, July 16, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.15 7270 Thursday, July 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.14 13320 Saturday, July 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.13 6244 Thursday, July 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.11 27792 Saturday, June 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.9 18299 Saturday, June 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.8 4873 Friday, June 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.7 21314 Thursday, June 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.6 11609 Saturday, June 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.5 6974 Thursday, June 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.4 11550 Friday, May 27, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.3 6136 Thursday, May 26, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.2 12312 Saturday, May 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.1 7933 Wednesday, May 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.0 11224 Saturday, May 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.4 6839 Wednesday, May 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.3 8229 Sunday, May 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.2 6878 Thursday, May 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.1 9369 Friday, April 29, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.0 5273 Thursday, April 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.8 10741 Friday, April 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.7 3718 Thursday, April 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.6 10549 Saturday, April 16, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.4 11255 Saturday, April 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.3 5827 Thursday, April 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.2 8605 Saturday, April 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.1 5852 Thursday, March 31, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.0 6710 Monday, March 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.29 8319 Saturday, March 26, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.28 5500 Thursday, March 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.27 10433 Friday, March 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.25 12191 Friday, March 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.24 5940 Wednesday, March 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.23 8760 Friday, March 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.22 6047 Wednesday, March 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.21 22704 Friday, February 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.20 6055 Wednesday, February 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.19 8095 Friday, February 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.18 10534 Friday, February 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.17 6767 Wednesday, February 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.16 8295 Friday, February 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.15 10544 Friday, January 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.13 10807 Friday, January 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.12 14766 Wednesday, January 19, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.11 6755 Friday, January 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.10 4151 Wednesday, January 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.9 6810 Friday, January 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.7 13195 Wednesday, December 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.6 16971 Friday, December 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.5 8490 Saturday, December 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.4 2625 Friday, December 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.3 4969 Tuesday, November 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.2 6574 Saturday, November 27, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.1 6059 Wednesday, November 24, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.0 6797 Friday, November 19, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.7 5198 Wednesday, November 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.6 7379 Friday, November 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.5 5113 Wednesday, November 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.4 6911 Friday, November 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.0 16201 Friday, October 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.47 4849 Wednesday, October 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.46 6653 Friday, October 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.45 5713 Tuesday, October 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.43 12449 Friday, October 1, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.42 5073 Wednesday, September 29, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.41 6544 Friday, September 24, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.40 3967 Wednesday, September 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.39 6053 Friday, September 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.38 4404 Wednesday, September 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.37 7484 Friday, September 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.36 4155 Wednesday, September 8, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.35 5757 Friday, September 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.33 7954 Friday, August 27, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.32 3620 Wednesday, August 25, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.31 6402 Friday, August 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.30 4163 Wednesday, August 18, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.29 5781 Friday, August 13, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.28 3843 Wednesday, August 11, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.27 6398 Friday, August 6, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.26 3314 Wednesday, August 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.25 7451 Saturday, July 31, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.24 2020 Friday, July 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.23 2371 Wednesday, July 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.22 6916 Friday, July 23, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.21 4513 Wednesday, July 21, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.20 5171 Friday, July 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.19 3347 Thursday, July 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.18 7051 Friday, July 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.17 3873 Wednesday, July 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.16 7021 Friday, July 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.15 5966 Wednesday, June 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.14 5454 Friday, June 25, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.13 7786 Thursday, June 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.12 6078 Wednesday, June 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.11 5579 Friday, June 11, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.10 4719 Wednesday, June 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.9 5979 Friday, June 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.8 3378 Wednesday, June 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.7 6444 Friday, May 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.6 4376 Wednesday, May 26, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.5 13316 Saturday, May 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.4 5565 Wednesday, May 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.3 5761 Friday, May 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.2 3949 Wednesday, May 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.1 5025 Friday, April 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.0 3134 Wednesday, April 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.39 123 Thursday, April 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.38 12361 Friday, April 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.37 4068 Wednesday, April 14, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.36 5642 Friday, April 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.35 423 Wednesday, April 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.34 9246 Friday, April 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.33 3535 Wednesday, March 31, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.32 561 Tuesday, March 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.29 53540 Tuesday, March 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.28 18519 Tuesday, February 23, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.27 34029 Wednesday, February 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.26 5932 Friday, February 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.25 3079 Wednesday, February 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.24 6749 Friday, February 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.23 3529 Wednesday, February 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.22 9942 Friday, January 29, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.21 7680 Friday, January 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.20 4343 Wednesday, January 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.19 5622 Friday, January 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.18 2785 Wednesday, January 13, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.17 4980 Friday, January 8, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.16 1910 Wednesday, January 6, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.15 5642 Wednesday, December 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.14 4077 Wednesday, December 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.13 4541 Friday, December 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.12 1919 Thursday, December 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.11 1702 Wednesday, December 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.10 5291 Friday, December 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.9 1690 Thursday, December 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.8 3099 Wednesday, December 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.7 4697 Friday, December 4, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.6 2468 Wednesday, December 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.4 6792 Wednesday, November 25, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.3 4804 Friday, November 20, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.2 2173 Wednesday, November 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.1 4468 Friday, November 13, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.0 4057 Wednesday, November 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.63 4734 Tuesday, November 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.62 2853 Friday, November 6, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.61 7135 Friday, October 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.60 4073 Wednesday, October 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.59 7207 Friday, October 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.58 3273 Wednesday, October 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.57 3731 Friday, October 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.56 9043 Friday, October 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.55 5569 Wednesday, October 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.54 4985 Friday, October 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.53 5920 Wednesday, September 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.52 4372 Friday, September 25, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.51 2413 Thursday, September 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.50 6573 Friday, September 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.49 2965 Wednesday, September 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.48 5252 Friday, September 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.47 3345 Wednesday, September 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.46 3871 Friday, September 4, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.45 2726 Wednesday, September 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.44 3222 Friday, August 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.43 4808 Wednesday, August 26, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.42 5741 Friday, August 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.41 3170 Wednesday, August 19, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.40 3652 Friday, August 14, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.39 3798 Wednesday, August 12, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.38 4248 Friday, August 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.37 3101 Wednesday, August 5, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.36 4059 Friday, July 31, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.35 3016 Wednesday, July 29, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.34 4527 Friday, July 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.33 3375 Wednesday, July 22, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.31 5602 Thursday, July 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.30 7974 Friday, July 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.29 2787 Wednesday, July 8, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.28 3982 Friday, July 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.27 2831 Wednesday, July 1, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.26 4438 Friday, June 26, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.25 2925 Wednesday, June 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.24 4420 Friday, June 19, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.23 2760 Wednesday, June 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.22 5559 Friday, June 12, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.21 1237 Thursday, June 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.20 1883 Wednesday, June 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.19 3638 Friday, June 5, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.18 2151 Wednesday, June 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.17 4606 Wednesday, May 27, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.15 3511 Thursday, May 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.14 5660 Friday, May 15, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.13 2542 Wednesday, May 13, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.12 4025 Friday, May 8, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.11 3286 Wednesday, May 6, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.10 6436 Tuesday, April 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.9 3414 Thursday, April 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.8 4788 Friday, April 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.7 6243 Tuesday, April 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.6 5851 Tuesday, March 31, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.5 5122 Tuesday, March 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.4 5456 Wednesday, March 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.3 5714 Tuesday, March 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.2 4312 Tuesday, March 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.1 5777 Wednesday, February 26, 2020 Approved
AWS Command Line Interface (Install) 1.36.8 77 Friday, November 22, 2024 Approved
AWS Command Line Interface (Install) 1.34.30 29 Tuesday, October 1, 2024 Approved
AWS Command Line Interface (Install) 1.33.37 31 Tuesday, August 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.102 59 Friday, May 10, 2024 Approved
AWS Command Line Interface (Install) 1.32.100 46 Wednesday, May 8, 2024 Approved
AWS Command Line Interface (Install) 1.32.97 40 Friday, May 3, 2024 Approved
AWS Command Line Interface (Install) 1.32.95 51 Wednesday, May 1, 2024 Approved
AWS Command Line Interface (Install) 1.32.94 48 Tuesday, April 30, 2024 Approved
AWS Command Line Interface (Install) 1.32.92 46 Friday, April 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.89 51 Tuesday, April 23, 2024 Approved
AWS Command Line Interface (Install) 1.32.87 42 Friday, April 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.86 44 Wednesday, April 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.85 44 Wednesday, April 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.83 38 Friday, April 12, 2024 Approved
AWS Command Line Interface (Install) 1.32.81 42 Wednesday, April 10, 2024 Approved
AWS Command Line Interface (Install) 1.32.80 44 Tuesday, April 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.76 36 Wednesday, April 3, 2024 Approved
AWS Command Line Interface (Install) 1.32.75 43 Tuesday, April 2, 2024 Approved
AWS Command Line Interface (Install) 1.32.73 39 Friday, March 29, 2024 Approved
AWS Command Line Interface (Install) 1.32.71 56 Wednesday, March 27, 2024 Approved
AWS Command Line Interface (Install) 1.32.70 55 Tuesday, March 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.66 52 Wednesday, March 20, 2024 Approved
AWS Command Line Interface (Install) 1.32.65 48 Tuesday, March 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.61 55 Wednesday, March 13, 2024 Approved
AWS Command Line Interface (Install) 1.32.58 47 Friday, March 8, 2024 Approved
AWS Command Line Interface (Install) 1.32.56 41 Wednesday, March 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.53 48 Friday, March 1, 2024 Approved
AWS Command Line Interface (Install) 1.32.51 41 Wednesday, February 28, 2024 Approved
AWS Command Line Interface (Install) 1.32.50 37 Tuesday, February 27, 2024 Approved
AWS Command Line Interface (Install) 1.32.48 48 Friday, February 23, 2024 Approved
AWS Command Line Interface (Install) 1.32.45 51 Tuesday, February 20, 2024 Approved
AWS Command Line Interface (Install) 1.32.43 39 Friday, February 16, 2024 Approved
AWS Command Line Interface (Install) 1.32.40 43 Tuesday, February 13, 2024 Approved
AWS Command Line Interface (Install) 1.32.38 56 Friday, February 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.36 55 Wednesday, February 7, 2024 Approved
AWS Command Line Interface (Install) 1.32.35 44 Tuesday, February 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.33 47 Friday, February 2, 2024 Approved
AWS Command Line Interface (Install) 1.32.31 43 Wednesday, January 31, 2024 Approved
AWS Command Line Interface (Install) 1.32.30 55 Tuesday, January 30, 2024 Approved
AWS Command Line Interface (Install) 1.32.28 46 Friday, January 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.22 40 Friday, January 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.20 41 Wednesday, January 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.19 54 Monday, January 15, 2024 Approved
AWS Command Line Interface (Install) 1.32.17 40 Friday, January 12, 2024 Approved
AWS Command Line Interface (Install) 1.32.15 53 Tuesday, January 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.13 54 Friday, January 5, 2024 Approved
AWS Command Line Interface (Install) 1.32.6 50 Friday, December 22, 2023 Approved
AWS Command Line Interface (Install) 1.32.4 56 Wednesday, December 20, 2023 Approved
AWS Command Line Interface (Install) 1.32.3 55 Tuesday, December 19, 2023 Approved
AWS Command Line Interface (Install) 1.32.1 53 Friday, December 15, 2023 Approved
AWS Command Line Interface (Install) 1.31.13 52 Wednesday, December 13, 2023 Approved
AWS Command Line Interface (Install) 1.31.12 60 Monday, December 11, 2023 Approved
AWS Command Line Interface (Install) 1.31.10 53 Friday, December 8, 2023 Approved
AWS Command Line Interface (Install) 1.31.7 56 Tuesday, December 5, 2023 Approved
AWS Command Line Interface (Install) 1.31.6 67 Saturday, December 2, 2023 Approved
AWS Command Line Interface (Install) 1.30.4 59 Tuesday, November 21, 2023 Approved
AWS Command Line Interface (Install) 1.30.2 57 Friday, November 17, 2023 Approved
AWS Command Line Interface (Install) 1.30.0 57 Wednesday, November 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.83 50 Friday, November 10, 2023 Approved
AWS Command Line Interface (Install) 1.29.82 62 Thursday, November 9, 2023 Approved
AWS Command Line Interface (Install) 1.29.80 62 Wednesday, November 8, 2023 Approved
AWS Command Line Interface (Install) 1.29.79 59 Tuesday, November 7, 2023 Approved
AWS Command Line Interface (Install) 1.29.77 56 Thursday, November 2, 2023 Approved
AWS Command Line Interface (Install) 1.29.75 54 Wednesday, November 1, 2023 Approved
AWS Command Line Interface (Install) 1.29.72 51 Friday, October 27, 2023 Approved
AWS Command Line Interface (Install) 1.29.70 55 Wednesday, October 25, 2023 Approved
AWS Command Line Interface (Install) 1.29.69 54 Tuesday, October 24, 2023 Approved
AWS Command Line Interface (Install) 1.29.67 68 Friday, October 20, 2023 Approved
AWS Command Line Interface (Install) 1.29.65 59 Wednesday, October 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.64 63 Tuesday, October 17, 2023 Approved
AWS Command Line Interface (Install) 1.29.63 69 Friday, October 13, 2023 Approved
AWS Command Line Interface (Install) 1.29.61 47 Friday, October 6, 2023 Approved
AWS Command Line Interface (Install) 1.29.59 56 Wednesday, October 4, 2023 Approved
AWS Command Line Interface (Install) 1.29.57 58 Saturday, September 30, 2023 Approved
AWS Command Line Interface (Install) 1.29.55 54 Wednesday, September 27, 2023 Approved
AWS Command Line Interface (Install) 1.29.54 44 Tuesday, September 26, 2023 Approved
AWS Command Line Interface (Install) 1.29.51 66 Wednesday, September 20, 2023 Approved
AWS Command Line Interface (Install) 1.29.50 58 Tuesday, September 19, 2023 Approved
AWS Command Line Interface (Install) 1.29.48 60 Friday, September 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.45 62 Tuesday, September 12, 2023 Approved
AWS Command Line Interface (Install) 1.29.43 63 Friday, September 8, 2023 Approved
AWS Command Line Interface (Install) 1.29.41 51 Wednesday, September 6, 2023 Approved
AWS Command Line Interface (Install) 1.29.36 282 Tuesday, August 29, 2023 Approved
AWS Command Line Interface (Install) 1.29.34 49 Friday, August 25, 2023 Approved
AWS Command Line Interface (Install) 1.29.32 61 Wednesday, August 23, 2023 Approved
AWS Command Line Interface (Install) 1.29.31 63 Tuesday, August 22, 2023 Approved
AWS Command Line Interface (Install) 1.29.29 63 Friday, August 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.26 63 Tuesday, August 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.24 68 Friday, August 11, 2023 Approved
AWS Command Line Interface (Install) 1.29.22 83 Wednesday, August 9, 2023 Approved
AWS Command Line Interface (Install) 1.29.16 82 Tuesday, August 1, 2023 Approved
AWS Command Line Interface (Install) 1.29.14 63 Friday, July 28, 2023 Approved
AWS Command Line Interface (Install) 1.29.11 62 Wednesday, July 26, 2023 Approved
AWS Command Line Interface (Install) 1.29.5 50 Wednesday, July 19, 2023 Approved
AWS Command Line Interface (Install) 1.29.4 52 Tuesday, July 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.2 133 Wednesday, July 12, 2023 Approved
AWS Command Line Interface (Install) 1.29.0 181 Friday, July 7, 2023 Approved
AWS Command Line Interface (Install) 1.28.0 56 Tuesday, July 4, 2023 Approved
AWS Command Line Interface (Install) 1.27.162 54 Wednesday, June 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.161 67 Tuesday, June 27, 2023 Approved
AWS Command Line Interface (Install) 1.27.159 59 Friday, June 23, 2023 Approved
AWS Command Line Interface (Install) 1.27.157 59 Wednesday, June 21, 2023 Approved
AWS Command Line Interface (Install) 1.27.156 59 Tuesday, June 20, 2023 Approved
AWS Command Line Interface (Install) 1.27.153 60 Wednesday, June 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.152 49 Tuesday, June 13, 2023 Approved
AWS Command Line Interface (Install) 1.27.150 62 Friday, June 9, 2023 Approved
AWS Command Line Interface (Install) 1.27.148 53 Wednesday, June 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.145 60 Friday, June 2, 2023 Approved
AWS Command Line Interface (Install) 1.27.143 56 Wednesday, May 31, 2023 Approved
AWS Command Line Interface (Install) 1.27.141 65 Friday, May 26, 2023 Approved
AWS Command Line Interface (Install) 1.27.139 53 Wednesday, May 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.138 55 Tuesday, May 23, 2023 Approved
AWS Command Line Interface (Install) 1.27.135 63 Thursday, May 18, 2023 Approved
AWS Command Line Interface (Install) 1.27.134 69 Tuesday, May 16, 2023 Approved
AWS Command Line Interface (Install) 1.27.133 56 Friday, May 12, 2023 Approved
AWS Command Line Interface (Install) 1.27.131 64 Wednesday, May 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.130 69 Tuesday, May 9, 2023 Approved
AWS Command Line Interface (Install) 1.27.127 53 Friday, May 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.125 57 Wednesday, May 3, 2023 Approved
AWS Command Line Interface (Install) 1.27.124 55 Tuesday, May 2, 2023 Approved
AWS Command Line Interface (Install) 1.27.122 49 Friday, April 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.120 72 Wednesday, April 26, 2023 Approved
AWS Command Line Interface (Install) 1.27.119 60 Tuesday, April 25, 2023 Approved
AWS Command Line Interface (Install) 1.27.113 71 Friday, April 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.110 59 Tuesday, April 11, 2023 Approved
AWS Command Line Interface (Install) 1.27.106 56 Wednesday, April 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.101 67 Wednesday, March 29, 2023 Approved
AWS Command Line Interface (Install) 1.27.100 70 Tuesday, March 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.98 61 Friday, March 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.93 59 Friday, March 17, 2023 Approved
AWS Command Line Interface (Install) 1.27.90 60 Tuesday, March 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.88 79 Friday, March 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.86 49 Wednesday, March 8, 2023 Approved
AWS Command Line Interface (Install) 1.27.85 64 Tuesday, March 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.81 68 Wednesday, March 1, 2023 Approved
AWS Command Line Interface (Install) 1.27.80 56 Tuesday, February 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.78 67 Friday, February 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.75 67 Tuesday, February 21, 2023 Approved
AWS Command Line Interface (Install) 1.27.73 73 Friday, February 17, 2023 Approved
AWS Command Line Interface (Install) 1.27.71 69 Wednesday, February 15, 2023 Approved
AWS Command Line Interface (Install) 1.27.70 65 Tuesday, February 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.68 65 Friday, February 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.66 62 Wednesday, February 8, 2023 Approved
AWS Command Line Interface (Install) 1.27.65 67 Tuesday, February 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.63 72 Friday, February 3, 2023 Approved
AWS Command Line Interface (Install) 1.27.61 67 Wednesday, February 1, 2023 Approved
AWS Command Line Interface (Install) 1.27.60 64 Tuesday, January 31, 2023 Approved
AWS Command Line Interface (Install) 1.27.58 65 Friday, January 27, 2023 Approved
AWS Command Line Interface (Install) 1.27.56 63 Wednesday, January 25, 2023 Approved
AWS Command Line Interface (Install) 1.27.53 69 Friday, January 20, 2023 Approved
AWS Command Line Interface (Install) 1.27.51 61 Wednesday, January 18, 2023 Approved
AWS Command Line Interface (Install) 1.27.49 68 Friday, January 13, 2023 Approved
AWS Command Line Interface (Install) 1.27.47 67 Wednesday, January 11, 2023 Approved
AWS Command Line Interface (Install) 1.27.46 60 Tuesday, January 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.43 63 Thursday, January 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.40 61 Friday, December 30, 2022 Approved
AWS Command Line Interface (Install) 1.27.38 67 Wednesday, December 28, 2022 Approved
AWS Command Line Interface (Install) 1.27.36 64 Friday, December 23, 2022 Approved
AWS Command Line Interface (Install) 1.27.33 69 Tuesday, December 20, 2022 Approved
AWS Command Line Interface (Install) 1.27.31 62 Friday, December 16, 2022 Approved
AWS Command Line Interface (Install) 1.27.29 67 Wednesday, December 14, 2022 Approved
AWS Command Line Interface (Install) 1.27.26 61 Friday, December 9, 2022 Approved
AWS Command Line Interface (Install) 1.27.24 65 Wednesday, December 7, 2022 Approved
AWS Command Line Interface (Install) 1.27.23 64 Tuesday, December 6, 2022 Approved
AWS Command Line Interface (Install) 1.27.15 87 Wednesday, November 23, 2022 Approved
AWS Command Line Interface (Install) 1.27.14 75 Tuesday, November 22, 2022 Approved
AWS Command Line Interface (Install) 1.27.12 61 Friday, November 18, 2022 Approved
AWS Command Line Interface (Install) 1.27.10 71 Wednesday, November 16, 2022 Approved
AWS Command Line Interface (Install) 1.27.9 63 Tuesday, November 15, 2022 Approved
AWS Command Line Interface (Install) 1.27.7 69 Friday, November 11, 2022 Approved
AWS Command Line Interface (Install) 1.27.4 64 Tuesday, November 8, 2022 Approved
AWS Command Line Interface (Install) 1.27.3 72 Saturday, November 5, 2022 Approved
AWS Command Line Interface (Install) 1.27.2 81 Friday, November 4, 2022 Approved
AWS Command Line Interface (Install) 1.27.0 84 Wednesday, November 2, 2022 Approved
AWS Command Line Interface (Install) 1.26.5 76 Tuesday, November 1, 2022 Approved
AWS Command Line Interface (Install) 1.26.3 60 Friday, October 28, 2022 Approved
AWS Command Line Interface (Install) 1.26.1 56 Wednesday, October 26, 2022 Approved
AWS Command Line Interface (Install) 1.26.0 84 Tuesday, October 25, 2022 Approved
AWS Command Line Interface (Install) 1.25.96 62 Friday, October 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.94 77 Wednesday, October 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.93 71 Tuesday, October 18, 2022 Approved
AWS Command Line Interface (Install) 1.25.92 65 Saturday, October 15, 2022 Approved
AWS Command Line Interface (Install) 1.25.89 79 Friday, October 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.87 53 Wednesday, October 5, 2022 Approved
AWS Command Line Interface (Install) 1.25.83 60 Wednesday, September 28, 2022 Approved
AWS Command Line Interface (Install) 1.25.82 68 Tuesday, September 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.78 77 Wednesday, September 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.77 69 Monday, September 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.75 76 Friday, September 16, 2022 Approved
AWS Command Line Interface (Install) 1.25.73 82 Wednesday, September 14, 2022 Approved
AWS Command Line Interface (Install) 1.25.68 74 Wednesday, September 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.66 81 Friday, September 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.64 89 Wednesday, August 31, 2022 Approved
AWS Command Line Interface (Install) 1.25.63 77 Tuesday, August 30, 2022 Approved
AWS Command Line Interface (Install) 1.25.62 63 Saturday, August 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.59 73 Wednesday, August 24, 2022 Approved
AWS Command Line Interface (Install) 1.25.58 87 Tuesday, August 23, 2022 Approved
AWS Command Line Interface (Install) 1.25.56 73 Friday, August 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.55 80 Thursday, August 18, 2022 Approved
AWS Command Line Interface (Install) 1.25.51 82 Saturday, August 13, 2022 Approved
AWS Command Line Interface (Install) 1.25.49 77 Thursday, August 11, 2022 Approved
AWS Command Line Interface (Install) 1.25.48 78 Wednesday, August 10, 2022 Approved
AWS Command Line Interface (Install) 1.25.46 79 Friday, August 5, 2022 Approved
AWS Command Line Interface (Install) 1.25.43 73 Tuesday, August 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.42 78 Monday, August 1, 2022 Approved
AWS Command Line Interface (Install) 1.25.40 85 Friday, July 29, 2022 Approved
AWS Command Line Interface (Install) 1.25.38 71 Wednesday, July 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.37 67 Tuesday, July 26, 2022 Approved
AWS Command Line Interface (Install) 1.25.35 60 Friday, July 22, 2022 Approved
AWS Command Line Interface (Install) 1.25.32 65 Tuesday, July 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.28 72 Wednesday, July 13, 2022 Approved
AWS Command Line Interface (Install) 1.25.25 65 Friday, July 8, 2022 Approved
AWS Command Line Interface (Install) 1.25.23 80 Wednesday, July 6, 2022 Approved
AWS Command Line Interface (Install) 1.25.22 77 Saturday, July 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.21 74 Friday, July 1, 2022 Approved
AWS Command Line Interface (Install) 1.25.19 73 Wednesday, June 29, 2022 Approved
AWS Command Line Interface (Install) 1.25.18 76 Tuesday, June 28, 2022 Approved
AWS Command Line Interface (Install) 1.25.16 76 Friday, June 24, 2022 Approved
AWS Command Line Interface (Install) 1.25.14 71 Wednesday, June 22, 2022 Approved
AWS Command Line Interface (Install) 1.25.13 80 Tuesday, June 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.10 88 Thursday, June 16, 2022 Approved
AWS Command Line Interface (Install) 1.25.9 60 Wednesday, June 15, 2022 Approved
AWS Command Line Interface (Install) 1.25.8 102 Tuesday, June 14, 2022 Approved
AWS Command Line Interface (Install) 1.25.7 79 Saturday, June 11, 2022 Approved
AWS Command Line Interface (Install) 1.25.6 72 Friday, June 10, 2022 Approved
AWS Command Line Interface (Install) 1.25.4 68 Wednesday, June 8, 2022 Approved
AWS Command Line Interface (Install) 1.25.3 79 Tuesday, June 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.2 78 Friday, June 3, 2022 Approved
AWS Command Line Interface (Install) 1.25.0 95 Wednesday, June 1, 2022 Approved
AWS Command Line Interface (Install) 1.24.9 78 Friday, May 27, 2022 Approved
AWS Command Line Interface (Install) 1.24.7 98 Wednesday, May 25, 2022 Approved
AWS Command Line Interface (Install) 1.24.6 93 Tuesday, May 24, 2022 Approved
AWS Command Line Interface (Install) 1.24.4 92 Friday, May 20, 2022 Approved
AWS Command Line Interface (Install) 1.24.2 93 Wednesday, May 18, 2022 Approved
AWS Command Line Interface (Install) 1.24.1 90 Tuesday, May 17, 2022 Approved
AWS Command Line Interface (Install) 1.23.13 90 Friday, May 13, 2022 Approved
AWS Command Line Interface (Install) 1.23.11 89 Wednesday, May 11, 2022 Approved
AWS Command Line Interface (Install) 1.23.6 117 Wednesday, May 4, 2022 Approved
AWS Command Line Interface (Install) 1.23.5 76 Tuesday, May 3, 2022 Approved
AWS Command Line Interface (Install) 1.23.3 75 Thursday, April 28, 2022 Approved
AWS Command Line Interface (Install) 1.23.1 84 Wednesday, April 27, 2022 Approved
AWS Command Line Interface (Install) 1.23.0 111 Tuesday, April 26, 2022 Approved
AWS Command Line Interface (Install) 1.22.101 85 Saturday, April 23, 2022 Approved
AWS Command Line Interface (Install) 1.22.98 75 Wednesday, April 20, 2022 Approved
AWS Command Line Interface (Install) 1.22.96 89 Friday, April 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.94 88 Wednesday, April 13, 2022 Approved
AWS Command Line Interface (Install) 1.22.93 86 Tuesday, April 12, 2022 Approved
AWS Command Line Interface (Install) 1.22.89 97 Wednesday, April 6, 2022 Approved
AWS Command Line Interface (Install) 1.22.88 84 Tuesday, April 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.86 89 Friday, April 1, 2022 Approved
AWS Command Line Interface (Install) 1.22.84 77 Wednesday, March 30, 2022 Approved
AWS Command Line Interface (Install) 1.22.81 82 Friday, March 25, 2022 Approved
AWS Command Line Interface (Install) 1.22.79 78 Wednesday, March 23, 2022 Approved
AWS Command Line Interface (Install) 1.22.78 80 Tuesday, March 22, 2022 Approved
AWS Command Line Interface (Install) 1.22.77 201 Saturday, March 19, 2022 Approved
AWS Command Line Interface (Install) 1.22.74 85 Tuesday, March 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.71 90 Thursday, March 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.69 86 Tuesday, March 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.68 84 Saturday, March 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.66 82 Thursday, March 3, 2022 Approved
AWS Command Line Interface (Install) 1.22.64 77 Tuesday, March 1, 2022 Approved
AWS Command Line Interface (Install) 1.22.63 80 Saturday, February 26, 2022 Approved
AWS Command Line Interface (Install) 1.22.61 82 Thursday, February 24, 2022 Approved
AWS Command Line Interface (Install) 1.22.59 91 Tuesday, February 22, 2022 Approved
AWS Command Line Interface (Install) 1.22.58 91 Saturday, February 19, 2022 Approved
AWS Command Line Interface (Install) 1.22.56 84 Thursday, February 17, 2022 Approved
AWS Command Line Interface (Install) 1.22.55 85 Tuesday, February 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.54 123 Saturday, February 12, 2022 Approved
AWS Command Line Interface (Install) 1.22.52 97 Thursday, February 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.50 83 Tuesday, February 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.49 75 Saturday, February 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.47 92 Thursday, February 3, 2022 Approved
AWS Command Line Interface (Install) 1.22.46 99 Saturday, January 29, 2022 Approved
AWS Command Line Interface (Install) 1.22.44 102 Thursday, January 27, 2022 Approved
AWS Command Line Interface (Install) 1.22.42 106 Monday, January 24, 2022 Approved
AWS Command Line Interface (Install) 1.22.39 106 Thursday, January 20, 2022 Approved
AWS Command Line Interface (Install) 1.22.37 117 Saturday, January 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.34 86 Thursday, January 13, 2022 Approved
AWS Command Line Interface (Install) 1.22.32 89 Monday, January 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.31 97 Saturday, January 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.29 85 Thursday, January 6, 2022 Approved
AWS Command Line Interface (Install) 1.22.25 183 Tuesday, December 21, 2021 Approved
AWS Command Line Interface (Install) 1.22.24 93 Tuesday, December 14, 2021 Approved
AWS Command Line Interface (Install) 1.22.22 94 Thursday, December 9, 2021 Approved
AWS Command Line Interface (Install) 1.22.21 77 Tuesday, December 7, 2021 Approved
AWS Command Line Interface (Install) 1.22.13 111 Thursday, November 25, 2021 Approved
AWS Command Line Interface (Install) 1.22.11 98 Tuesday, November 23, 2021 Approved
AWS Command Line Interface (Install) 1.22.10 78 Saturday, November 20, 2021 Approved
AWS Command Line Interface (Install) 1.22.8 106 Thursday, November 18, 2021 Approved
AWS Command Line Interface (Install) 1.22.6 103 Tuesday, November 16, 2021 Approved
AWS Command Line Interface (Install) 1.22.5 101 Saturday, November 13, 2021 Approved
AWS Command Line Interface (Install) 1.22.3 121 Thursday, November 11, 2021 Approved
AWS Command Line Interface (Install) 1.22.1 100 Tuesday, November 9, 2021 Approved
AWS Command Line Interface (Install) 1.21.12 171 Saturday, November 6, 2021 Approved
AWS Command Line Interface (Install) 1.21.0 96 Thursday, October 21, 2021 Approved
AWS Command Line Interface (Install) 1.20.64 92 Tuesday, October 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.63 98 Saturday, October 16, 2021 Approved
AWS Command Line Interface (Install) 1.20.61 105 Thursday, October 14, 2021 Approved
AWS Command Line Interface (Install) 1.20.58 218 Saturday, October 9, 2021 Approved
AWS Command Line Interface (Install) 1.20.57 121 Friday, October 8, 2021 Approved
AWS Command Line Interface (Install) 1.20.56 106 Thursday, October 7, 2021 Approved
AWS Command Line Interface (Install) 1.20.54 102 Tuesday, October 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.53 94 Saturday, October 2, 2021 Approved
AWS Command Line Interface (Install) 1.20.51 97 Thursday, September 30, 2021 Approved
AWS Command Line Interface (Install) 1.20.49 105 Tuesday, September 28, 2021 Approved
AWS Command Line Interface (Install) 1.20.48 103 Saturday, September 25, 2021 Approved
AWS Command Line Interface (Install) 1.20.46 99 Thursday, September 23, 2021 Approved
AWS Command Line Interface (Install) 1.20.44 121 Saturday, September 18, 2021 Approved
AWS Command Line Interface (Install) 1.20.40 135 Saturday, September 11, 2021 Approved
AWS Command Line Interface (Install) 1.20.38 110 Thursday, September 9, 2021 Approved
AWS Command Line Interface (Install) 1.20.36 96 Saturday, September 4, 2021 Approved
AWS Command Line Interface (Install) 1.20.34 117 Thursday, September 2, 2021 Approved
AWS Command Line Interface (Install) 1.20.32 105 Tuesday, August 31, 2021 Approved
AWS Command Line Interface (Install) 1.20.31 97 Saturday, August 28, 2021 Approved
AWS Command Line Interface (Install) 1.20.29 92 Thursday, August 26, 2021 Approved
AWS Command Line Interface (Install) 1.20.27 108 Tuesday, August 24, 2021 Approved
AWS Command Line Interface (Install) 1.20.26 150 Saturday, August 21, 2021 Approved
AWS Command Line Interface (Install) 1.20.24 104 Thursday, August 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.23 123 Tuesday, August 17, 2021 Approved
AWS Command Line Interface (Install) 1.20.22 89 Tuesday, August 17, 2021 Approved
AWS Command Line Interface (Install) 1.20.21 112 Saturday, August 14, 2021 Approved
AWS Command Line Interface (Install) 1.20.19 108 Thursday, August 12, 2021 Approved
AWS Command Line Interface (Install) 1.20.17 105 Tuesday, August 10, 2021 Approved
AWS Command Line Interface (Install) 1.20.16 111 Saturday, August 7, 2021 Approved
AWS Command Line Interface (Install) 1.20.15 122 Thursday, August 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.14 111 Thursday, August 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.12 97 Tuesday, August 3, 2021 Approved
AWS Command Line Interface (Install) 1.20.9 105 Thursday, July 29, 2021 Approved
AWS Command Line Interface (Install) 1.20.7 114 Tuesday, July 27, 2021 Approved
AWS Command Line Interface (Install) 1.20.6 116 Saturday, July 24, 2021 Approved
AWS Command Line Interface (Install) 1.20.4 97 Thursday, July 22, 2021 Approved
AWS Command Line Interface (Install) 1.20.2 104 Monday, July 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.1 116 Saturday, July 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.111 86 Wednesday, July 14, 2021 Approved
AWS Command Line Interface (Install) 1.19.110 107 Tuesday, July 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.109 107 Saturday, July 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.107 93 Thursday, July 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.105 103 Friday, July 2, 2021 Approved
AWS Command Line Interface (Install) 1.19.103 1177 Thursday, July 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.102 117 Tuesday, June 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.101 104 Saturday, June 26, 2021 Approved
AWS Command Line Interface (Install) 1.19.99 120 Thursday, June 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.98 92 Tuesday, June 22, 2021 Approved
AWS Command Line Interface (Install) 1.19.96 106 Thursday, June 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.94 109 Tuesday, June 15, 2021 Approved
AWS Command Line Interface (Install) 1.19.93 107 Saturday, June 12, 2021 Approved
AWS Command Line Interface (Install) 1.19.92 103 Thursday, June 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.91 109 Thursday, June 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.89 107 Tuesday, June 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.88 99 Saturday, June 5, 2021 Approved
AWS Command Line Interface (Install) 1.19.86 102 Thursday, June 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.84 93 Saturday, May 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.82 101 Thursday, May 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.79 110 Tuesday, May 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.78 100 Saturday, May 22, 2021 Approved
AWS Command Line Interface (Install) 1.19.77 96 Friday, May 21, 2021 Approved
AWS Command Line Interface (Install) 1.19.76 99 Thursday, May 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.75 111 Wednesday, May 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.74 109 Tuesday, May 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.72 103 Friday, May 14, 2021 Approved
AWS Command Line Interface (Install) 1.19.70 110 Tuesday, May 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.69 116 Saturday, May 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.67 121 Thursday, May 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.64 117 Monday, May 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.62 121 Saturday, May 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.60 95 Thursday, April 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.58 105 Tuesday, April 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.57 92 Saturday, April 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.56 103 Friday, April 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.54 106 Tuesday, April 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.52 104 Thursday, April 15, 2021 Approved
AWS Command Line Interface (Install) 1.19.50 89 Tuesday, April 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.49 105 Saturday, April 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.45 110 Tuesday, April 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.44 96 Saturday, April 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.42 94 Thursday, April 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.40 93 Monday, March 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.39 116 Saturday, March 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.37 115 Thursday, March 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.35 124 Wednesday, March 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.34 112 Tuesday, March 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.32 100 Friday, March 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.30 124 Thursday, March 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.29 101 Wednesday, March 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.28 138 Tuesday, March 16, 2021 Approved
AWS Command Line Interface (Install) 1.19.27 116 Saturday, March 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.26 4336 Thursday, March 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.25 117 Thursday, March 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.23 121 Tuesday, March 9, 2021 Approved
AWS Command Line Interface (Install) 1.19.22 103 Saturday, March 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.21 115 Friday, March 5, 2021 Approved
AWS Command Line Interface (Install) 1.19.20 119 Thursday, March 4, 2021 Approved
AWS Command Line Interface (Install) 1.19.19 131 Wednesday, March 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.17 127 Saturday, February 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.16 121 Friday, February 26, 2021 Approved
AWS Command Line Interface (Install) 1.19.15 110 Thursday, February 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.13 95 Tuesday, February 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.12 113 Saturday, February 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.11 109 Friday, February 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.10 119 Thursday, February 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.8 99 Tuesday, February 16, 2021 Approved
AWS Command Line Interface (Install) 1.19.7 129 Saturday, February 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.4 139 Tuesday, February 9, 2021 Approved
AWS Command Line Interface (Install) 1.19.3 214 Saturday, February 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.1 139 Thursday, February 4, 2021 Approved
AWS Command Line Interface (Install) 1.18.223 121 Saturday, January 30, 2021 Approved
AWS Command Line Interface (Install) 1.18.221 123 Thursday, January 28, 2021 Approved
AWS Command Line Interface (Install) 1.18.220 125 Wednesday, January 27, 2021 Approved
AWS Command Line Interface (Install) 1.18.219 145 Saturday, January 23, 2021 Approved
AWS Command Line Interface (Install) 1.18.216 108 Saturday, January 16, 2021 Approved
AWS Command Line Interface (Install) 1.18.214 135 Thursday, January 14, 2021 Approved
AWS Command Line Interface (Install) 1.18.212 128 Tuesday, January 12, 2021 Approved
AWS Command Line Interface (Install) 1.18.210 120 Thursday, January 7, 2021 Approved
AWS Command Line Interface (Install) 1.18.208 130 Tuesday, January 5, 2021 Approved
AWS Command Line Interface (Install) 1.18.207 110 Friday, January 1, 2021 Approved
AWS Command Line Interface (Install) 1.18.206 122 Thursday, December 31, 2020 Approved
AWS Command Line Interface (Install) 1.18.205 123 Tuesday, December 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.204 110 Monday, December 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.201 113 Tuesday, December 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.200 129 Friday, December 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.197 110 Tuesday, December 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.196 116 Tuesday, December 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.195 1895 Saturday, December 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.193 103 Wednesday, December 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.191 106 Tuesday, December 8, 2020 Approved
AWS Command Line Interface (Install) 1.18.190 120 Saturday, December 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.184 129 Tuesday, November 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.183 123 Saturday, November 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.181 141 Thursday, November 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.179 132 Tuesday, November 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.178 137 Saturday, November 14, 2020 Approved
AWS Command Line Interface (Install) 1.18.176 110 Thursday, November 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.174 120 Monday, November 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.173 128 Saturday, November 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.171 194 Thursday, November 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.170 138 Tuesday, November 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.167 143 Thursday, October 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.165 255 Tuesday, October 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.164 151 Saturday, October 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.162 147 Thursday, October 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.160 132 Tuesday, October 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.159 114 Saturday, October 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.157 193 Saturday, October 10, 2020 Approved
AWS Command Line Interface (Install) 1.18.153 133 Tuesday, October 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.152 155 Saturday, October 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.150 137 Thursday, October 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.148 134 Tuesday, September 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.147 159 Saturday, September 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.146 115 Thursday, September 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.144 115 Wednesday, September 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.143 131 Tuesday, September 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.142 125 Saturday, September 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.141 418 Thursday, September 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.140 138 Thursday, September 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.138 112 Tuesday, September 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.137 128 Saturday, September 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.133 177 Saturday, September 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.131 138 Thursday, September 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.129 145 Tuesday, September 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.128 147 Saturday, August 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.126 186 Thursday, August 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.125 148 Tuesday, August 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.123 159 Thursday, August 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.121 188 Tuesday, August 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.120 142 Saturday, August 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.119 132 Thursday, August 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.116 7164 Monday, August 10, 2020 Approved
AWS Command Line Interface (Install) 1.18.115 150 Saturday, August 8, 2020 Approved
AWS Command Line Interface (Install) 1.18.113 189 Thursday, August 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.111 184 Tuesday, August 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.110 190 Saturday, August 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.108 168 Thursday, July 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.106 186 Tuesday, July 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.105 187 Saturday, July 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.103 222 Thursday, July 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.101 1305 Tuesday, July 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.100 187 Saturday, July 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.96 210 Thursday, July 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.94 235 Tuesday, July 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.92 210 Thursday, July 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.90 211 Tuesday, June 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.89 257 Saturday, June 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.87 217 Thursday, June 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.85 220 Tuesday, June 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.84 248 Saturday, June 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.82 206 Thursday, June 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.80 296 Tuesday, June 16, 2020 Approved
AWS Command Line Interface (Install) 1.18.79 229 Saturday, June 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.75 192 Tuesday, June 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.74 231 Saturday, June 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.72 231 Thursday, June 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.70 225 Tuesday, June 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.69 6585 Friday, May 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.68 243 Thursday, May 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.65 30193 Thursday, May 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.63 199 Wednesday, May 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.62 242 Tuesday, May 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.61 220 Saturday, May 16, 2020 Approved
AWS Command Line Interface (Install) 1.18.57 206 Tuesday, May 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.56 269 Saturday, May 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.54 226 Thursday, May 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.52 219 Tuesday, May 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.51 291 Saturday, May 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.50 182 Friday, May 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.49 216 Thursday, April 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.46 391 Saturday, April 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.43 235 Wednesday, April 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.42 562 Tuesday, April 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.41 211 Friday, April 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.39 238 Thursday, April 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.36 374 Saturday, April 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.35 218 Friday, April 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.34 192 Thursday, April 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.31 240 Saturday, March 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.30 247 Thursday, March 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.29 199 Thursday, March 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.28 320 Wednesday, March 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.26 258 Saturday, March 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.25 247 Friday, March 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.24 232 Thursday, March 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.22 208 Tuesday, March 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.21 269 Saturday, March 14, 2020 Approved
AWS Command Line Interface (Install) 1.18.20 232 Friday, March 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.19 235 Thursday, March 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.16 187 Saturday, March 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.15 176 Friday, March 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.14 244 Thursday, March 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.11 22628 Saturday, February 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.9 5895 Friday, February 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.6 3733 Tuesday, February 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.5 4434 Friday, February 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.4 1233 Friday, February 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.3 1425 Thursday, February 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.2 1406 Wednesday, February 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.1 1677 Tuesday, February 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.0 1993 Saturday, February 15, 2020 Approved
AWS Command Line Interface (Install) 1.17.17 4235 Friday, February 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.16 3009 Thursday, February 13, 2020 Approved
AWS Command Line Interface (Install) 1.17.15 1560 Wednesday, February 12, 2020 Approved
AWS Command Line Interface (Install) 1.17.13 3065 Saturday, February 8, 2020 Approved
AWS Command Line Interface (Install) 1.17.12 1245 Friday, February 7, 2020 Approved
AWS Command Line Interface (Install) 1.17.11 180 Thursday, February 6, 2020 Approved
AWS Command Line Interface (Install) 1.17.10 198 Wednesday, February 5, 2020 Approved
AWS Command Line Interface (Install) 1.17.9 8291 Saturday, January 25, 2020 Approved
AWS Command Line Interface (Install) 1.17.8 963 Friday, January 24, 2020 Approved
AWS Command Line Interface (Install) 1.17.7 3054 Wednesday, January 22, 2020 Approved
AWS Command Line Interface (Install) 1.17.6 294 Tuesday, January 21, 2020 Approved
AWS Command Line Interface (Install) 1.17.5 2583 Saturday, January 18, 2020 Approved
AWS Command Line Interface (Install) 1.17.4 1225 Friday, January 17, 2020 Approved
AWS Command Line Interface (Install) 1.17.3 1121 Thursday, January 16, 2020 Approved
AWS Command Line Interface (Install) 1.17.2 2045 Tuesday, January 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.1 1199 Tuesday, January 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.0 2051 Saturday, January 11, 2020 Approved
AWS Command Line Interface (Install) 1.16.314 1405 Friday, January 10, 2020 Approved
AWS Command Line Interface (Install) 1.16.313 1431 Thursday, January 9, 2020 Approved
AWS Command Line Interface (Install) 1.16.312 1132 Wednesday, January 8, 2020 Approved
AWS Command Line Interface (Install) 1.16.311 1363 Tuesday, January 7, 2020 Approved
AWS Command Line Interface (Install) 1.16.310 199 Friday, January 3, 2020 Approved
AWS Command Line Interface (Install) 1.16.309 1451 Tuesday, December 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.308 5844 Saturday, December 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.307 1079 Friday, December 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.305 2051 Wednesday, December 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.303 2548 Saturday, December 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.302 1195 Friday, December 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.301 1547 Thursday, December 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.300 1310 Wednesday, December 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.299 1558 Tuesday, December 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.298 2573 Friday, December 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.297 1321 Thursday, December 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.296 1367 Wednesday, December 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.294 836 Tuesday, December 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.292 4781 Wednesday, November 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.291 1384 Tuesday, November 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.290 2104 Saturday, November 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.289 1221 Friday, November 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.287 1320 Thursday, November 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.286 1768 Wednesday, November 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.284 1569 Tuesday, November 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.283 2227 Saturday, November 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.282 1289 Friday, November 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.281 1580 Thursday, November 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.280 1532 Wednesday, November 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.279 1483 Tuesday, November 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.278 2102 Saturday, November 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.277 2689 Friday, November 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.276 1412 Thursday, November 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.274 1658 Tuesday, November 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.273 1314 Tuesday, November 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.272 2110 Saturday, November 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.271 1027 Friday, November 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.270 1518 Thursday, October 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.269 1589 Wednesday, October 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.268 1639 Tuesday, October 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.266 2900 Friday, October 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.265 1823 Thursday, October 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.264 1561 Wednesday, October 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.263 3580 Friday, October 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.262 744 Friday, October 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.261 2370 Thursday, October 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.260 1587 Wednesday, October 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.259 1523 Tuesday, October 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.258 1975 Saturday, October 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.257 1350 Friday, October 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.256 2082 Thursday, October 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.255 1732 Wednesday, October 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.254 1410 Tuesday, October 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.253 2041 Saturday, October 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.252 1539 Friday, October 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.251 2160 Thursday, October 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.250 1653 Wednesday, October 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.249 1684 Tuesday, October 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.248 2391 Saturday, September 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.247 1164 Friday, September 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.246 1856 Wednesday, September 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.245 1464 Wednesday, September 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.244 1555 Tuesday, September 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.243 1875 Saturday, September 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.242 1268 Friday, September 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.241 2359 Thursday, September 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.240 1513 Wednesday, September 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.239 1172 Tuesday, September 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.238 7189 Friday, September 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.237 1839 Thursday, September 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.236 1412 Wednesday, September 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.235 1343 Tuesday, September 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.234 1820 Saturday, September 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.233 1243 Friday, September 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.232 1876 Thursday, September 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.231 1289 Wednesday, September 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.230 2530 Saturday, August 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.229 1908 Friday, August 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.228 2843 Thursday, August 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.227 2380 Wednesday, August 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.226 1293 Tuesday, August 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.225 2051 Friday, August 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.224 1105 Friday, August 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.223 1175 Thursday, August 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.222 1254 Wednesday, August 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.221 2612 Tuesday, August 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.220 1889 Saturday, August 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.219 1134 Friday, August 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.218 1209 Thursday, August 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.217 1698 Wednesday, August 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.216 1152 Tuesday, August 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.215 1685 Saturday, August 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.214 1044 Friday, August 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.213 2240 Thursday, August 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.212 568 Wednesday, August 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.211 1730 Tuesday, August 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.210 1688 Saturday, August 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.209 5181 Wednesday, July 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.208 1028 Tuesday, July 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.207 1640 Saturday, July 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.206 1202 Friday, July 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.205 1418 Thursday, July 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.204 1221 Tuesday, July 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.203 1220 Tuesday, July 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.202 1172 Monday, July 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.201 856 Saturday, July 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.200 929 Friday, July 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.199 1132 Thursday, July 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.198 3133 Saturday, July 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.197 978 Friday, July 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.196 1049 Thursday, July 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.195 1067 Wednesday, July 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.194 1277 Tuesday, July 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.193 2759 Thursday, July 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.192 1002 Wednesday, July 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.191 1001 Tuesday, July 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.190 1572 Saturday, June 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.189 887 Friday, June 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.188 1000 Thursday, June 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.186 1225 Wednesday, June 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.185 1054 Tuesday, June 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.184 2843 Saturday, June 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.183 1017 Friday, June 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.182 882 Thursday, June 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.181 1383 Wednesday, June 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.180 1473 Tuesday, June 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.179 1712 Saturday, June 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.178 909 Friday, June 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.177 2303 Thursday, June 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.176 1610 Wednesday, June 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.175 1514 Tuesday, June 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.174 1899 Saturday, June 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.173 1084 Friday, June 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.172 1288 Thursday, June 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.171 1298 Wednesday, June 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.170 1439 Tuesday, June 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.169 3001 Friday, May 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.168 1184 Thursday, May 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.167 1085 Wednesday, May 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.166 2339 Saturday, May 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.165 1054 Friday, May 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.164 12795 Thursday, May 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.163 1270 Wednesday, May 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.162 1296 Monday, May 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.161 1793 Saturday, May 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.160 1146 Friday, May 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.159 1034 Thursday, May 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.158 1129 Wednesday, May 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.157 1400 Tuesday, May 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.156 1855 Saturday, May 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.155 1699 Thursday, May 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.154 1262 Wednesday, May 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.153 1331 Tuesday, May 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.152 2639 Saturday, May 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.151 1455 Friday, May 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.150 1240 Thursday, May 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.149 1042 Wednesday, May 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.148 1250 Tuesday, April 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.147 1985 Saturday, April 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.146 1233 Friday, April 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.145 1514 Thursday, April 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.144 2987 Saturday, April 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.143 1103 Friday, April 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.142 1058 Thursday, April 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.141 1129 Wednesday, April 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.140 10587 Saturday, April 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.139 1128 Friday, April 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.138 1249 Thursday, April 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.137 785 Wednesday, April 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.136 1490 Tuesday, April 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.135 2021 Saturday, March 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.134 1184 Friday, March 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.133 1718 Thursday, March 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.132 1586 Tuesday, March 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.131 1205 Tuesday, March 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.130 1870 Saturday, March 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.129 972 Friday, March 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.128 1178 Thursday, March 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.127 941 Wednesday, March 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.126 1643 Tuesday, March 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.125 2640 Friday, March 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.124 1228 Thursday, March 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.123 438 Wednesday, March 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.122 1951 Tuesday, March 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.121 1944 Saturday, March 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.120 1048 Friday, March 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.119 1068 Thursday, March 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.118 1190 Wednesday, March 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.117 1580 Tuesday, March 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.116 1677 Saturday, March 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.115 1403 Friday, March 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.114 4699 Thursday, February 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.113 1531 Wednesday, February 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.112 1221 Tuesday, February 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.111 1681 Saturday, February 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.110 968 Friday, February 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.109 1336 Thursday, February 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.108 1228 Wednesday, February 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.107 1252 Tuesday, February 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.106 1936 Saturday, February 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.105 1249 Friday, February 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.104 1189 Thursday, February 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.103 878 Wednesday, February 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.102 1277 Tuesday, February 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.101 1531 Saturday, February 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.99 1734 Thursday, February 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.98 1279 Wednesday, February 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.97 1193 Tuesday, February 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.96 5910 Saturday, January 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.94 1767 Thursday, January 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.93 1798 Tuesday, January 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.92 1733 Saturday, January 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.91 1064 Friday, January 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.90 1258 Thursday, January 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.89 1870 Tuesday, January 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.88 1621 Saturday, January 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.87 955 Friday, January 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.86 989 Thursday, January 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.85 1757 Tuesday, January 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.84 1526 Saturday, January 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.81 5034 Saturday, December 22, 2018 Approved
AWS Command Line Interface (Install) 1.16.80 886 Friday, December 21, 2018 Approved
AWS Command Line Interface (Install) 1.16.79 943 Thursday, December 20, 2018 Approved
AWS Command Line Interface (Install) 1.16.78 1113 Wednesday, December 19, 2018 Approved
AWS Command Line Interface (Install) 1.16.77 942 Tuesday, December 18, 2018 Approved
AWS Command Line Interface (Install) 1.16.76 1505 Saturday, December 15, 2018 Approved
AWS Command Line Interface (Install) 1.16.75 1088 Friday, December 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.74 1210 Thursday, December 13, 2018 Approved
AWS Command Line Interface (Install) 1.16.73 1192 Wednesday, December 12, 2018 Approved
AWS Command Line Interface (Install) 1.16.72 2559 Saturday, December 8, 2018 Approved
AWS Command Line Interface (Install) 1.16.71 1059 Friday, December 7, 2018 Approved
AWS Command Line Interface (Install) 1.16.70 1449 Thursday, December 6, 2018 Approved
AWS Command Line Interface (Install) 1.16.69 1353 Wednesday, December 5, 2018 Approved
AWS Command Line Interface (Install) 1.16.68 2142 Tuesday, December 4, 2018 Approved
AWS Command Line Interface (Install) 1.16.67 3016 Friday, November 30, 2018 Approved
AWS Command Line Interface (Install) 1.16.65 1086 Thursday, November 29, 2018 Approved
AWS Command Line Interface (Install) 1.16.63 1285 Wednesday, November 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.60 4029 Thursday, November 22, 2018 Approved
AWS Command Line Interface (Install) 1.16.59 792 Wednesday, November 21, 2018 Approved
AWS Command Line Interface (Install) 1.16.58 1524 Tuesday, November 20, 2018 Approved
AWS Command Line Interface (Install) 1.16.57 2130 Saturday, November 17, 2018 Approved
AWS Command Line Interface (Install) 1.16.56 1256 Friday, November 16, 2018 Approved
AWS Command Line Interface (Install) 1.16.55 1307 Thursday, November 15, 2018 Approved
AWS Command Line Interface (Install) 1.16.54 1282 Wednesday, November 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.53 1435 Tuesday, November 13, 2018 Approved
AWS Command Line Interface (Install) 1.16.52 1991 Saturday, November 10, 2018 Approved
AWS Command Line Interface (Install) 1.16.51 800 Friday, November 9, 2018 Approved
AWS Command Line Interface (Install) 1.16.50 691 Thursday, November 8, 2018 Approved
AWS Command Line Interface (Install) 1.16.48 2477 Tuesday, November 6, 2018 Approved
AWS Command Line Interface (Install) 1.16.47 1820 Saturday, November 3, 2018 Approved
AWS Command Line Interface (Install) 1.16.46 1058 Friday, November 2, 2018 Approved
AWS Command Line Interface (Install) 1.16.45 1153 Thursday, November 1, 2018 Approved
AWS Command Line Interface (Install) 1.16.44 1166 Wednesday, October 31, 2018 Approved
AWS Command Line Interface (Install) 1.16.43 2296 Sunday, October 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.42 1543 Friday, October 26, 2018 Approved
AWS Command Line Interface (Install) 1.16.41 1072 Thursday, October 25, 2018 Approved
AWS Command Line Interface (Install) 1.16.40 1128 Wednesday, October 24, 2018 Approved
AWS Command Line Interface (Install) 1.16.39 1023 Tuesday, October 23, 2018 Approved
AWS Command Line Interface (Install) 1.16.38 1165 Sunday, October 21, 2018 Approved
AWS Command Line Interface (Install) 1.16.37 1580 Friday, October 19, 2018 Approved
AWS Command Line Interface (Install) 1.16.36 1089 Thursday, October 18, 2018 Approved
AWS Command Line Interface (Install) 1.16.35 1289 Wednesday, October 17, 2018 Approved
AWS Command Line Interface (Install) 1.16.34 1028 Tuesday, October 16, 2018 Approved
AWS Command Line Interface (Install) 1.16.33 1087 Sunday, October 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.32 1570 Friday, October 12, 2018 Approved
AWS Command Line Interface (Install) 1.16.29 2453 Tuesday, October 9, 2018 Approved
AWS Command Line Interface (Install) 1.16.28 1100 Monday, October 8, 2018 Approved
AWS Command Line Interface (Install) 1.16.27 1579 Friday, October 5, 2018 Approved
AWS Command Line Interface (Install) 1.16.26 1617 Wednesday, October 3, 2018 Approved
AWS Command Line Interface (Install) 1.16.25 1089 Tuesday, October 2, 2018 Approved
AWS Command Line Interface (Install) 1.16.24 1070 Monday, October 1, 2018 Approved
AWS Command Line Interface (Install) 1.16.23 1465 Friday, September 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.22 1016 Thursday, September 27, 2018 Approved
AWS Command Line Interface (Install) 1.16.21 1068 Wednesday, September 26, 2018 Approved
AWS Command Line Interface (Install) 1.16.20 1105 Tuesday, September 25, 2018 Approved
AWS Command Line Interface (Install) 1.16.19 1071 Monday, September 24, 2018 Approved
AWS Command Line Interface (Install) 1.16.18 1992 Friday, September 21, 2018 Approved
AWS Command Line Interface (Install) 1.16.17 1330 Thursday, September 20, 2018 Approved
AWS Command Line Interface (Install) 1.16.16 1128 Wednesday, September 19, 2018 Approved
AWS Command Line Interface (Install) 1.16.15 1246 Tuesday, September 18, 2018 Approved
AWS Command Line Interface (Install) 1.16.14 2558 Friday, September 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.13 1197 Thursday, September 13, 2018 Approved
AWS Command Line Interface (Install) 1.16.11 1778 Tuesday, September 11, 2018 Approved
AWS Command Line Interface (Install) 1.16.10 1305 Monday, September 10, 2018 Approved
AWS Command Line Interface (Install) 1.16.9 1776 Friday, September 7, 2018 Approved
AWS Command Line Interface (Install) 1.16.8 1052 Thursday, September 6, 2018 Approved
AWS Command Line Interface (Install) 1.16.7 1077 Wednesday, September 5, 2018 Approved
AWS Command Line Interface (Install) 1.16.6 1827 Monday, September 3, 2018 Approved
AWS Command Line Interface (Install) 1.16.5 1955 Friday, August 31, 2018 Approved
AWS Command Line Interface (Install) 1.16.4 1076 Thursday, August 30, 2018 Approved
AWS Command Line Interface (Install) 1.16.3 728 Wednesday, August 29, 2018 Approved
AWS Command Line Interface (Install) 1.16.2 523 Tuesday, August 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.1 1931 Monday, August 27, 2018 Approved
AWS Command Line Interface (Install) 1.15.85 1657 Friday, August 24, 2018 Approved
AWS Command Line Interface (Install) 1.15.84 1858 Thursday, August 23, 2018 Approved
AWS Command Line Interface (Install) 1.15.83 670 Wednesday, August 22, 2018 Approved
AWS Command Line Interface (Install) 1.15.82 1406 Tuesday, August 21, 2018 Approved
AWS Command Line Interface (Install) 1.15.81 1080 Monday, August 20, 2018 Approved
AWS Command Line Interface (Install) 1.15.80 1627 Friday, August 17, 2018 Approved
AWS Command Line Interface (Install) 1.15.79 973 Thursday, August 16, 2018 Approved
AWS Command Line Interface (Install) 1.15.78 968 Wednesday, August 15, 2018 Approved
AWS Command Line Interface (Install) 1.15.77 890 Tuesday, August 14, 2018 Approved
AWS Command Line Interface (Install) 1.15.76 989 Monday, August 13, 2018 Approved
AWS Command Line Interface (Install) 1.15.75 1615 Friday, August 10, 2018 Approved
AWS Command Line Interface (Install) 1.15.74 990 Thursday, August 9, 2018 Approved
AWS Command Line Interface (Install) 1.15.73 971 Wednesday, August 8, 2018 Approved
AWS Command Line Interface (Install) 1.15.72 983 Tuesday, August 7, 2018 Approved
AWS Command Line Interface (Install) 1.15.71 1013 Monday, August 6, 2018 Approved
AWS Command Line Interface (Install) 1.15.70 1447 Friday, August 3, 2018 Approved
AWS Command Line Interface (Install) 1.15.69 991 Thursday, August 2, 2018 Approved
AWS Command Line Interface (Install) 1.15.68 1015 Wednesday, August 1, 2018 Approved
AWS Command Line Interface (Install) 1.15.67 1017 Tuesday, July 31, 2018 Approved
AWS Command Line Interface (Install) 1.15.66 2270 Friday, July 27, 2018 Approved
AWS Command Line Interface (Install) 1.15.65 1064 Thursday, July 26, 2018 Approved
AWS Command Line Interface (Install) 1.15.64 1032 Wednesday, July 25, 2018 Approved
AWS Command Line Interface (Install) 1.15.63 2036 Monday, July 23, 2018 Approved
AWS Command Line Interface (Install) 1.15.62 1555 Friday, July 20, 2018 Approved
AWS Command Line Interface (Install) 1.15.61 1114 Thursday, July 19, 2018 Approved
AWS Command Line Interface (Install) 1.15.60 1068 Wednesday, July 18, 2018 Approved
AWS Command Line Interface (Install) 1.15.59 1534 Monday, July 16, 2018 Approved
AWS Command Line Interface (Install) 1.15.58 1407 Friday, July 13, 2018 Approved
AWS Command Line Interface (Install) 1.15.57 1009 Thursday, July 12, 2018 Approved
AWS Command Line Interface (Install) 1.15.56 1000 Wednesday, July 11, 2018 Approved
AWS Command Line Interface (Install) 1.15.55 934 Tuesday, July 10, 2018 Approved
AWS Command Line Interface (Install) 1.15.53 1024 Sunday, July 8, 2018 Approved
AWS Command Line Interface (Install) 1.15.52 1326 Friday, July 6, 2018 Approved
AWS Command Line Interface 1.15.51 1588 Tuesday, July 3, 2018 Approved
AWS Command Line Interface 1.15.50 945 Monday, July 2, 2018 Approved
AWS Command Line Interface (Install) 1.15.49 1943 Friday, June 29, 2018 Approved
AWS Command Line Interface (Install) 1.15.47 945 Thursday, June 28, 2018 Approved
AWS Command Line Interface (Install) 1.15.46 501 Wednesday, June 27, 2018 Approved
AWS Command Line Interface (Install) 1.15.45 506 Monday, June 25, 2018 Approved
AWS Command Line Interface (Install) 1.15.44 728 Friday, June 22, 2018 Approved
AWS Command Line Interface (Install) 1.15.42 3062 Thursday, June 21, 2018 Approved
AWS Command Line Interface (Install) 1.15.41 990 Wednesday, June 20, 2018 Approved
AWS Command Line Interface (Install) 1.15.40 1455 Monday, June 18, 2018 Approved
AWS Command Line Interface (Install) 1.15.39 1466 Friday, June 15, 2018 Approved
AWS Command Line Interface (Install) 1.15.37 1545 Wednesday, June 13, 2018 Approved
AWS Command Line Interface (Install) 1.15.35 1504 Monday, June 11, 2018 Approved
AWS Command Line Interface (Install) 1.15.34 1604 Friday, June 8, 2018 Approved
AWS Command Line Interface (Install) 1.15.33 1863 Wednesday, June 6, 2018 Approved
AWS Command Line Interface ((Install) 1.15.31 2188 Saturday, June 2, 2018 Approved
AWS Command Line Interface 1.15.20 6984 Tuesday, May 15, 2018 Approved
AWS Command Line Interface 1.15.2 15389 Friday, April 6, 2018 Approved
AWS Command Line Interface 1.15.1 779 Thursday, April 5, 2018 Approved
AWS Command Line Interface 1.15.0 721 Wednesday, April 4, 2018 Approved
AWS Command Line Interface 1.14.70 825 Tuesday, April 3, 2018 Approved
AWS Command Line Interface 1.14.69 314 Tuesday, April 3, 2018 Approved
AWS Command Line Interface 1.14.68 299 Friday, March 30, 2018 Approved
AWS Command Line Interface 1.14.67 1571 Friday, March 30, 2018 Approved
AWS Command Line Interface 1.14.43 11596 Tuesday, February 20, 2018 Approved
AWS Command Line Interface 1.14.42 871 Monday, February 19, 2018 Approved
AWS Command Line Interface 1.14.41 838 Sunday, February 18, 2018 Approved
AWS Command Line Interface 1.14.40 898 Thursday, February 15, 2018 Approved
AWS Command Line Interface 1.14.39 718 Thursday, February 15, 2018 Approved
AWS Command Line Interface 1.14.37 1206 Tuesday, February 13, 2018 Approved
AWS Command Line Interface 1.14.36 1169 Saturday, February 10, 2018 Approved
AWS Command Line Interface 1.14.35 770 Thursday, February 8, 2018 Approved
AWS Command Line Interface 1.14.34 1028 Wednesday, February 7, 2018 Approved
AWS Command Line Interface 1.14.32 2752 Tuesday, January 30, 2018 Approved
AWS Command Line Interface 1.14.30 2490 Tuesday, January 23, 2018 Approved
AWS Command Line Interface 1.14.29 445 Monday, January 22, 2018 Approved
AWS Command Line Interface 1.14.24 3067 Saturday, January 13, 2018 Approved
AWS Command Line Interface 1.14.23 845 Thursday, January 11, 2018 Approved
AWS Command Line Interface 1.14.22 793 Thursday, January 11, 2018 Approved
AWS Command Line Interface 1.14.19 2234 Saturday, January 6, 2018 Approved
AWS Command Line Interface 1.14.18 1493 Wednesday, January 3, 2018 Approved
AWS Command Line Interface 1.14.16 1529 Friday, December 22, 2017 Approved
AWS Command Line Interface 1.14.15 580 Friday, December 22, 2017 Approved
AWS Command Line Interface 1.14.12 1126 Tuesday, December 19, 2017 Approved
AWS Command Line Interface 1.14.11 849 Saturday, December 16, 2017 Approved
AWS Command Line Interface 1.14.10 732 Thursday, December 14, 2017 Approved
AWS Command Line Interface 1.14.9 1003 Tuesday, December 12, 2017 Approved
AWS Command Line Interface 1.14.8 656 Tuesday, December 12, 2017 Approved
AWS Command Line Interface 1.14.7 910 Saturday, December 9, 2017 Approved
AWS Command Line Interface 1.14.6 678 Thursday, December 7, 2017 Approved
AWS Command Line Interface 1.14.5 509 Thursday, December 7, 2017 Approved
AWS Command Line Interface 1.14.3 1140 Monday, December 4, 2017 Approved
AWS Command Line Interface 1.14.2 1062 Thursday, November 30, 2017 Approved
AWS Command Line Interface 1.14.1 565 Thursday, November 30, 2017 Approved
AWS Command Line Interface 1.14.0 466 Wednesday, November 29, 2017 Approved
AWS Command Line Interface 1.13.0 590 Wednesday, November 29, 2017 Approved
AWS Command Line Interface 1.12.2 960 Monday, November 27, 2017 Approved
AWS Command Line Interface 1.12.1 950 Thursday, November 23, 2017 Approved
AWS Command Line Interface 1.12.0 606 Wednesday, November 22, 2017 Approved
AWS Command Line Interface 1.11.190 746 Tuesday, November 21, 2017 Approved
AWS Command Line Interface 1.11.189 851 Saturday, November 18, 2017 Approved
AWS Command Line Interface 1.11.188 670 Friday, November 17, 2017 Approved
AWS Command Line Interface 1.11.187 664 Wednesday, November 15, 2017 Approved
AWS Command Line Interface 1.11.186 637 Wednesday, November 15, 2017 Approved
AWS Command Line Interface 1.11.185 1193 Thursday, November 9, 2017 Approved
AWS Command Line Interface 1.11.184 811 Thursday, November 9, 2017 Approved
AWS Command Line Interface 1.11.183 701 Tuesday, November 7, 2017 Approved
AWS Command Line Interface 1.11.181 1077 Saturday, November 4, 2017 Approved
AWS Command Line Interface 1.11.180 664 Friday, November 3, 2017 Approved
AWS Command Line Interface 1.11.179 672 Thursday, November 2, 2017 Approved
AWS Command Line Interface 1.11.178 1550 Friday, October 27, 2017 Approved
AWS Command Line Interface 1.11.177 856 Wednesday, October 25, 2017 Approved
AWS Command Line Interface 1.11.176 697 Tuesday, October 24, 2017 Approved
AWS Command Line Interface 1.11.175 891 Friday, October 20, 2017 Approved
AWS Command Line Interface 1.11.174 712 Thursday, October 19, 2017 Approved
AWS Command Line Interface 1.11.173 691 Wednesday, October 18, 2017 Approved
AWS Command Line Interface 1.11.172 798 Tuesday, October 17, 2017 Approved
AWS Command Line Interface 1.11.171 749 Monday, October 16, 2017 Approved
AWS Command Line Interface 1.11.170 1090 Thursday, October 12, 2017 Approved
AWS Command Line Interface 1.11.169 773 Wednesday, October 11, 2017 Approved
AWS Command Line Interface 1.11.167 1558 Saturday, October 7, 2017 Approved
AWS Command Line Interface 1.11.166 610 Thursday, October 5, 2017 Approved
AWS Command Line Interface 1.11.165 609 Thursday, October 5, 2017 Approved
AWS Command Line Interface 1.11.164 736 Tuesday, October 3, 2017 Approved
AWS Command Line Interface 1.11.163 699 Monday, October 2, 2017 Approved
AWS Command Line Interface 1.11.162 788 Saturday, September 30, 2017 Approved
AWS Command Line Interface 1.11.160 1914 Tuesday, September 26, 2017 Approved
AWS Command Line Interface 1.11.159 15521 Monday, September 25, 2017 Approved
AWS Command Line Interface 1.11.158 1426 Thursday, September 21, 2017 Approved
AWS Command Line Interface 1.11.157 490 Thursday, September 21, 2017 Approved
AWS Command Line Interface 1.11.156 994 Wednesday, September 20, 2017 Approved
AWS Command Line Interface 1.11.155 776 Tuesday, September 19, 2017 Approved
AWS Command Line Interface 1.11.154 1020 Friday, September 15, 2017 Approved
AWS Command Line Interface 1.11.152 921 Wednesday, September 13, 2017 Approved
AWS Command Line Interface 1.11.151 785 Tuesday, September 12, 2017 Approved
AWS Command Line Interface 1.11.150 753 Tuesday, September 12, 2017 Approved
AWS Command Line Interface 1.11.148 1309 Friday, September 8, 2017 Approved
AWS Command Line Interface 1.11.146 1138 Tuesday, September 5, 2017 Approved
AWS Command Line Interface 1.11.145 1748 Saturday, September 2, 2017 Approved
AWS Command Line Interface 1.11.144 13652 Friday, September 1, 2017 Approved
AWS Command Line Interface 1.11.143 745 Thursday, August 31, 2017 Approved
AWS Command Line Interface 1.11.142 968 Tuesday, August 29, 2017 Approved
AWS Command Line Interface 1.11.141 1896 Saturday, August 26, 2017 Approved
AWS Command Line Interface 1.11.140 1162 Thursday, August 24, 2017 Approved
AWS Command Line Interface 1.11.139 993 Wednesday, August 23, 2017 Approved
AWS Command Line Interface 1.11.137 1563 Tuesday, August 22, 2017 Approved
AWS Command Line Interface 1.11.133 4217 Saturday, August 12, 2017 Approved
AWS Command Line Interface 1.11.132 1045 Friday, August 11, 2017 Approved
AWS Command Line Interface 1.11.131 1246 Wednesday, August 9, 2017 Approved
AWS Command Line Interface 1.11.129 7105 Wednesday, August 2, 2017 Approved
AWS Command Line Interface 1.11.128 1164 Tuesday, August 1, 2017 Approved
AWS Command Line Interface 1.11.127 2240 Friday, July 28, 2017 Approved
AWS Command Line Interface 1.11.126 1154 Thursday, July 27, 2017 Approved
AWS Command Line Interface 1.11.125 632 Wednesday, July 26, 2017 Approved
AWS Command Line Interface 1.11.124 1718 Monday, July 24, 2017 Approved
AWS Command Line Interface 1.11.123 2246 Friday, July 21, 2017 Approved
AWS Command Line Interface 1.11.122 1084 Wednesday, July 19, 2017 Approved
AWS Command Line Interface 1.11.121 1572 Tuesday, July 18, 2017 Approved
AWS Command Line Interface 1.11.120 2087 Saturday, July 15, 2017 Approved
AWS Command Line Interface 1.11.118 1871 Thursday, July 13, 2017 Approved
AWS Command Line Interface 1.11.115 8480 Friday, June 30, 2017 Approved
AWS Command Line Interface 1.11.114 1321 Thursday, June 29, 2017 Approved
AWS Command Line Interface 1.11.113 1275 Wednesday, June 28, 2017 Approved
AWS Command Line Interface 1.11.112 3442 Friday, June 23, 2017 Approved
AWS Command Line Interface 1.11.111 845 Friday, June 23, 2017 Approved
AWS Command Line Interface 1.11.110 1287 Thursday, June 22, 2017 Approved
AWS Command Line Interface 1.11.109 914 Wednesday, June 21, 2017 Approved
AWS Command Line Interface 1.11.108 1420 Monday, June 19, 2017 Approved
AWS Command Line Interface 1.11.107 1580 Sunday, June 18, 2017 Approved
AWS Command Line Interface 1.11.101 7225 Thursday, June 8, 2017 Approved
AWS Command Line Interface 1.11.100 1508 Wednesday, June 7, 2017 Approved
AWS Command Line Interface 1.11.99 660 Wednesday, June 7, 2017 Approved
AWS Command Line Interface 1.11.98 790 Monday, June 5, 2017 Approved
AWS Command Line Interface 1.11.97 3121 Saturday, June 3, 2017 Approved
AWS Command Line Interface 1.11.96 1215 Friday, June 2, 2017 Approved
AWS Command Line Interface 1.11.95 1217 Wednesday, May 31, 2017 Approved
AWS Command Line Interface 1.11.94 1173 Wednesday, May 31, 2017 Approved
AWS Command Line Interface 1.11.91 4708 Wednesday, May 24, 2017 Approved
AWS Command Line Interface 1.11.90 747 Tuesday, May 23, 2017 Approved
AWS Command Line Interface 1.11.89 3234 Friday, May 19, 2017 Approved
AWS Command Line Interface 1.11.88 1038 Thursday, May 18, 2017 Approved
AWS Command Line Interface 1.11.87 1257 Wednesday, May 17, 2017 Approved
AWS Command Line Interface 1.11.86 1175 Tuesday, May 16, 2017 Approved
AWS Command Line Interface 1.11.85 2403 Friday, May 12, 2017 Approved
AWS Command Line Interface 1.11.83 3940 Friday, May 5, 2017 Approved
AWS Command Line Interface 1.11.82 3627 Saturday, April 29, 2017 Approved
AWS Command Line Interface 1.11.81 1891 Wednesday, April 26, 2017 Approved
AWS Command Line Interface 1.11.80 1439 Saturday, April 22, 2017 Approved
AWS Command Line Interface 1.11.79 621 Friday, April 21, 2017 Approved
AWS Command Line Interface 1.11.78 896 Wednesday, April 19, 2017 Approved
AWS Command Line Interface 1.11.77 1495 Tuesday, April 18, 2017 Approved
AWS Command Line Interface 1.11.76 7983 Tuesday, April 11, 2017 Approved
AWS Command Line Interface 1.11.75 1467 Saturday, April 8, 2017 Approved
AWS Command Line Interface 1.11.74 895 Thursday, April 6, 2017 Approved
AWS Command Line Interface 1.11.73 920 Thursday, April 6, 2017 Approved
AWS Command Line Interface 1.11.72 787 Tuesday, April 4, 2017 Approved
AWS Command Line Interface 1.11.71 707 Tuesday, April 4, 2017 Approved
AWS Command Line Interface 1.11.70 942 Friday, March 31, 2017 Approved
AWS Command Line Interface 1.11.69 614 Friday, March 31, 2017 Approved
AWS Command Line Interface 1.11.68 1090 Wednesday, March 29, 2017 Approved
AWS Command Line Interface 1.11.67 718 Tuesday, March 28, 2017 Approved
AWS Command Line Interface 1.11.66 1035 Thursday, March 23, 2017 Approved
AWS Command Line Interface 1.11.65 846 Thursday, March 23, 2017 Approved
AWS Command Line Interface 1.11.64 708 Wednesday, March 22, 2017 Approved
AWS Command Line Interface 1.11.63 1808 Tuesday, March 14, 2017 Approved
AWS Command Line Interface 1.11.61 883 Friday, March 10, 2017 Approved
AWS Command Line Interface 1.11.60 760 Friday, March 10, 2017 Approved
AWS Command Line Interface 1.11.59 710 Thursday, March 9, 2017 Approved
AWS Command Line Interface 1.11.58 697 Wednesday, March 8, 2017 Approved
AWS Command Line Interface 1.11.57 641 Tuesday, March 7, 2017 Approved
AWS Command Line Interface 1.11.56 1854 Tuesday, February 28, 2017 Approved
AWS Command Line Interface 1.11.55 794 Sunday, February 26, 2017 Approved
AWS Command Line Interface 1.11.54 774 Friday, February 24, 2017 Approved
AWS Command Line Interface 1.11.52 1107 Wednesday, February 22, 2017 Approved
AWS Command Line Interface 1.11.51 42649 Sunday, February 19, 2017 Approved
AWS Command Line Interface 1.11.50 800 Friday, February 17, 2017 Approved
AWS Command Line Interface 1.11.49 785 Thursday, February 16, 2017 Approved
AWS Command Line Interface 1.11.48 808 Wednesday, February 15, 2017 Approved
AWS Command Line Interface 1.11.47 551 Tuesday, February 14, 2017 Approved
AWS Command Line Interface 1.11.46 1430 Friday, February 10, 2017 Approved
AWS Command Line Interface 1.11.45 1002 Wednesday, February 8, 2017 Approved
AWS Command Line Interface 1.11.43 2453 Thursday, January 26, 2017 Approved
AWS Command Line Interface 1.11.42 734 Wednesday, January 25, 2017 Approved
AWS Command Line Interface 1.11.41 3211 Friday, January 20, 2017 Approved
AWS Command Line Interface 1.11.40 536 Friday, January 20, 2017 Approved
AWS Command Line Interface 1.11.39 772 Thursday, January 19, 2017 Approved
AWS Command Line Interface 1.11.38 705 Tuesday, January 17, 2017 Approved
AWS Command Line Interface 1.11.37 543 Tuesday, January 17, 2017 Approved
AWS Command Line Interface 1.11.36 1890 Wednesday, January 4, 2017 Approved
AWS Command Line Interface 1.11.34 1685 Friday, December 23, 2016 Approved
AWS Command Line Interface 1.11.33 959 Thursday, December 22, 2016 Approved
AWS Command Line Interface 1.11.32 661 Wednesday, December 21, 2016 Approved
AWS Command Line Interface 1.11.31 729 Tuesday, December 20, 2016 Approved
AWS Command Line Interface 1.11.30 879 Friday, December 16, 2016 Approved
AWS Command Line Interface 1.11.24 1969 Saturday, December 3, 2016 Approved
AWS Command Line Interface 1.11.22 1502 Wednesday, November 30, 2016 Approved
AWS Command Line Interface 1.10.38 10457 Wednesday, June 15, 2016 Approved
AWS Command Line Interface 1.10.35 503 Friday, June 3, 2016 Approved
AWS Command Line Interface 1.10.33 432 Friday, May 27, 2016 Approved
AWS Command Line Interface 1.10.30 446 Wednesday, May 18, 2016 Approved
AWS Command Line Interface 1.10.27 482 Wednesday, May 11, 2016 Approved
AWS Command Line Interface 1.10.26 452 Friday, May 6, 2016 Approved
AWS Command Line Interface 1.10.25 421 Wednesday, May 4, 2016 Approved
AWS Command Line Interface 1.10.24 476 Friday, April 29, 2016 Approved
AWS Command Line Interface 1.10.23 538 Thursday, April 28, 2016 Approved
AWS Command Line Interface 1.10.22 649 Friday, April 22, 2016 Approved
AWS Command Line Interface 1.10.21 545 Tuesday, April 19, 2016 Approved
AWS Command Line Interface 1.10.20 682 Tuesday, April 12, 2016 Approved
AWS Command Line Interface 1.10.18 568 Monday, April 11, 2016 Approved
AWS Command Line Interface 1.10.16 851 Friday, March 25, 2016 Approved
AWS Command Line Interface 1.10.15 578 Wednesday, March 23, 2016 Approved
AWS Command Line Interface 1.10.14 558 Friday, March 18, 2016 Approved
AWS Command Line Interface 1.10.13 499 Wednesday, March 16, 2016 Approved
AWS Command Line Interface 1.10.12 563 Friday, March 11, 2016 Approved
AWS Command Line Interface 1.10.11 569 Wednesday, March 9, 2016 Approved
AWS Command Line Interface 1.10.10 566 Friday, March 4, 2016 Approved
AWS Command Line Interface 1.10.9 550 Wednesday, March 2, 2016 Approved
AWS Command Line Interface 1.10.8 536 Monday, February 29, 2016 Approved
AWS Command Line Interface 1.10.7 653 Wednesday, February 24, 2016 Approved
awscli 1.0.4 13402 Saturday, February 22, 2014 Approved
awscli 1.0.3 590 Saturday, December 7, 2013 Approved
awscli 1.0.2 518 Saturday, December 7, 2013 Approved
awscli 1.0.1 715 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