Unpacking Software Livestream

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

Learn More

Chocolatey Product Spotlight

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

Learn More

Chocolatey Coding Livestream

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

Learn More

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

Webinar from
Wednesday, 17 January 2024

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

Watch On-Demand
Chocolatey Community Coffee Break

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

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

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

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

Livestream from
Thursday, 9 June 2022

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

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

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

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

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

Watch On-Demand

Downloads:

4,985,397

Downloads of v 2.0.58:

3,256

Last Update:

21 Oct 2020

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.0.58 | Updated: 21 Oct 2020

Downloads:

4,985,397

Downloads of v 2.0.58:

3,256

Maintainer(s):

Software Author(s):

  • Amazon Web Services

AWS Command Line Interface v2 (Install) 2.0.58

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

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


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

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


package { 'awscli':
  ensure   => '2.0.58',
  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...

WARNING

There are versions of this package awaiting moderation . See the Version History section below.

Package Approved

This package was approved as a trusted package on 21 Oct 2020.

Description

The AWS CLI is an open source tool built on top of the AWS SDK for Python (Boto) that provides commands for interacting with AWS services. With minimal configuration, you can start using all of the functionality provided by the AWS Management Console from your favorite terminal program.

  • Linux shells – Use common shell programs such as Bash, Zsh, and tsch to run commands in Linux, macOS, or Unix.

  • Windows command line – On Microsoft Windows, run commands in either PowerShell or the Windows Command Processor.

  • Remotely – Run commands on Amazon EC2 instances through a remote terminal such as PuTTY or SSH, or with Amazon EC2 systems manager.

The AWS CLI provides direct access to AWS services' public APIs. Explore a service's capabilities with the AWS CLI, and develop shell scripts to manage your resources. Or take what you've learned to develop programs in other languages with the AWS SDK.

In addition to the low level, API equivalent commands, the AWS CLI also provides customizations for several services. Customizations are higher level commands that simplify using a service with a complex API. For example, the aws s3 set of commands provide a familiar syntax for managing files in Amazon S3.


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

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

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

Install-ChocolateyPackage @packageArgs

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

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

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
AWS Command Line Interface v2 (Install) 2.22.10 2931 Wednesday, December 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.8 6123 Tuesday, December 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.7 10304 Thursday, November 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.6 16 Wednesday, November 27, 2024
Waiting for Maintainer
AWS Command Line Interface v2 (Install) 2.22.5 6101 Tuesday, November 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.4 8411 Saturday, November 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.2 5542 Thursday, November 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.1 3492 Wednesday, November 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.0 4204 Tuesday, November 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.3 8721 Saturday, November 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.2 2950 Friday, November 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.0 2953 Thursday, November 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.20.0 5360 Wednesday, November 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.5 5042 Tuesday, November 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.4 7867 Saturday, November 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.3 2137 Friday, November 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.2 3413 Thursday, November 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.1 9801 Saturday, November 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.0 2497 Friday, November 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.18 2136 Thursday, October 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.17 69 Wednesday, October 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.16 5598 Tuesday, October 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.15 5340 Saturday, October 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.14 10172 Friday, October 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.13 4157 Thursday, October 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.12 2977 Wednesday, October 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.11 4692 Tuesday, October 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.10 8220 Saturday, October 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.9 3405 Friday, October 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.8 4051 Thursday, October 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.7 3720 Wednesday, October 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.6 3361 Tuesday, October 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.4 8861 Friday, October 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.3 3394 Thursday, October 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.2 3721 Wednesday, October 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.1 4558 Tuesday, October 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.0 6902 Saturday, October 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.65 2542 Friday, October 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.64 3689 Thursday, October 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.63 2644 Wednesday, October 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.61 11192 Saturday, September 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.59 5691 Thursday, September 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.58 3678 Wednesday, September 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.57 3889 Tuesday, September 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.56 7823 Saturday, September 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.55 2880 Friday, September 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.54 3602 Thursday, September 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.53 3630 Wednesday, September 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.52 3743 Tuesday, September 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.51 8022 Saturday, September 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.50 3064 Friday, September 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.49 3851 Thursday, September 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.48 4482 Wednesday, September 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.47 6092 Monday, September 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.46 4024 Saturday, September 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.45 204 Friday, September 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.44 3211 Thursday, September 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.43 7340 Wednesday, September 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.42 9220 Saturday, August 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.40 4486 Thursday, August 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.39 3785 Wednesday, August 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.38 3536 Tuesday, August 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.37 7458 Saturday, August 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.36 2896 Friday, August 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.35 3225 Thursday, August 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.34 3775 Wednesday, August 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.33 3379 Tuesday, August 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.32 6770 Saturday, August 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.31 2465 Friday, August 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.30 2768 Thursday, August 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.29 4366 Wednesday, August 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.28 3139 Tuesday, August 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.27 5303 Saturday, August 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.26 3062 Friday, August 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.25 3111 Thursday, August 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.24 2557 Wednesday, August 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.23 3977 Tuesday, August 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.22 6011 Saturday, August 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.21 2802 Friday, August 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.20 5486 Wednesday, July 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.19 2386 Tuesday, July 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.18 7215 Friday, July 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.16 5415 Wednesday, July 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.15 3252 Tuesday, July 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.14 8662 Friday, July 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.13 12328 Saturday, July 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.12 4047 Thursday, July 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.11 3646 Wednesday, July 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.10 3814 Tuesday, July 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.9 7878 Saturday, July 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.8 4693 Thursday, July 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.7 4173 Wednesday, July 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.6 3392 Tuesday, July 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.5 7455 Saturday, June 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.4 1887 Friday, June 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.3 74 Thursday, June 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.2 6235 Wednesday, June 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.1 4520 Tuesday, June 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.0 9366 Friday, June 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.12 4139 Thursday, June 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.11 2700 Wednesday, June 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.10 4739 Tuesday, June 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.9 8019 Friday, June 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.8 1908 Friday, June 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.7 4369 Thursday, June 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.6 3886 Wednesday, June 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.5 4471 Tuesday, June 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.4 7364 Saturday, June 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.3 1674 Friday, June 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.2 4844 Thursday, June 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.1 3513 Wednesday, June 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.0 3222 Tuesday, June 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.62 6031 Saturday, June 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.61 3018 Friday, May 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.60 5236 Thursday, May 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.59 3898 Wednesday, May 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.58 10931 Saturday, May 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.57 3492 Friday, May 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.56 3113 Thursday, May 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.55 4396 Wednesday, May 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.54 2763 Tuesday, May 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.53 6190 Saturday, May 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.52 2522 Friday, May 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.51 3564 Thursday, May 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.50 2990 Wednesday, May 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.49 3016 Tuesday, May 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.48 7405 Saturday, May 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.47 3732 Thursday, May 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.46 1010 Thursday, May 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.45 6657 Tuesday, May 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.44 15645 Saturday, May 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.43 4578 Thursday, May 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.42 10598 Saturday, April 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.41 5070 Thursday, April 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.40 10103 Saturday, April 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.39 4462 Thursday, April 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.38 10728 Saturday, April 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.37 4287 Thursday, April 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.36 10055 Saturday, April 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.35 4488 Thursday, April 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.34 12125 Saturday, March 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.33 5025 Thursday, March 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.32 11287 Saturday, March 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.31 6472 Thursday, March 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.30 12772 Saturday, March 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.28 10929 Tuesday, March 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.27 7020 Saturday, March 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.26 6798 Thursday, March 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.25 21970 Saturday, March 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.24 8427 Thursday, February 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.23 15541 Saturday, February 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.22 8349 Thursday, February 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.21 12848 Saturday, February 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.20 7108 Thursday, February 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.19 16612 Saturday, February 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.17 20719 Saturday, February 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.16 6673 Thursday, February 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.15 14900 Saturday, January 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.14 7094 Thursday, January 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.13 8735 Tuesday, January 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.12 8907 Saturday, January 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.11 8027 Thursday, January 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.10 13561 Saturday, January 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.9 7087 Thursday, January 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.8 12460 Saturday, January 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.7 6334 Thursday, January 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.6 10121 Saturday, December 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.5 5016 Thursday, December 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.4 8667 Saturday, December 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.3 6465 Thursday, December 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.2 11616 Saturday, December 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.1 5121 Thursday, December 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.0 16043 Saturday, December 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.6 8708 Thursday, December 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.5 15046 Friday, December 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.2 6378 Wednesday, November 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.0 7082 Tuesday, November 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.38 14240 Wednesday, November 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.37 14509 Saturday, November 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.36 5232 Thursday, November 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.35 8359 Tuesday, November 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.34 9130 Saturday, November 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.32 15385 Saturday, November 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.31 6360 Thursday, November 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.30 13060 Saturday, October 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.29 6249 Thursday, October 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.28 13411 Saturday, October 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.27 8049 Thursday, October 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.26 13430 Saturday, October 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.25 15834 Saturday, October 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.24 6400 Thursday, October 5, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.23 7950 Tuesday, October 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.21 143 Saturday, September 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.20 24688 Thursday, September 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.19 12566 Saturday, September 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.18 7093 Thursday, September 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.16 17740 Thursday, September 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.15 12139 Saturday, September 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.14 8485 Thursday, August 31, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.13 13360 Saturday, August 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.12 7024 Thursday, August 24, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.11 1642 Saturday, August 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.9 27509 Saturday, August 12, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.8 7260 Thursday, August 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.7 12963 Saturday, August 5, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.6 7594 Thursday, August 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.5 83 Saturday, July 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.4 15799 Thursday, July 27, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.3 14455 Saturday, July 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.2 14367 Thursday, July 20, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.1 23113 Friday, July 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.0 27917 Saturday, July 8, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.7 11020 Thursday, July 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.6 17568 Saturday, July 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.5 7350 Friday, June 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.4 8118 Thursday, June 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.3 17493 Saturday, June 24, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.2 10881 Thursday, June 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.1 18157 Saturday, June 17, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.0 11910 Thursday, June 15, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.27 13195 Saturday, June 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.26 6981 Thursday, June 8, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.25 12520 Saturday, June 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.24 7225 Thursday, June 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.23 12696 Saturday, May 27, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.22 7824 Thursday, May 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.21 13223 Saturday, May 20, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.20 25201 Saturday, May 13, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.19 9789 Thursday, May 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.17 17166 Thursday, May 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.16 16319 Saturday, April 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.13 24503 Saturday, April 15, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.11 21920 Monday, April 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.10 9176 Thursday, April 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.9 8727 Tuesday, April 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.8 9251 Saturday, April 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.6 17716 Saturday, March 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.5 6846 Thursday, March 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.4 17435 Saturday, March 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.2 17675 Saturday, March 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.1 7551 Thursday, March 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.0 14304 Friday, March 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.4 5940 Thursday, March 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.3 11623 Saturday, February 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.2 8213 Thursday, February 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.1 12528 Saturday, February 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.23 17730 Saturday, February 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.22 7346 Thursday, February 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.21 11287 Monday, February 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.20 11446 Thursday, February 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.19 11417 Monday, January 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.18 11737 Thursday, January 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.17 13387 Saturday, January 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.16 8654 Thursday, January 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.15 12829 Saturday, January 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.14 7507 Thursday, January 12, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.13 15785 Friday, January 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.12 14441 Saturday, December 31, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.11 7001 Thursday, December 29, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.10 11200 Friday, December 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.9 7490 Thursday, December 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.8 12851 Saturday, December 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.7 8506 Thursday, December 15, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.6 13930 Saturday, December 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.5 7423 Thursday, December 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.4 12287 Saturday, December 3, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.3 6363 Thursday, December 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.2 5438 Wednesday, November 30, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.1 13496 Thursday, November 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.0 16053 Saturday, November 19, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.13 6791 Thursday, November 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.12 9600 Saturday, November 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.11 11572 Thursday, November 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.9 13257 Saturday, November 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.8 7487 Thursday, November 3, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.7 15723 Friday, October 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.6 7392 Thursday, October 27, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.5 10784 Saturday, October 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.3 17764 Friday, October 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.2 15584 Saturday, October 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.1 6592 Thursday, October 6, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.0 10803 Saturday, October 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.35 13647 Saturday, September 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.34 6720 Thursday, September 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.33 11598 Saturday, September 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.32 6917 Thursday, September 15, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.31 14068 Saturday, September 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.30 7645 Thursday, September 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.29 13878 Monday, September 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.28 19857 Thursday, September 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.26 23195 Thursday, August 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.25 16559 Saturday, August 20, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.24 11602 Wednesday, August 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.22 15282 Friday, August 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.21 32576 Thursday, August 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.20 16099 Saturday, July 30, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.19 7924 Thursday, July 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.18 14068 Saturday, July 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.17 8193 Thursday, July 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.16 13986 Saturday, July 16, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.15 7259 Thursday, July 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.14 13308 Saturday, July 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.13 6232 Thursday, July 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.11 27760 Saturday, June 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.9 18283 Saturday, June 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.8 4858 Friday, June 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.7 21297 Thursday, June 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.6 11586 Saturday, June 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.5 6950 Thursday, June 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.4 11541 Friday, May 27, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.3 6117 Thursday, May 26, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.2 12296 Saturday, May 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.1 7917 Wednesday, May 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.0 11211 Saturday, May 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.4 6820 Wednesday, May 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.3 8212 Sunday, May 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.2 6867 Thursday, May 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.1 9352 Friday, April 29, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.0 5263 Thursday, April 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.8 10723 Friday, April 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.7 3701 Thursday, April 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.6 10532 Saturday, April 16, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.4 11241 Saturday, April 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.3 5811 Thursday, April 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.2 8580 Saturday, April 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.1 5834 Thursday, March 31, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.0 6698 Monday, March 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.29 8225 Saturday, March 26, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.28 5488 Thursday, March 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.27 10413 Friday, March 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.25 12176 Friday, March 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.24 5926 Wednesday, March 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.23 8745 Friday, March 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.22 6033 Wednesday, March 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.21 22688 Friday, February 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.20 6044 Wednesday, February 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.19 8083 Friday, February 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.18 10520 Friday, February 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.17 6750 Wednesday, February 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.16 8281 Friday, February 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.15 10529 Friday, January 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.13 10796 Friday, January 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.12 14756 Wednesday, January 19, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.11 6737 Friday, January 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.10 4137 Wednesday, January 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.9 6794 Friday, January 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.7 13173 Wednesday, December 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.6 16813 Friday, December 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.5 8473 Saturday, December 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.4 2616 Friday, December 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.3 4957 Tuesday, November 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.2 6563 Saturday, November 27, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.1 6046 Wednesday, November 24, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.0 6781 Friday, November 19, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.7 5184 Wednesday, November 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.6 7364 Friday, November 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.5 5092 Wednesday, November 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.4 6891 Friday, November 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.0 16185 Friday, October 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.47 4830 Wednesday, October 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.46 6640 Friday, October 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.45 5704 Tuesday, October 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.43 12439 Friday, October 1, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.42 5057 Wednesday, September 29, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.41 6525 Friday, September 24, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.40 3951 Wednesday, September 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.39 6045 Friday, September 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.38 4391 Wednesday, September 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.37 7459 Friday, September 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.36 4133 Wednesday, September 8, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.35 5740 Friday, September 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.33 7944 Friday, August 27, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.32 3606 Wednesday, August 25, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.31 6383 Friday, August 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.30 4147 Wednesday, August 18, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.29 5765 Friday, August 13, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.28 3828 Wednesday, August 11, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.27 6374 Friday, August 6, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.26 3303 Wednesday, August 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.25 7440 Saturday, July 31, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.24 2008 Friday, July 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.23 2361 Wednesday, July 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.22 6901 Friday, July 23, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.21 4493 Wednesday, July 21, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.20 5159 Friday, July 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.19 3334 Thursday, July 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.18 7038 Friday, July 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.17 3858 Wednesday, July 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.16 7002 Friday, July 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.15 5951 Wednesday, June 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.14 5438 Friday, June 25, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.13 7775 Thursday, June 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.12 6063 Wednesday, June 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.11 5559 Friday, June 11, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.10 4707 Wednesday, June 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.9 5954 Friday, June 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.8 3361 Wednesday, June 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.7 6429 Friday, May 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.6 4353 Wednesday, May 26, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.5 13294 Saturday, May 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.4 5551 Wednesday, May 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.3 5742 Friday, May 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.2 3931 Wednesday, May 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.1 5011 Friday, April 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.0 3117 Wednesday, April 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.39 108 Thursday, April 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.38 12346 Friday, April 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.37 4055 Wednesday, April 14, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.36 5632 Friday, April 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.35 410 Wednesday, April 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.34 9233 Friday, April 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.33 3522 Wednesday, March 31, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.32 544 Tuesday, March 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.29 53177 Tuesday, March 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.28 18504 Tuesday, February 23, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.27 33574 Wednesday, February 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.26 5909 Friday, February 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.25 3069 Wednesday, February 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.24 6734 Friday, February 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.23 3520 Wednesday, February 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.22 9920 Friday, January 29, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.21 7672 Friday, January 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.20 4324 Wednesday, January 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.19 5608 Friday, January 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.18 2771 Wednesday, January 13, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.17 4966 Friday, January 8, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.16 1891 Wednesday, January 6, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.15 5618 Wednesday, December 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.14 4066 Wednesday, December 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.13 4528 Friday, December 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.12 1909 Thursday, December 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.11 1685 Wednesday, December 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.10 5279 Friday, December 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.9 1676 Thursday, December 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.8 3085 Wednesday, December 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.7 4678 Friday, December 4, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.6 2452 Wednesday, December 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.4 6777 Wednesday, November 25, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.3 4687 Friday, November 20, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.2 2164 Wednesday, November 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.1 4449 Friday, November 13, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.0 4038 Wednesday, November 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.63 4721 Tuesday, November 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.62 2841 Friday, November 6, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.61 7124 Friday, October 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.60 4058 Wednesday, October 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.59 7199 Friday, October 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.58 3256 Wednesday, October 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.57 3715 Friday, October 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.56 9028 Friday, October 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.55 5556 Wednesday, October 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.54 4968 Friday, October 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.53 5895 Wednesday, September 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.52 4356 Friday, September 25, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.51 2391 Thursday, September 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.50 6559 Friday, September 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.49 2951 Wednesday, September 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.48 5240 Friday, September 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.47 3321 Wednesday, September 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.46 3863 Friday, September 4, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.45 2710 Wednesday, September 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.44 3210 Friday, August 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.43 4797 Wednesday, August 26, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.42 5730 Friday, August 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.41 3156 Wednesday, August 19, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.40 3636 Friday, August 14, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.39 3787 Wednesday, August 12, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.38 4233 Friday, August 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.37 3088 Wednesday, August 5, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.36 4038 Friday, July 31, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.35 3004 Wednesday, July 29, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.34 4512 Friday, July 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.33 3359 Wednesday, July 22, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.31 5578 Thursday, July 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.30 7960 Friday, July 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.29 2773 Wednesday, July 8, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.28 3968 Friday, July 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.27 2820 Wednesday, July 1, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.26 4417 Friday, June 26, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.25 2911 Wednesday, June 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.24 4406 Friday, June 19, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.23 2746 Wednesday, June 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.22 5539 Friday, June 12, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.21 1225 Thursday, June 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.20 1868 Wednesday, June 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.19 3630 Friday, June 5, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.18 2138 Wednesday, June 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.17 4595 Wednesday, May 27, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.15 3500 Thursday, May 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.14 5642 Friday, May 15, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.13 2531 Wednesday, May 13, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.12 4016 Friday, May 8, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.11 3256 Wednesday, May 6, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.10 6418 Tuesday, April 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.9 3401 Thursday, April 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.8 4764 Friday, April 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.7 6226 Tuesday, April 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.6 5836 Tuesday, March 31, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.5 5112 Tuesday, March 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.4 5427 Wednesday, March 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.3 5698 Tuesday, March 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.2 4305 Tuesday, March 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.1 5764 Wednesday, February 26, 2020 Approved
AWS Command Line Interface (Install) 1.36.8 8 Friday, November 22, 2024 Approved
AWS Command Line Interface (Install) 1.34.30 19 Tuesday, October 1, 2024 Approved
AWS Command Line Interface (Install) 1.33.37 22 Tuesday, August 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.102 49 Friday, May 10, 2024 Approved
AWS Command Line Interface (Install) 1.32.100 30 Wednesday, May 8, 2024 Approved
AWS Command Line Interface (Install) 1.32.97 25 Friday, May 3, 2024 Approved
AWS Command Line Interface (Install) 1.32.95 38 Wednesday, May 1, 2024 Approved
AWS Command Line Interface (Install) 1.32.94 33 Tuesday, April 30, 2024 Approved
AWS Command Line Interface (Install) 1.32.92 36 Friday, April 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.89 35 Tuesday, April 23, 2024 Approved
AWS Command Line Interface (Install) 1.32.87 31 Friday, April 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.86 31 Wednesday, April 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.85 34 Wednesday, April 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.83 25 Friday, April 12, 2024 Approved
AWS Command Line Interface (Install) 1.32.81 28 Wednesday, April 10, 2024 Approved
AWS Command Line Interface (Install) 1.32.80 32 Tuesday, April 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.76 29 Wednesday, April 3, 2024 Approved
AWS Command Line Interface (Install) 1.32.75 28 Tuesday, April 2, 2024 Approved
AWS Command Line Interface (Install) 1.32.73 31 Friday, March 29, 2024 Approved
AWS Command Line Interface (Install) 1.32.71 37 Wednesday, March 27, 2024 Approved
AWS Command Line Interface (Install) 1.32.70 39 Tuesday, March 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.66 35 Wednesday, March 20, 2024 Approved
AWS Command Line Interface (Install) 1.32.65 41 Tuesday, March 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.61 44 Wednesday, March 13, 2024 Approved
AWS Command Line Interface (Install) 1.32.58 32 Friday, March 8, 2024 Approved
AWS Command Line Interface (Install) 1.32.56 32 Wednesday, March 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.53 30 Friday, March 1, 2024 Approved
AWS Command Line Interface (Install) 1.32.51 30 Wednesday, February 28, 2024 Approved
AWS Command Line Interface (Install) 1.32.50 27 Tuesday, February 27, 2024 Approved
AWS Command Line Interface (Install) 1.32.48 36 Friday, February 23, 2024 Approved
AWS Command Line Interface (Install) 1.32.45 36 Tuesday, February 20, 2024 Approved
AWS Command Line Interface (Install) 1.32.43 29 Friday, February 16, 2024 Approved
AWS Command Line Interface (Install) 1.32.40 31 Tuesday, February 13, 2024 Approved
AWS Command Line Interface (Install) 1.32.38 42 Friday, February 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.36 44 Wednesday, February 7, 2024 Approved
AWS Command Line Interface (Install) 1.32.35 33 Tuesday, February 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.33 33 Friday, February 2, 2024 Approved
AWS Command Line Interface (Install) 1.32.31 30 Wednesday, January 31, 2024 Approved
AWS Command Line Interface (Install) 1.32.30 43 Tuesday, January 30, 2024 Approved
AWS Command Line Interface (Install) 1.32.28 39 Friday, January 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.22 31 Friday, January 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.20 33 Wednesday, January 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.19 43 Monday, January 15, 2024 Approved
AWS Command Line Interface (Install) 1.32.17 33 Friday, January 12, 2024 Approved
AWS Command Line Interface (Install) 1.32.15 40 Tuesday, January 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.13 42 Friday, January 5, 2024 Approved
AWS Command Line Interface (Install) 1.32.6 43 Friday, December 22, 2023 Approved
AWS Command Line Interface (Install) 1.32.4 45 Wednesday, December 20, 2023 Approved
AWS Command Line Interface (Install) 1.32.3 48 Tuesday, December 19, 2023 Approved
AWS Command Line Interface (Install) 1.32.1 42 Friday, December 15, 2023 Approved
AWS Command Line Interface (Install) 1.31.13 37 Wednesday, December 13, 2023 Approved
AWS Command Line Interface (Install) 1.31.12 40 Monday, December 11, 2023 Approved
AWS Command Line Interface (Install) 1.31.10 38 Friday, December 8, 2023 Approved
AWS Command Line Interface (Install) 1.31.7 34 Tuesday, December 5, 2023 Approved
AWS Command Line Interface (Install) 1.31.6 48 Saturday, December 2, 2023 Approved
AWS Command Line Interface (Install) 1.30.4 47 Tuesday, November 21, 2023 Approved
AWS Command Line Interface (Install) 1.30.2 42 Friday, November 17, 2023 Approved
AWS Command Line Interface (Install) 1.30.0 45 Wednesday, November 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.83 40 Friday, November 10, 2023 Approved
AWS Command Line Interface (Install) 1.29.82 46 Thursday, November 9, 2023 Approved
AWS Command Line Interface (Install) 1.29.80 51 Wednesday, November 8, 2023 Approved
AWS Command Line Interface (Install) 1.29.79 47 Tuesday, November 7, 2023 Approved
AWS Command Line Interface (Install) 1.29.77 48 Thursday, November 2, 2023 Approved
AWS Command Line Interface (Install) 1.29.75 39 Wednesday, November 1, 2023 Approved
AWS Command Line Interface (Install) 1.29.72 39 Friday, October 27, 2023 Approved
AWS Command Line Interface (Install) 1.29.70 44 Wednesday, October 25, 2023 Approved
AWS Command Line Interface (Install) 1.29.69 45 Tuesday, October 24, 2023 Approved
AWS Command Line Interface (Install) 1.29.67 55 Friday, October 20, 2023 Approved
AWS Command Line Interface (Install) 1.29.65 49 Wednesday, October 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.64 51 Tuesday, October 17, 2023 Approved
AWS Command Line Interface (Install) 1.29.63 53 Friday, October 13, 2023 Approved
AWS Command Line Interface (Install) 1.29.61 34 Friday, October 6, 2023 Approved
AWS Command Line Interface (Install) 1.29.59 46 Wednesday, October 4, 2023 Approved
AWS Command Line Interface (Install) 1.29.57 41 Saturday, September 30, 2023 Approved
AWS Command Line Interface (Install) 1.29.55 39 Wednesday, September 27, 2023 Approved
AWS Command Line Interface (Install) 1.29.54 36 Tuesday, September 26, 2023 Approved
AWS Command Line Interface (Install) 1.29.51 53 Wednesday, September 20, 2023 Approved
AWS Command Line Interface (Install) 1.29.50 47 Tuesday, September 19, 2023 Approved
AWS Command Line Interface (Install) 1.29.48 49 Friday, September 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.45 46 Tuesday, September 12, 2023 Approved
AWS Command Line Interface (Install) 1.29.43 56 Friday, September 8, 2023 Approved
AWS Command Line Interface (Install) 1.29.41 44 Wednesday, September 6, 2023 Approved
AWS Command Line Interface (Install) 1.29.36 265 Tuesday, August 29, 2023 Approved
AWS Command Line Interface (Install) 1.29.34 40 Friday, August 25, 2023 Approved
AWS Command Line Interface (Install) 1.29.32 45 Wednesday, August 23, 2023 Approved
AWS Command Line Interface (Install) 1.29.31 49 Tuesday, August 22, 2023 Approved
AWS Command Line Interface (Install) 1.29.29 55 Friday, August 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.26 54 Tuesday, August 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.24 52 Friday, August 11, 2023 Approved
AWS Command Line Interface (Install) 1.29.22 65 Wednesday, August 9, 2023 Approved
AWS Command Line Interface (Install) 1.29.16 57 Tuesday, August 1, 2023 Approved
AWS Command Line Interface (Install) 1.29.14 50 Friday, July 28, 2023 Approved
AWS Command Line Interface (Install) 1.29.11 49 Wednesday, July 26, 2023 Approved
AWS Command Line Interface (Install) 1.29.5 38 Wednesday, July 19, 2023 Approved
AWS Command Line Interface (Install) 1.29.4 38 Tuesday, July 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.2 101 Wednesday, July 12, 2023 Approved
AWS Command Line Interface (Install) 1.29.0 174 Friday, July 7, 2023 Approved
AWS Command Line Interface (Install) 1.28.0 45 Tuesday, July 4, 2023 Approved
AWS Command Line Interface (Install) 1.27.162 43 Wednesday, June 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.161 52 Tuesday, June 27, 2023 Approved
AWS Command Line Interface (Install) 1.27.159 50 Friday, June 23, 2023 Approved
AWS Command Line Interface (Install) 1.27.157 47 Wednesday, June 21, 2023 Approved
AWS Command Line Interface (Install) 1.27.156 46 Tuesday, June 20, 2023 Approved
AWS Command Line Interface (Install) 1.27.153 48 Wednesday, June 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.152 40 Tuesday, June 13, 2023 Approved
AWS Command Line Interface (Install) 1.27.150 44 Friday, June 9, 2023 Approved
AWS Command Line Interface (Install) 1.27.148 42 Wednesday, June 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.145 44 Friday, June 2, 2023 Approved
AWS Command Line Interface (Install) 1.27.143 46 Wednesday, May 31, 2023 Approved
AWS Command Line Interface (Install) 1.27.141 49 Friday, May 26, 2023 Approved
AWS Command Line Interface (Install) 1.27.139 39 Wednesday, May 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.138 44 Tuesday, May 23, 2023 Approved
AWS Command Line Interface (Install) 1.27.135 50 Thursday, May 18, 2023 Approved
AWS Command Line Interface (Install) 1.27.134 53 Tuesday, May 16, 2023 Approved
AWS Command Line Interface (Install) 1.27.133 46 Friday, May 12, 2023 Approved
AWS Command Line Interface (Install) 1.27.131 49 Wednesday, May 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.130 58 Tuesday, May 9, 2023 Approved
AWS Command Line Interface (Install) 1.27.127 38 Friday, May 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.125 40 Wednesday, May 3, 2023 Approved
AWS Command Line Interface (Install) 1.27.124 37 Tuesday, May 2, 2023 Approved
AWS Command Line Interface (Install) 1.27.122 40 Friday, April 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.120 54 Wednesday, April 26, 2023 Approved
AWS Command Line Interface (Install) 1.27.119 49 Tuesday, April 25, 2023 Approved
AWS Command Line Interface (Install) 1.27.113 51 Friday, April 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.110 48 Tuesday, April 11, 2023 Approved
AWS Command Line Interface (Install) 1.27.106 47 Wednesday, April 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.101 50 Wednesday, March 29, 2023 Approved
AWS Command Line Interface (Install) 1.27.100 49 Tuesday, March 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.98 47 Friday, March 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.93 50 Friday, March 17, 2023 Approved
AWS Command Line Interface (Install) 1.27.90 46 Tuesday, March 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.88 66 Friday, March 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.86 35 Wednesday, March 8, 2023 Approved
AWS Command Line Interface (Install) 1.27.85 53 Tuesday, March 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.81 49 Wednesday, March 1, 2023 Approved
AWS Command Line Interface (Install) 1.27.80 44 Tuesday, February 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.78 54 Friday, February 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.75 53 Tuesday, February 21, 2023 Approved
AWS Command Line Interface (Install) 1.27.73 54 Friday, February 17, 2023 Approved
AWS Command Line Interface (Install) 1.27.71 56 Wednesday, February 15, 2023 Approved
AWS Command Line Interface (Install) 1.27.70 51 Tuesday, February 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.68 51 Friday, February 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.66 46 Wednesday, February 8, 2023 Approved
AWS Command Line Interface (Install) 1.27.65 52 Tuesday, February 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.63 48 Friday, February 3, 2023 Approved
AWS Command Line Interface (Install) 1.27.61 53 Wednesday, February 1, 2023 Approved
AWS Command Line Interface (Install) 1.27.60 45 Tuesday, January 31, 2023 Approved
AWS Command Line Interface (Install) 1.27.58 45 Friday, January 27, 2023 Approved
AWS Command Line Interface (Install) 1.27.56 53 Wednesday, January 25, 2023 Approved
AWS Command Line Interface (Install) 1.27.53 55 Friday, January 20, 2023 Approved
AWS Command Line Interface (Install) 1.27.51 48 Wednesday, January 18, 2023 Approved
AWS Command Line Interface (Install) 1.27.49 56 Friday, January 13, 2023 Approved
AWS Command Line Interface (Install) 1.27.47 54 Wednesday, January 11, 2023 Approved
AWS Command Line Interface (Install) 1.27.46 49 Tuesday, January 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.43 48 Thursday, January 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.40 47 Friday, December 30, 2022 Approved
AWS Command Line Interface (Install) 1.27.38 55 Wednesday, December 28, 2022 Approved
AWS Command Line Interface (Install) 1.27.36 49 Friday, December 23, 2022 Approved
AWS Command Line Interface (Install) 1.27.33 52 Tuesday, December 20, 2022 Approved
AWS Command Line Interface (Install) 1.27.31 46 Friday, December 16, 2022 Approved
AWS Command Line Interface (Install) 1.27.29 54 Wednesday, December 14, 2022 Approved
AWS Command Line Interface (Install) 1.27.26 48 Friday, December 9, 2022 Approved
AWS Command Line Interface (Install) 1.27.24 51 Wednesday, December 7, 2022 Approved
AWS Command Line Interface (Install) 1.27.23 59 Tuesday, December 6, 2022 Approved
AWS Command Line Interface (Install) 1.27.15 72 Wednesday, November 23, 2022 Approved
AWS Command Line Interface (Install) 1.27.14 59 Tuesday, November 22, 2022 Approved
AWS Command Line Interface (Install) 1.27.12 44 Friday, November 18, 2022 Approved
AWS Command Line Interface (Install) 1.27.10 56 Wednesday, November 16, 2022 Approved
AWS Command Line Interface (Install) 1.27.9 52 Tuesday, November 15, 2022 Approved
AWS Command Line Interface (Install) 1.27.7 55 Friday, November 11, 2022 Approved
AWS Command Line Interface (Install) 1.27.4 55 Tuesday, November 8, 2022 Approved
AWS Command Line Interface (Install) 1.27.3 58 Saturday, November 5, 2022 Approved
AWS Command Line Interface (Install) 1.27.2 56 Friday, November 4, 2022 Approved
AWS Command Line Interface (Install) 1.27.0 66 Wednesday, November 2, 2022 Approved
AWS Command Line Interface (Install) 1.26.5 60 Tuesday, November 1, 2022 Approved
AWS Command Line Interface (Install) 1.26.3 51 Friday, October 28, 2022 Approved
AWS Command Line Interface (Install) 1.26.1 44 Wednesday, October 26, 2022 Approved
AWS Command Line Interface (Install) 1.26.0 70 Tuesday, October 25, 2022 Approved
AWS Command Line Interface (Install) 1.25.96 53 Friday, October 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.94 64 Wednesday, October 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.93 62 Tuesday, October 18, 2022 Approved
AWS Command Line Interface (Install) 1.25.92 54 Saturday, October 15, 2022 Approved
AWS Command Line Interface (Install) 1.25.89 66 Friday, October 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.87 46 Wednesday, October 5, 2022 Approved
AWS Command Line Interface (Install) 1.25.83 48 Wednesday, September 28, 2022 Approved
AWS Command Line Interface (Install) 1.25.82 49 Tuesday, September 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.78 60 Wednesday, September 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.77 60 Monday, September 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.75 63 Friday, September 16, 2022 Approved
AWS Command Line Interface (Install) 1.25.73 67 Wednesday, September 14, 2022 Approved
AWS Command Line Interface (Install) 1.25.68 61 Wednesday, September 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.66 65 Friday, September 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.64 73 Wednesday, August 31, 2022 Approved
AWS Command Line Interface (Install) 1.25.63 61 Tuesday, August 30, 2022 Approved
AWS Command Line Interface (Install) 1.25.62 52 Saturday, August 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.59 63 Wednesday, August 24, 2022 Approved
AWS Command Line Interface (Install) 1.25.58 69 Tuesday, August 23, 2022 Approved
AWS Command Line Interface (Install) 1.25.56 60 Friday, August 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.55 66 Thursday, August 18, 2022 Approved
AWS Command Line Interface (Install) 1.25.51 67 Saturday, August 13, 2022 Approved
AWS Command Line Interface (Install) 1.25.49 61 Thursday, August 11, 2022 Approved
AWS Command Line Interface (Install) 1.25.48 63 Wednesday, August 10, 2022 Approved
AWS Command Line Interface (Install) 1.25.46 62 Friday, August 5, 2022 Approved
AWS Command Line Interface (Install) 1.25.43 61 Tuesday, August 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.42 68 Monday, August 1, 2022 Approved
AWS Command Line Interface (Install) 1.25.40 69 Friday, July 29, 2022 Approved
AWS Command Line Interface (Install) 1.25.38 57 Wednesday, July 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.37 55 Tuesday, July 26, 2022 Approved
AWS Command Line Interface (Install) 1.25.35 54 Friday, July 22, 2022 Approved
AWS Command Line Interface (Install) 1.25.32 57 Tuesday, July 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.28 64 Wednesday, July 13, 2022 Approved
AWS Command Line Interface (Install) 1.25.25 55 Friday, July 8, 2022 Approved
AWS Command Line Interface (Install) 1.25.23 66 Wednesday, July 6, 2022 Approved
AWS Command Line Interface (Install) 1.25.22 68 Saturday, July 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.21 64 Friday, July 1, 2022 Approved
AWS Command Line Interface (Install) 1.25.19 60 Wednesday, June 29, 2022 Approved
AWS Command Line Interface (Install) 1.25.18 64 Tuesday, June 28, 2022 Approved
AWS Command Line Interface (Install) 1.25.16 65 Friday, June 24, 2022 Approved
AWS Command Line Interface (Install) 1.25.14 57 Wednesday, June 22, 2022 Approved
AWS Command Line Interface (Install) 1.25.13 69 Tuesday, June 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.10 74 Thursday, June 16, 2022 Approved
AWS Command Line Interface (Install) 1.25.9 51 Wednesday, June 15, 2022 Approved
AWS Command Line Interface (Install) 1.25.8 86 Tuesday, June 14, 2022 Approved
AWS Command Line Interface (Install) 1.25.7 68 Saturday, June 11, 2022 Approved
AWS Command Line Interface (Install) 1.25.6 61 Friday, June 10, 2022 Approved
AWS Command Line Interface (Install) 1.25.4 57 Wednesday, June 8, 2022 Approved
AWS Command Line Interface (Install) 1.25.3 66 Tuesday, June 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.2 65 Friday, June 3, 2022 Approved
AWS Command Line Interface (Install) 1.25.0 78 Wednesday, June 1, 2022 Approved
AWS Command Line Interface (Install) 1.24.9 68 Friday, May 27, 2022 Approved
AWS Command Line Interface (Install) 1.24.7 83 Wednesday, May 25, 2022 Approved
AWS Command Line Interface (Install) 1.24.6 71 Tuesday, May 24, 2022 Approved
AWS Command Line Interface (Install) 1.24.4 77 Friday, May 20, 2022 Approved
AWS Command Line Interface (Install) 1.24.2 73 Wednesday, May 18, 2022 Approved
AWS Command Line Interface (Install) 1.24.1 74 Tuesday, May 17, 2022 Approved
AWS Command Line Interface (Install) 1.23.13 77 Friday, May 13, 2022 Approved
AWS Command Line Interface (Install) 1.23.11 78 Wednesday, May 11, 2022 Approved
AWS Command Line Interface (Install) 1.23.6 102 Wednesday, May 4, 2022 Approved
AWS Command Line Interface (Install) 1.23.5 68 Tuesday, May 3, 2022 Approved
AWS Command Line Interface (Install) 1.23.3 58 Thursday, April 28, 2022 Approved
AWS Command Line Interface (Install) 1.23.1 67 Wednesday, April 27, 2022 Approved
AWS Command Line Interface (Install) 1.23.0 85 Tuesday, April 26, 2022 Approved
AWS Command Line Interface (Install) 1.22.101 77 Saturday, April 23, 2022 Approved
AWS Command Line Interface (Install) 1.22.98 62 Wednesday, April 20, 2022 Approved
AWS Command Line Interface (Install) 1.22.96 73 Friday, April 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.94 77 Wednesday, April 13, 2022 Approved
AWS Command Line Interface (Install) 1.22.93 70 Tuesday, April 12, 2022 Approved
AWS Command Line Interface (Install) 1.22.89 84 Wednesday, April 6, 2022 Approved
AWS Command Line Interface (Install) 1.22.88 71 Tuesday, April 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.86 72 Friday, April 1, 2022 Approved
AWS Command Line Interface (Install) 1.22.84 68 Wednesday, March 30, 2022 Approved
AWS Command Line Interface (Install) 1.22.81 75 Friday, March 25, 2022 Approved
AWS Command Line Interface (Install) 1.22.79 67 Wednesday, March 23, 2022 Approved
AWS Command Line Interface (Install) 1.22.78 72 Tuesday, March 22, 2022 Approved
AWS Command Line Interface (Install) 1.22.77 174 Saturday, March 19, 2022 Approved
AWS Command Line Interface (Install) 1.22.74 69 Tuesday, March 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.71 80 Thursday, March 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.69 76 Tuesday, March 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.68 71 Saturday, March 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.66 72 Thursday, March 3, 2022 Approved
AWS Command Line Interface (Install) 1.22.64 69 Tuesday, March 1, 2022 Approved
AWS Command Line Interface (Install) 1.22.63 70 Saturday, February 26, 2022 Approved
AWS Command Line Interface (Install) 1.22.61 73 Thursday, February 24, 2022 Approved
AWS Command Line Interface (Install) 1.22.59 76 Tuesday, February 22, 2022 Approved
AWS Command Line Interface (Install) 1.22.58 79 Saturday, February 19, 2022 Approved
AWS Command Line Interface (Install) 1.22.56 70 Thursday, February 17, 2022 Approved
AWS Command Line Interface (Install) 1.22.55 71 Tuesday, February 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.54 111 Saturday, February 12, 2022 Approved
AWS Command Line Interface (Install) 1.22.52 83 Thursday, February 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.50 66 Tuesday, February 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.49 65 Saturday, February 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.47 76 Thursday, February 3, 2022 Approved
AWS Command Line Interface (Install) 1.22.46 86 Saturday, January 29, 2022 Approved
AWS Command Line Interface (Install) 1.22.44 88 Thursday, January 27, 2022 Approved
AWS Command Line Interface (Install) 1.22.42 85 Monday, January 24, 2022 Approved
AWS Command Line Interface (Install) 1.22.39 88 Thursday, January 20, 2022 Approved
AWS Command Line Interface (Install) 1.22.37 92 Saturday, January 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.34 81 Thursday, January 13, 2022 Approved
AWS Command Line Interface (Install) 1.22.32 75 Monday, January 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.31 84 Saturday, January 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.29 77 Thursday, January 6, 2022 Approved
AWS Command Line Interface (Install) 1.22.25 160 Tuesday, December 21, 2021 Approved
AWS Command Line Interface (Install) 1.22.24 77 Tuesday, December 14, 2021 Approved
AWS Command Line Interface (Install) 1.22.22 80 Thursday, December 9, 2021 Approved
AWS Command Line Interface (Install) 1.22.21 62 Tuesday, December 7, 2021 Approved
AWS Command Line Interface (Install) 1.22.13 99 Thursday, November 25, 2021 Approved
AWS Command Line Interface (Install) 1.22.11 87 Tuesday, November 23, 2021 Approved
AWS Command Line Interface (Install) 1.22.10 69 Saturday, November 20, 2021 Approved
AWS Command Line Interface (Install) 1.22.8 89 Thursday, November 18, 2021 Approved
AWS Command Line Interface (Install) 1.22.6 86 Tuesday, November 16, 2021 Approved
AWS Command Line Interface (Install) 1.22.5 86 Saturday, November 13, 2021 Approved
AWS Command Line Interface (Install) 1.22.3 110 Thursday, November 11, 2021 Approved
AWS Command Line Interface (Install) 1.22.1 84 Tuesday, November 9, 2021 Approved
AWS Command Line Interface (Install) 1.21.12 145 Saturday, November 6, 2021 Approved
AWS Command Line Interface (Install) 1.21.0 86 Thursday, October 21, 2021 Approved
AWS Command Line Interface (Install) 1.20.64 83 Tuesday, October 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.63 87 Saturday, October 16, 2021 Approved
AWS Command Line Interface (Install) 1.20.61 90 Thursday, October 14, 2021 Approved
AWS Command Line Interface (Install) 1.20.58 207 Saturday, October 9, 2021 Approved
AWS Command Line Interface (Install) 1.20.57 94 Friday, October 8, 2021 Approved
AWS Command Line Interface (Install) 1.20.56 90 Thursday, October 7, 2021 Approved
AWS Command Line Interface (Install) 1.20.54 86 Tuesday, October 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.53 82 Saturday, October 2, 2021 Approved
AWS Command Line Interface (Install) 1.20.51 88 Thursday, September 30, 2021 Approved
AWS Command Line Interface (Install) 1.20.49 89 Tuesday, September 28, 2021 Approved
AWS Command Line Interface (Install) 1.20.48 89 Saturday, September 25, 2021 Approved
AWS Command Line Interface (Install) 1.20.46 82 Thursday, September 23, 2021 Approved
AWS Command Line Interface (Install) 1.20.44 108 Saturday, September 18, 2021 Approved
AWS Command Line Interface (Install) 1.20.40 120 Saturday, September 11, 2021 Approved
AWS Command Line Interface (Install) 1.20.38 94 Thursday, September 9, 2021 Approved
AWS Command Line Interface (Install) 1.20.36 82 Saturday, September 4, 2021 Approved
AWS Command Line Interface (Install) 1.20.34 102 Thursday, September 2, 2021 Approved
AWS Command Line Interface (Install) 1.20.32 95 Tuesday, August 31, 2021 Approved
AWS Command Line Interface (Install) 1.20.31 84 Saturday, August 28, 2021 Approved
AWS Command Line Interface (Install) 1.20.29 81 Thursday, August 26, 2021 Approved
AWS Command Line Interface (Install) 1.20.27 91 Tuesday, August 24, 2021 Approved
AWS Command Line Interface (Install) 1.20.26 122 Saturday, August 21, 2021 Approved
AWS Command Line Interface (Install) 1.20.24 90 Thursday, August 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.23 111 Tuesday, August 17, 2021 Approved
AWS Command Line Interface (Install) 1.20.22 79 Tuesday, August 17, 2021 Approved
AWS Command Line Interface (Install) 1.20.21 97 Saturday, August 14, 2021 Approved
AWS Command Line Interface (Install) 1.20.19 91 Thursday, August 12, 2021 Approved
AWS Command Line Interface (Install) 1.20.17 94 Tuesday, August 10, 2021 Approved
AWS Command Line Interface (Install) 1.20.16 101 Saturday, August 7, 2021 Approved
AWS Command Line Interface (Install) 1.20.15 108 Thursday, August 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.14 100 Thursday, August 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.12 84 Tuesday, August 3, 2021 Approved
AWS Command Line Interface (Install) 1.20.9 88 Thursday, July 29, 2021 Approved
AWS Command Line Interface (Install) 1.20.7 100 Tuesday, July 27, 2021 Approved
AWS Command Line Interface (Install) 1.20.6 97 Saturday, July 24, 2021 Approved
AWS Command Line Interface (Install) 1.20.4 92 Thursday, July 22, 2021 Approved
AWS Command Line Interface (Install) 1.20.2 91 Monday, July 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.1 102 Saturday, July 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.111 77 Wednesday, July 14, 2021 Approved
AWS Command Line Interface (Install) 1.19.110 90 Tuesday, July 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.109 91 Saturday, July 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.107 80 Thursday, July 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.105 89 Friday, July 2, 2021 Approved
AWS Command Line Interface (Install) 1.19.103 1165 Thursday, July 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.102 93 Tuesday, June 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.101 90 Saturday, June 26, 2021 Approved
AWS Command Line Interface (Install) 1.19.99 106 Thursday, June 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.98 77 Tuesday, June 22, 2021 Approved
AWS Command Line Interface (Install) 1.19.96 92 Thursday, June 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.94 92 Tuesday, June 15, 2021 Approved
AWS Command Line Interface (Install) 1.19.93 94 Saturday, June 12, 2021 Approved
AWS Command Line Interface (Install) 1.19.92 93 Thursday, June 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.91 96 Thursday, June 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.89 90 Tuesday, June 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.88 87 Saturday, June 5, 2021 Approved
AWS Command Line Interface (Install) 1.19.86 91 Thursday, June 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.84 86 Saturday, May 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.82 89 Thursday, May 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.79 97 Tuesday, May 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.78 91 Saturday, May 22, 2021 Approved
AWS Command Line Interface (Install) 1.19.77 82 Friday, May 21, 2021 Approved
AWS Command Line Interface (Install) 1.19.76 84 Thursday, May 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.75 92 Wednesday, May 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.74 100 Tuesday, May 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.72 81 Friday, May 14, 2021 Approved
AWS Command Line Interface (Install) 1.19.70 102 Tuesday, May 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.69 104 Saturday, May 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.67 110 Thursday, May 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.64 98 Monday, May 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.62 106 Saturday, May 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.60 77 Thursday, April 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.58 90 Tuesday, April 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.57 86 Saturday, April 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.56 93 Friday, April 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.54 94 Tuesday, April 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.52 81 Thursday, April 15, 2021 Approved
AWS Command Line Interface (Install) 1.19.50 78 Tuesday, April 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.49 93 Saturday, April 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.45 98 Tuesday, April 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.44 85 Saturday, April 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.42 87 Thursday, April 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.40 83 Monday, March 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.39 107 Saturday, March 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.37 103 Thursday, March 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.35 111 Wednesday, March 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.34 103 Tuesday, March 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.32 88 Friday, March 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.30 107 Thursday, March 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.29 89 Wednesday, March 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.28 118 Tuesday, March 16, 2021 Approved
AWS Command Line Interface (Install) 1.19.27 102 Saturday, March 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.26 4325 Thursday, March 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.25 107 Thursday, March 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.23 106 Tuesday, March 9, 2021 Approved
AWS Command Line Interface (Install) 1.19.22 91 Saturday, March 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.21 101 Friday, March 5, 2021 Approved
AWS Command Line Interface (Install) 1.19.20 106 Thursday, March 4, 2021 Approved
AWS Command Line Interface (Install) 1.19.19 108 Wednesday, March 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.17 115 Saturday, February 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.16 105 Friday, February 26, 2021 Approved
AWS Command Line Interface (Install) 1.19.15 96 Thursday, February 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.13 86 Tuesday, February 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.12 88 Saturday, February 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.11 87 Friday, February 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.10 107 Thursday, February 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.8 92 Tuesday, February 16, 2021 Approved
AWS Command Line Interface (Install) 1.19.7 112 Saturday, February 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.4 129 Tuesday, February 9, 2021 Approved
AWS Command Line Interface (Install) 1.19.3 195 Saturday, February 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.1 118 Thursday, February 4, 2021 Approved
AWS Command Line Interface (Install) 1.18.223 109 Saturday, January 30, 2021 Approved
AWS Command Line Interface (Install) 1.18.221 112 Thursday, January 28, 2021 Approved
AWS Command Line Interface (Install) 1.18.220 112 Wednesday, January 27, 2021 Approved
AWS Command Line Interface (Install) 1.18.219 130 Saturday, January 23, 2021 Approved
AWS Command Line Interface (Install) 1.18.216 96 Saturday, January 16, 2021 Approved
AWS Command Line Interface (Install) 1.18.214 118 Thursday, January 14, 2021 Approved
AWS Command Line Interface (Install) 1.18.212 113 Tuesday, January 12, 2021 Approved
AWS Command Line Interface (Install) 1.18.210 112 Thursday, January 7, 2021 Approved
AWS Command Line Interface (Install) 1.18.208 119 Tuesday, January 5, 2021 Approved
AWS Command Line Interface (Install) 1.18.207 101 Friday, January 1, 2021 Approved
AWS Command Line Interface (Install) 1.18.206 107 Thursday, December 31, 2020 Approved
AWS Command Line Interface (Install) 1.18.205 110 Tuesday, December 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.204 97 Monday, December 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.201 95 Tuesday, December 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.200 103 Friday, December 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.197 97 Tuesday, December 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.196 100 Tuesday, December 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.195 1770 Saturday, December 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.193 95 Wednesday, December 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.191 90 Tuesday, December 8, 2020 Approved
AWS Command Line Interface (Install) 1.18.190 101 Saturday, December 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.184 110 Tuesday, November 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.183 112 Saturday, November 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.181 127 Thursday, November 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.179 117 Tuesday, November 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.178 120 Saturday, November 14, 2020 Approved
AWS Command Line Interface (Install) 1.18.176 96 Thursday, November 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.174 110 Monday, November 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.173 112 Saturday, November 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.171 178 Thursday, November 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.170 123 Tuesday, November 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.167 127 Thursday, October 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.165 236 Tuesday, October 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.164 137 Saturday, October 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.162 128 Thursday, October 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.160 124 Tuesday, October 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.159 104 Saturday, October 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.157 182 Saturday, October 10, 2020 Approved
AWS Command Line Interface (Install) 1.18.153 120 Tuesday, October 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.152 133 Saturday, October 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.150 112 Thursday, October 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.148 121 Tuesday, September 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.147 145 Saturday, September 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.146 100 Thursday, September 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.144 101 Wednesday, September 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.143 112 Tuesday, September 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.142 116 Saturday, September 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.141 406 Thursday, September 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.140 121 Thursday, September 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.138 102 Tuesday, September 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.137 115 Saturday, September 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.133 167 Saturday, September 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.131 123 Thursday, September 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.129 128 Tuesday, September 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.128 136 Saturday, August 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.126 167 Thursday, August 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.125 139 Tuesday, August 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.123 148 Thursday, August 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.121 172 Tuesday, August 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.120 124 Saturday, August 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.119 119 Thursday, August 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.116 6645 Monday, August 10, 2020 Approved
AWS Command Line Interface (Install) 1.18.115 139 Saturday, August 8, 2020 Approved
AWS Command Line Interface (Install) 1.18.113 176 Thursday, August 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.111 165 Tuesday, August 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.110 174 Saturday, August 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.108 152 Thursday, July 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.106 173 Tuesday, July 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.105 173 Saturday, July 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.103 207 Thursday, July 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.101 1287 Tuesday, July 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.100 171 Saturday, July 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.96 196 Thursday, July 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.94 223 Tuesday, July 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.92 195 Thursday, July 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.90 195 Tuesday, June 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.89 240 Saturday, June 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.87 203 Thursday, June 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.85 210 Tuesday, June 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.84 233 Saturday, June 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.82 197 Thursday, June 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.80 274 Tuesday, June 16, 2020 Approved
AWS Command Line Interface (Install) 1.18.79 219 Saturday, June 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.75 188 Tuesday, June 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.74 214 Saturday, June 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.72 215 Thursday, June 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.70 208 Tuesday, June 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.69 6562 Friday, May 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.68 236 Thursday, May 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.65 25187 Thursday, May 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.63 182 Wednesday, May 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.62 230 Tuesday, May 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.61 206 Saturday, May 16, 2020 Approved
AWS Command Line Interface (Install) 1.18.57 194 Tuesday, May 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.56 253 Saturday, May 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.54 209 Thursday, May 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.52 204 Tuesday, May 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.51 276 Saturday, May 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.50 171 Friday, May 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.49 202 Thursday, April 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.46 374 Saturday, April 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.43 220 Wednesday, April 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.42 552 Tuesday, April 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.41 195 Friday, April 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.39 224 Thursday, April 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.36 331 Saturday, April 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.35 197 Friday, April 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.34 180 Thursday, April 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.31 226 Saturday, March 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.30 229 Thursday, March 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.29 187 Thursday, March 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.28 300 Wednesday, March 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.26 232 Saturday, March 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.25 227 Friday, March 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.24 215 Thursday, March 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.22 198 Tuesday, March 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.21 254 Saturday, March 14, 2020 Approved
AWS Command Line Interface (Install) 1.18.20 222 Friday, March 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.19 229 Thursday, March 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.16 178 Saturday, March 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.15 164 Friday, March 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.14 228 Thursday, March 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.11 22208 Saturday, February 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.9 5880 Friday, February 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.6 3723 Tuesday, February 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.5 4425 Friday, February 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.4 1219 Friday, February 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.3 1409 Thursday, February 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.2 1392 Wednesday, February 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.1 1665 Tuesday, February 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.0 1973 Saturday, February 15, 2020 Approved
AWS Command Line Interface (Install) 1.17.17 4221 Friday, February 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.16 2792 Thursday, February 13, 2020 Approved
AWS Command Line Interface (Install) 1.17.15 1542 Wednesday, February 12, 2020 Approved
AWS Command Line Interface (Install) 1.17.13 3047 Saturday, February 8, 2020 Approved
AWS Command Line Interface (Install) 1.17.12 1234 Friday, February 7, 2020 Approved
AWS Command Line Interface (Install) 1.17.11 163 Thursday, February 6, 2020 Approved
AWS Command Line Interface (Install) 1.17.10 189 Wednesday, February 5, 2020 Approved
AWS Command Line Interface (Install) 1.17.9 8280 Saturday, January 25, 2020 Approved
AWS Command Line Interface (Install) 1.17.8 953 Friday, January 24, 2020 Approved
AWS Command Line Interface (Install) 1.17.7 3043 Wednesday, January 22, 2020 Approved
AWS Command Line Interface (Install) 1.17.6 289 Tuesday, January 21, 2020 Approved
AWS Command Line Interface (Install) 1.17.5 2568 Saturday, January 18, 2020 Approved
AWS Command Line Interface (Install) 1.17.4 1214 Friday, January 17, 2020 Approved
AWS Command Line Interface (Install) 1.17.3 1110 Thursday, January 16, 2020 Approved
AWS Command Line Interface (Install) 1.17.2 2033 Tuesday, January 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.1 1187 Tuesday, January 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.0 2025 Saturday, January 11, 2020 Approved
AWS Command Line Interface (Install) 1.16.314 1393 Friday, January 10, 2020 Approved
AWS Command Line Interface (Install) 1.16.313 1418 Thursday, January 9, 2020 Approved
AWS Command Line Interface (Install) 1.16.312 1122 Wednesday, January 8, 2020 Approved
AWS Command Line Interface (Install) 1.16.311 1349 Tuesday, January 7, 2020 Approved
AWS Command Line Interface (Install) 1.16.310 188 Friday, January 3, 2020 Approved
AWS Command Line Interface (Install) 1.16.309 1432 Tuesday, December 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.308 5817 Saturday, December 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.307 1064 Friday, December 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.305 2039 Wednesday, December 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.303 2532 Saturday, December 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.302 1187 Friday, December 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.301 1534 Thursday, December 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.300 1294 Wednesday, December 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.299 1548 Tuesday, December 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.298 2561 Friday, December 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.297 1310 Thursday, December 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.296 1351 Wednesday, December 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.294 822 Tuesday, December 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.292 4719 Wednesday, November 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.291 1371 Tuesday, November 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.290 2076 Saturday, November 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.289 1211 Friday, November 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.287 1299 Thursday, November 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.286 1754 Wednesday, November 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.284 1554 Tuesday, November 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.283 2216 Saturday, November 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.282 1278 Friday, November 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.281 1559 Thursday, November 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.280 1519 Wednesday, November 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.279 1467 Tuesday, November 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.278 2089 Saturday, November 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.277 2678 Friday, November 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.276 1399 Thursday, November 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.274 1644 Tuesday, November 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.273 1298 Tuesday, November 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.272 2089 Saturday, November 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.271 1013 Friday, November 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.270 1506 Thursday, October 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.269 1568 Wednesday, October 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.268 1623 Tuesday, October 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.266 2890 Friday, October 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.265 1802 Thursday, October 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.264 1549 Wednesday, October 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.263 3565 Friday, October 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.262 732 Friday, October 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.261 2353 Thursday, October 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.260 1574 Wednesday, October 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.259 1511 Tuesday, October 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.258 1965 Saturday, October 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.257 1331 Friday, October 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.256 2067 Thursday, October 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.255 1714 Wednesday, October 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.254 1400 Tuesday, October 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.253 2034 Saturday, October 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.252 1523 Friday, October 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.251 2146 Thursday, October 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.250 1643 Wednesday, October 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.249 1664 Tuesday, October 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.248 2367 Saturday, September 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.247 1144 Friday, September 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.246 1846 Wednesday, September 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.245 1450 Wednesday, September 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.244 1538 Tuesday, September 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.243 1865 Saturday, September 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.242 1237 Friday, September 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.241 2347 Thursday, September 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.240 1506 Wednesday, September 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.239 1158 Tuesday, September 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.238 7172 Friday, September 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.237 1831 Thursday, September 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.236 1398 Wednesday, September 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.235 1327 Tuesday, September 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.234 1806 Saturday, September 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.233 1221 Friday, September 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.232 1853 Thursday, September 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.231 1266 Wednesday, September 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.230 2516 Saturday, August 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.229 1888 Friday, August 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.228 2831 Thursday, August 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.227 2368 Wednesday, August 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.226 1279 Tuesday, August 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.225 2035 Friday, August 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.224 1092 Friday, August 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.223 1158 Thursday, August 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.222 1240 Wednesday, August 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.221 2598 Tuesday, August 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.220 1867 Saturday, August 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.219 1119 Friday, August 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.218 1194 Thursday, August 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.217 1681 Wednesday, August 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.216 1136 Tuesday, August 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.215 1665 Saturday, August 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.214 1030 Friday, August 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.213 2226 Thursday, August 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.212 554 Wednesday, August 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.211 1723 Tuesday, August 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.210 1674 Saturday, August 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.209 5131 Wednesday, July 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.208 1015 Tuesday, July 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.207 1631 Saturday, July 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.206 1189 Friday, July 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.205 1404 Thursday, July 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.204 1201 Tuesday, July 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.203 1205 Tuesday, July 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.202 1159 Monday, July 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.201 846 Saturday, July 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.200 918 Friday, July 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.199 1118 Thursday, July 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.198 3119 Saturday, July 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.197 959 Friday, July 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.196 1036 Thursday, July 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.195 1054 Wednesday, July 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.194 1264 Tuesday, July 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.193 2743 Thursday, July 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.192 984 Wednesday, July 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.191 987 Tuesday, July 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.190 1549 Saturday, June 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.189 875 Friday, June 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.188 986 Thursday, June 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.186 1212 Wednesday, June 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.185 1037 Tuesday, June 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.184 2838 Saturday, June 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.183 1000 Friday, June 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.182 868 Thursday, June 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.181 1370 Wednesday, June 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.180 1458 Tuesday, June 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.179 1692 Saturday, June 15, 2019