Unpacking Software Livestream

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

Learn More

Chocolatey Product Spotlight

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

Learn More

Chocolatey Coding Livestream

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

Learn More

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

Webinar from
Wednesday, 17 January 2024

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

Watch On-Demand
Chocolatey Community Coffee Break

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

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

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

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

Livestream from
Thursday, 9 June 2022

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

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

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

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

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

Watch On-Demand

Downloads:

5,102,589

Downloads of v 1.16.10:

1,298

Last Update:

10 Sep 2018

Package Maintainer(s):

Software Author(s):

  • Amazon Web Services

Tags:

awscli aws cli cloud amazon web services s3 admin

AWS Command Line Interface (Install)

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

  • 1
  • 2
  • 3

1.16.10 | Updated: 10 Sep 2018

Downloads:

5,102,589

Downloads of v 1.16.10:

1,298

Maintainer(s):

Software Author(s):

  • Amazon Web Services

AWS Command Line Interface (Install) 1.16.10

This is not the latest version of AWS Command Line Interface (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 (Install), run the following command from the command line or from PowerShell:

>

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

>

To uninstall AWS Command Line Interface (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="'1.16.10'" [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="'1.16.10'" 
$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: '1.16.10'
    source: INTERNAL REPO URL
    state: present

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


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

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


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

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


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

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


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

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

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 10 Sep 2018.

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)"
$url        = 'https://s3.amazonaws.com/aws-cli/AWSCLI32-1.16.10.msi'
$checksum   = '4d021bef7a303c9e257104b135777f5089c2ed21342f706288eeb10127889c68'
$url64      = 'https://s3.amazonaws.com/aws-cli/AWSCLI64-1.16.10.msi'
$checksum64 = '156651e9a949fbbf7ff5e1fba3d91a830470ccfb996f37e686ffd56632cf8d24'
 
$packageArgs = @{
  packageName   = $env:ChocolateyPackageName
  unzipLocation = $toolsDir
  fileType      = 'MSI'
  url           = $url
  url64bit      = $url64
  softwareName  = 'AWS Command Line Interface*'
  checksum      = $checksum
  checksumType  = 'sha256'
  checksum64    = $checksum64
  checksumType64= 'sha256'
  silentArgs    = "/qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
  validExitCodes= @(0, 3010, 1641)
}

Install-ChocolateyPackage @packageArgs
tools\chocolateyuninstall.ps1
$ErrorActionPreference = 'Stop';

$packageArgs = @{
  packageName   = $env:ChocolateyPackageName
  softwareName  = 'AWS Command Line Interface*'
  fileType      = 'MSI'
  silentArgs    = "/qn /norestart"
  validExitCodes= @(0, 3010, 1605, 1614, 1641)
}

$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']

if ($key.Count -eq 1) {
  $key | % { 
    $packageArgs['file'] = "$($_.UninstallString)"
    if ($packageArgs['fileType'] -eq 'MSI') {
      $packageArgs['silentArgs'] = "$($_.PSChildName) $($packageArgs['silentArgs'])"
      
      $packageArgs['file'] = ''
    }

    Uninstall-ChocolateyPackage @packageArgs
  }
} elseif ($key.Count -eq 0) {
  Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
  Write-Warning "$($key.Count) matches found!"
  Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
  Write-Warning "Please alert package maintainer the following keys were matched:"
  $key | % {Write-Warning "- $($_.DisplayName)"}
}

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.32 3189 Friday, January 10, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.31 13 Thursday, January 9, 2025
Waiting for Maintainer
AWS Command Line Interface v2 (Install) 2.22.30 6177 Wednesday, January 8, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.29 4551 Tuesday, January 7, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.28 6859 Saturday, January 4, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.27 2727 Friday, January 3, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.26 8160 Monday, December 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.25 4349 Saturday, December 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.24 2687 Friday, December 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.23 4978 Tuesday, December 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.22 4561 Saturday, December 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.21 2676 Friday, December 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.20 5168 Thursday, December 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.19 1479 Wednesday, December 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.18 5495 Tuesday, December 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.17 7056 Saturday, December 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.16 2562 Friday, December 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.15 2088 Thursday, December 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.14 4668 Wednesday, December 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.13 4081 Tuesday, December 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.12 11161 Thursday, December 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.10 3805 Wednesday, December 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.8 6155 Tuesday, December 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.7 10321 Thursday, November 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.5 6107 Tuesday, November 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.4 8413 Saturday, November 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.2 5545 Thursday, November 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.1 3501 Wednesday, November 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.0 4247 Tuesday, November 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.3 8727 Saturday, November 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.2 2953 Friday, November 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.0 2954 Thursday, November 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.20.0 5366 Wednesday, November 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.5 5052 Tuesday, November 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.4 7871 Saturday, November 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.3 2140 Friday, November 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.2 3414 Thursday, November 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.1 9807 Saturday, November 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.0 2505 Friday, November 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.18 2145 Thursday, October 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.17 77 Wednesday, October 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.16 5609 Tuesday, October 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.15 5379 Saturday, October 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.14 10201 Friday, October 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.13 4161 Thursday, October 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.12 2985 Wednesday, October 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.11 4704 Tuesday, October 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.10 8228 Saturday, October 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.9 3409 Friday, October 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.8 4056 Thursday, October 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.7 3728 Wednesday, October 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.6 3371 Tuesday, October 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.4 8869 Friday, October 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.3 3402 Thursday, October 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.2 3769 Wednesday, October 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.1 4559 Tuesday, October 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.0 6916 Saturday, October 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.65 2549 Friday, October 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.64 3702 Thursday, October 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.63 2654 Wednesday, October 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.61 11201 Saturday, September 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.59 5703 Thursday, September 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.58 3684 Wednesday, September 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.57 3898 Tuesday, September 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.56 7831 Saturday, September 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.55 2887 Friday, September 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.54 3610 Thursday, September 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.53 3634 Wednesday, September 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.52 3746 Tuesday, September 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.51 8037 Saturday, September 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.50 3070 Friday, September 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.49 3936 Thursday, September 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.48 4579 Wednesday, September 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.47 6102 Monday, September 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.46 4033 Saturday, September 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.45 208 Friday, September 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.44 3217 Thursday, September 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.43 7352 Wednesday, September 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.42 9230 Saturday, August 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.40 4493 Thursday, August 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.39 3874 Wednesday, August 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.38 3542 Tuesday, August 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.37 7500 Saturday, August 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.36 2902 Friday, August 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.35 3271 Thursday, August 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.34 3779 Wednesday, August 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.33 3386 Tuesday, August 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.32 6780 Saturday, August 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.31 2474 Friday, August 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.30 2772 Thursday, August 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.29 4374 Wednesday, August 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.28 3151 Tuesday, August 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.27 5310 Saturday, August 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.26 3073 Friday, August 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.25 3122 Thursday, August 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.24 2564 Wednesday, August 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.23 3981 Tuesday, August 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.22 6017 Saturday, August 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.21 2810 Friday, August 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.20 5492 Wednesday, July 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.19 2396 Tuesday, July 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.18 7261 Friday, July 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.16 5421 Wednesday, July 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.15 3257 Tuesday, July 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.14 8682 Friday, July 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.13 12336 Saturday, July 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.12 4053 Thursday, July 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.11 3652 Wednesday, July 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.10 3821 Tuesday, July 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.9 7882 Saturday, July 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.8 4698 Thursday, July 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.7 4190 Wednesday, July 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.6 3403 Tuesday, July 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.5 7461 Saturday, June 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.4 1895 Friday, June 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.3 80 Thursday, June 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.2 6241 Wednesday, June 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.1 4527 Tuesday, June 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.0 9374 Friday, June 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.12 4163 Thursday, June 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.11 2706 Wednesday, June 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.10 4744 Tuesday, June 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.9 8027 Friday, June 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.8 1914 Friday, June 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.7 4379 Thursday, June 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.6 3892 Wednesday, June 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.5 4483 Tuesday, June 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.4 7372 Saturday, June 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.3 1682 Friday, June 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.2 4850 Thursday, June 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.1 3520 Wednesday, June 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.0 3262 Tuesday, June 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.62 6036 Saturday, June 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.61 3024 Friday, May 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.60 5260 Thursday, May 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.59 3900 Wednesday, May 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.58 10977 Saturday, May 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.57 3507 Friday, May 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.56 3121 Thursday, May 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.55 4409 Wednesday, May 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.54 2769 Tuesday, May 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.53 6201 Saturday, May 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.52 2530 Friday, May 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.51 3568 Thursday, May 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.50 2999 Wednesday, May 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.49 3023 Tuesday, May 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.48 7415 Saturday, May 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.47 3734 Thursday, May 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.46 1018 Thursday, May 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.45 6661 Tuesday, May 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.44 17369 Saturday, May 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.43 4586 Thursday, May 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.42 10606 Saturday, April 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.41 5077 Thursday, April 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.40 10113 Saturday, April 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.39 4470 Thursday, April 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.38 10733 Saturday, April 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.37 4296 Thursday, April 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.36 10064 Saturday, April 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.35 4494 Thursday, April 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.34 12145 Saturday, March 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.33 5028 Thursday, March 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.32 11292 Saturday, March 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.31 6480 Thursday, March 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.30 12782 Saturday, March 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.28 10957 Tuesday, March 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.27 7027 Saturday, March 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.26 6850 Thursday, March 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.25 21982 Saturday, March 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.24 8432 Thursday, February 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.23 15549 Saturday, February 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.22 8354 Thursday, February 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.21 12853 Saturday, February 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.20 7115 Thursday, February 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.19 16620 Saturday, February 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.17 20728 Saturday, February 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.16 6675 Thursday, February 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.15 14910 Saturday, January 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.14 7105 Thursday, January 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.13 8786 Tuesday, January 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.12 8913 Saturday, January 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.11 8030 Thursday, January 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.10 13571 Saturday, January 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.9 7092 Thursday, January 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.8 12492 Saturday, January 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.7 6342 Thursday, January 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.6 10135 Saturday, December 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.5 5021 Thursday, December 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.4 8675 Saturday, December 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.3 6477 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 5128 Thursday, December 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.0 16230 Saturday, December 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.6 8754 Thursday, December 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.5 15049 Friday, December 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.2 6385 Wednesday, November 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.0 7088 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 14523 Saturday, November 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.36 5238 Thursday, November 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.35 8366 Tuesday, November 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.34 9156 Saturday, November 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.32 15391 Saturday, November 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.31 6368 Thursday, November 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.30 13069 Saturday, October 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.29 6257 Thursday, October 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.28 13416 Saturday, October 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.27 8104 Thursday, October 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.26 13436 Saturday, October 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.25 15850 Saturday, October 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.24 6404 Thursday, October 5, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.23 7958 Tuesday, October 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.21 149 Saturday, September 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.20 24708 Thursday, September 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.19 12572 Saturday, September 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.18 7106 Thursday, September 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.16 17746 Thursday, September 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.15 12152 Saturday, September 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.14 8494 Thursday, August 31, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.13 13387 Saturday, August 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.12 7027 Thursday, August 24, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.11 1646 Saturday, August 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.9 27514 Saturday, August 12, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.8 7270 Thursday, August 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.7 12969 Saturday, August 5, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.6 7603 Thursday, August 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.5 90 Saturday, July 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.4 15806 Thursday, July 27, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.3 14462 Saturday, July 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.2 14376 Thursday, July 20, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.1 23120 Friday, July 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.0 28039 Saturday, July 8, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.7 11025 Thursday, July 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.6 17579 Saturday, July 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.5 7361 Friday, June 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.4 8124 Thursday, June 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.3 17502 Saturday, June 24, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.2 10891 Thursday, June 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.1 18162 Saturday, June 17, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.0 11917 Thursday, June 15, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.27 13207 Saturday, June 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.26 6989 Thursday, June 8, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.25 12528 Saturday, June 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.24 7231 Thursday, June 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.23 12701 Saturday, May 27, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.22 7832 Thursday, May 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.21 13235 Saturday, May 20, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.20 25210 Saturday, May 13, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.19 9795 Thursday, May 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.17 17172 Thursday, May 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.16 16330 Saturday, April 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.13 24507 Saturday, April 15, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.11 21930 Monday, April 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.10 9186 Thursday, April 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.9 8733 Tuesday, April 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.8 9256 Saturday, April 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.6 17735 Saturday, March 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.5 6853 Thursday, March 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.4 17504 Saturday, March 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.2 17681 Saturday, March 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.1 7558 Thursday, March 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.0 14306 Friday, March 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.4 5949 Thursday, March 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.3 11631 Saturday, February 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.2 8221 Thursday, February 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.1 12536 Saturday, February 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.23 17740 Saturday, February 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.22 7350 Thursday, February 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.21 11296 Monday, February 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.20 11454 Thursday, February 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.19 11423 Monday, January 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.18 11743 Thursday, January 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.17 13393 Saturday, January 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.16 8672 Thursday, January 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.15 12843 Saturday, January 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.14 7510 Thursday, January 12, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.13 15792 Friday, January 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.12 14448 Saturday, December 31, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.11 7007 Thursday, December 29, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.10 11208 Friday, December 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.9 7497 Thursday, December 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.8 12855 Saturday, December 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.7 8516 Thursday, December 15, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.6 13940 Saturday, December 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.5 7432 Thursday, December 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.4 12290 Saturday, December 3, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.3 6368 Thursday, December 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.2 5450 Wednesday, November 30, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.1 13505 Thursday, November 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.0 16099 Saturday, November 19, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.13 6795 Thursday, November 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.12 9607 Saturday, November 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.11 11588 Thursday, November 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.9 13277 Saturday, November 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.8 7493 Thursday, November 3, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.7 15729 Friday, October 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.6 7398 Thursday, October 27, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.5 10788 Saturday, October 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.3 17771 Friday, October 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.2 15596 Saturday, October 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.1 6595 Thursday, October 6, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.0 10806 Saturday, October 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.35 13655 Saturday, September 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.34 6726 Thursday, September 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.33 11605 Saturday, September 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.32 6924 Thursday, September 15, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.31 14073 Saturday, September 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.30 7648 Thursday, September 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.29 13880 Monday, September 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.28 19864 Thursday, September 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.26 23203 Thursday, August 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.25 16568 Saturday, August 20, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.24 11606 Wednesday, August 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.22 15288 Friday, August 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.21 32583 Thursday, August 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.20 16108 Saturday, July 30, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.19 7928 Thursday, July 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.18 14075 Saturday, July 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.17 8196 Thursday, July 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.16 13993 Saturday, July 16, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.15 7264 Thursday, July 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.14 13314 Saturday, July 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.13 6238 Thursday, July 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.11 27779 Saturday, June 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.9 18290 Saturday, June 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.8 4863 Friday, June 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.7 21299 Thursday, June 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.6 11593 Saturday, June 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.5 6963 Thursday, June 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.4 11545 Friday, May 27, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.3 6125 Thursday, May 26, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.2 12301 Saturday, May 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.1 7923 Wednesday, May 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.0 11218 Saturday, May 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.4 6830 Wednesday, May 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.3 8220 Sunday, May 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.2 6872 Thursday, May 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.1 9359 Friday, April 29, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.0 5266 Thursday, April 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.8 10730 Friday, April 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.7 3709 Thursday, April 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.6 10540 Saturday, April 16, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.4 11248 Saturday, April 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.3 5818 Thursday, April 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.2 8586 Saturday, April 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.1 5844 Thursday, March 31, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.0 6702 Monday, March 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.29 8252 Saturday, March 26, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.28 5493 Thursday, March 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.27 10422 Friday, March 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.25 12184 Friday, March 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.24 5931 Wednesday, March 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.23 8752 Friday, March 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.22 6042 Wednesday, March 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.21 22695 Friday, February 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.20 6049 Wednesday, February 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.19 8089 Friday, February 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.18 10524 Friday, February 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.17 6758 Wednesday, February 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.16 8285 Friday, February 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.15 10538 Friday, January 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.13 10800 Friday, January 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.12 14760 Wednesday, January 19, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.11 6747 Friday, January 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.10 4145 Wednesday, January 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.9 6802 Friday, January 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.7 13181 Wednesday, December 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.6 16865 Friday, December 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.5 8480 Saturday, December 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.4 2617 Friday, December 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.3 4962 Tuesday, November 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.2 6567 Saturday, November 27, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.1 6051 Wednesday, November 24, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.0 6789 Friday, November 19, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.7 5192 Wednesday, November 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.6 7371 Friday, November 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.5 5100 Wednesday, November 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.4 6899 Friday, November 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.0 16192 Friday, October 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.47 4838 Wednesday, October 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.46 6646 Friday, October 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.45 5707 Tuesday, October 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.43 12443 Friday, October 1, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.42 5066 Wednesday, September 29, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.41 6535 Friday, September 24, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.40 3961 Wednesday, September 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.39 6047 Friday, September 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.38 4395 Wednesday, September 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.37 7468 Friday, September 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.36 4140 Wednesday, September 8, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.35 5746 Friday, September 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.33 7948 Friday, August 27, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.32 3612 Wednesday, August 25, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.31 6392 Friday, August 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.30 4155 Wednesday, August 18, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.29 5771 Friday, August 13, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.28 3837 Wednesday, August 11, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.27 6382 Friday, August 6, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.26 3309 Wednesday, August 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.25 7443 Saturday, July 31, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.24 2014 Friday, July 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.23 2364 Wednesday, July 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.22 6906 Friday, July 23, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.21 4497 Wednesday, July 21, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.20 5164 Friday, July 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.19 3341 Thursday, July 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.18 7045 Friday, July 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.17 3865 Wednesday, July 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.16 7014 Friday, July 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.15 5959 Wednesday, June 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.14 5447 Friday, June 25, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.13 7777 Thursday, June 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.12 6068 Wednesday, June 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.11 5569 Friday, June 11, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.10 4711 Wednesday, June 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.9 5964 Friday, June 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.8 3367 Wednesday, June 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.7 6435 Friday, May 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.6 4359 Wednesday, May 26, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.5 13302 Saturday, May 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.4 5559 Wednesday, May 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.3 5752 Friday, May 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.2 3939 Wednesday, May 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.1 5013 Friday, April 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.0 3126 Wednesday, April 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.39 113 Thursday, April 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.38 12350 Friday, April 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.37 4061 Wednesday, April 14, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.36 5636 Friday, April 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.35 413 Wednesday, April 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.34 9238 Friday, April 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.33 3529 Wednesday, March 31, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.32 547 Tuesday, March 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.29 53300 Tuesday, March 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.28 18510 Tuesday, February 23, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.27 33734 Wednesday, February 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.26 5925 Friday, February 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.25 3073 Wednesday, February 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.24 6741 Friday, February 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.23 3522 Wednesday, February 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.22 9925 Friday, January 29, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.21 7675 Friday, January 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.20 4337 Wednesday, January 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.19 5616 Friday, January 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.18 2780 Wednesday, January 13, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.17 4974 Friday, January 8, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.16 1895 Wednesday, January 6, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.15 5631 Wednesday, December 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.14 4069 Wednesday, December 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.13 4535 Friday, December 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.12 1913 Thursday, December 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.11 1693 Wednesday, December 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.10 5284 Friday, December 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.9 1680 Thursday, December 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.8 3088 Wednesday, December 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.7 4687 Friday, December 4, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.6 2456 Wednesday, December 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.4 6784 Wednesday, November 25, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.3 4731 Friday, November 20, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.2 2167 Wednesday, November 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.1 4453 Friday, November 13, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.0 4045 Wednesday, November 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.63 4727 Tuesday, November 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.62 2845 Friday, November 6, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.61 7129 Friday, October 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.60 4061 Wednesday, October 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.59 7200 Friday, October 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.58 3266 Wednesday, October 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.57 3725 Friday, October 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.56 9036 Friday, October 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.55 5561 Wednesday, October 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.54 4974 Friday, October 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.53 5903 Wednesday, September 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.52 4363 Friday, September 25, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.51 2401 Thursday, September 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.50 6564 Friday, September 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.49 2956 Wednesday, September 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.48 5242 Friday, September 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.47 3327 Wednesday, September 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.46 3866 Friday, September 4, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.45 2719 Wednesday, September 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.44 3215 Friday, August 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.43 4802 Wednesday, August 26, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.42 5737 Friday, August 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.41 3163 Wednesday, August 19, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.40 3643 Friday, August 14, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.39 3790 Wednesday, August 12, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.38 4239 Friday, August 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.37 3093 Wednesday, August 5, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.36 4045 Friday, July 31, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.35 3010 Wednesday, July 29, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.34 4519 Friday, July 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.33 3369 Wednesday, July 22, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.31 5586 Thursday, July 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.30 7967 Friday, July 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.29 2779 Wednesday, July 8, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.28 3977 Friday, July 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.27 2823 Wednesday, July 1, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.26 4426 Friday, June 26, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.25 2918 Wednesday, June 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.24 4410 Friday, June 19, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.23 2752 Wednesday, June 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.22 5546 Friday, June 12, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.21 1231 Thursday, June 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.20 1878 Wednesday, June 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.19 3634 Friday, June 5, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.18 2141 Wednesday, June 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.17 4602 Wednesday, May 27, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.15 3506 Thursday, May 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.14 5650 Friday, May 15, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.13 2536 Wednesday, May 13, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.12 4020 Friday, May 8, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.11 3264 Wednesday, May 6, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.10 6425 Tuesday, April 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.9 3405 Thursday, April 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.8 4773 Friday, April 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.7 6231 Tuesday, April 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.6 5845 Tuesday, March 31, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.5 5115 Tuesday, March 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.4 5433 Wednesday, March 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.3 5706 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 5769 Wednesday, February 26, 2020 Approved
AWS Command Line Interface (Install) 1.36.8 12 Friday, November 22, 2024 Approved
AWS Command Line Interface (Install) 1.34.30 26 Tuesday, October 1, 2024 Approved
AWS Command Line Interface (Install) 1.33.37 28 Tuesday, August 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.102 53 Friday, May 10, 2024 Approved
AWS Command Line Interface (Install) 1.32.100 35 Wednesday, May 8, 2024 Approved
AWS Command Line Interface (Install) 1.32.97 32 Friday, May 3, 2024 Approved
AWS Command Line Interface (Install) 1.32.95 44 Wednesday, May 1, 2024 Approved
AWS Command Line Interface (Install) 1.32.94 40 Tuesday, April 30, 2024 Approved
AWS Command Line Interface (Install) 1.32.92 40 Friday, April 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.89 39 Tuesday, April 23, 2024 Approved
AWS Command Line Interface (Install) 1.32.87 37 Friday, April 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.86 35 Wednesday, April 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.85 40 Wednesday, April 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.83 32 Friday, April 12, 2024 Approved
AWS Command Line Interface (Install) 1.32.81 37 Wednesday, April 10, 2024 Approved
AWS Command Line Interface (Install) 1.32.80 39 Tuesday, April 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.76 32 Wednesday, April 3, 2024 Approved
AWS Command Line Interface (Install) 1.32.75 36 Tuesday, April 2, 2024 Approved
AWS Command Line Interface (Install) 1.32.73 35 Friday, March 29, 2024 Approved
AWS Command Line Interface (Install) 1.32.71 45 Wednesday, March 27, 2024 Approved
AWS Command Line Interface (Install) 1.32.70 46 Tuesday, March 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.66 46 Wednesday, March 20, 2024 Approved
AWS Command Line Interface (Install) 1.32.65 44 Tuesday, March 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.61 50 Wednesday, March 13, 2024 Approved
AWS Command Line Interface (Install) 1.32.58 38 Friday, March 8, 2024 Approved
AWS Command Line Interface (Install) 1.32.56 38 Wednesday, March 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.53 41 Friday, March 1, 2024 Approved
AWS Command Line Interface (Install) 1.32.51 37 Wednesday, February 28, 2024 Approved
AWS Command Line Interface (Install) 1.32.50 31 Tuesday, February 27, 2024 Approved
AWS Command Line Interface (Install) 1.32.48 40 Friday, February 23, 2024 Approved
AWS Command Line Interface (Install) 1.32.45 45 Tuesday, February 20, 2024 Approved
AWS Command Line Interface (Install) 1.32.43 35 Friday, February 16, 2024 Approved
AWS Command Line Interface (Install) 1.32.40 37 Tuesday, February 13, 2024 Approved
AWS Command Line Interface (Install) 1.32.38 48 Friday, February 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.36 48 Wednesday, February 7, 2024 Approved
AWS Command Line Interface (Install) 1.32.35 40 Tuesday, February 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.33 39 Friday, February 2, 2024 Approved
AWS Command Line Interface (Install) 1.32.31 36 Wednesday, January 31, 2024 Approved
AWS Command Line Interface (Install) 1.32.30 48 Tuesday, January 30, 2024 Approved
AWS Command Line Interface (Install) 1.32.28 42 Friday, January 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.22 34 Friday, January 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.20 36 Wednesday, January 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.19 49 Monday, January 15, 2024 Approved
AWS Command Line Interface (Install) 1.32.17 36 Friday, January 12, 2024 Approved
AWS Command Line Interface (Install) 1.32.15 45 Tuesday, January 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.13 49 Friday, January 5, 2024 Approved
AWS Command Line Interface (Install) 1.32.6 46 Friday, December 22, 2023 Approved
AWS Command Line Interface (Install) 1.32.4 51 Wednesday, December 20, 2023 Approved
AWS Command Line Interface (Install) 1.32.3 51 Tuesday, December 19, 2023 Approved
AWS Command Line Interface (Install) 1.32.1 47 Friday, December 15, 2023 Approved
AWS Command Line Interface (Install) 1.31.13 43 Wednesday, December 13, 2023 Approved
AWS Command Line Interface (Install) 1.31.12 46 Monday, December 11, 2023 Approved
AWS Command Line Interface (Install) 1.31.10 44 Friday, December 8, 2023 Approved
AWS Command Line Interface (Install) 1.31.7 42 Tuesday, December 5, 2023 Approved
AWS Command Line Interface (Install) 1.31.6 57 Saturday, December 2, 2023 Approved
AWS Command Line Interface (Install) 1.30.4 54 Tuesday, November 21, 2023 Approved
AWS Command Line Interface (Install) 1.30.2 52 Friday, November 17, 2023 Approved
AWS Command Line Interface (Install) 1.30.0 51 Wednesday, November 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.83 45 Friday, November 10, 2023 Approved
AWS Command Line Interface (Install) 1.29.82 57 Thursday, November 9, 2023 Approved
AWS Command Line Interface (Install) 1.29.80 57 Wednesday, November 8, 2023 Approved
AWS Command Line Interface (Install) 1.29.79 54 Tuesday, November 7, 2023 Approved
AWS Command Line Interface (Install) 1.29.77 51 Thursday, November 2, 2023 Approved
AWS Command Line Interface (Install) 1.29.75 48 Wednesday, November 1, 2023 Approved
AWS Command Line Interface (Install) 1.29.72 45 Friday, October 27, 2023 Approved
AWS Command Line Interface (Install) 1.29.70 48 Wednesday, October 25, 2023 Approved
AWS Command Line Interface (Install) 1.29.69 51 Tuesday, October 24, 2023 Approved
AWS Command Line Interface (Install) 1.29.67 61 Friday, October 20, 2023 Approved
AWS Command Line Interface (Install) 1.29.65 52 Wednesday, October 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.64 58 Tuesday, October 17, 2023 Approved
AWS Command Line Interface (Install) 1.29.63 60 Friday, October 13, 2023 Approved
AWS Command Line Interface (Install) 1.29.61 41 Friday, October 6, 2023 Approved
AWS Command Line Interface (Install) 1.29.59 50 Wednesday, October 4, 2023 Approved
AWS Command Line Interface (Install) 1.29.57 52 Saturday, September 30, 2023 Approved
AWS Command Line Interface (Install) 1.29.55 48 Wednesday, September 27, 2023 Approved
AWS Command Line Interface (Install) 1.29.54 40 Tuesday, September 26, 2023 Approved
AWS Command Line Interface (Install) 1.29.51 61 Wednesday, September 20, 2023 Approved
AWS Command Line Interface (Install) 1.29.50 51 Tuesday, September 19, 2023 Approved
AWS Command Line Interface (Install) 1.29.48 54 Friday, September 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.45 52 Tuesday, September 12, 2023 Approved
AWS Command Line Interface (Install) 1.29.43 59 Friday, September 8, 2023 Approved
AWS Command Line Interface (Install) 1.29.41 47 Wednesday, September 6, 2023 Approved
AWS Command Line Interface (Install) 1.29.36 273 Tuesday, August 29, 2023 Approved
AWS Command Line Interface (Install) 1.29.34 43 Friday, August 25, 2023 Approved
AWS Command Line Interface (Install) 1.29.32 55 Wednesday, August 23, 2023 Approved
AWS Command Line Interface (Install) 1.29.31 57 Tuesday, August 22, 2023 Approved
AWS Command Line Interface (Install) 1.29.29 60 Friday, August 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.26 58 Tuesday, August 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.24 61 Friday, August 11, 2023 Approved
AWS Command Line Interface (Install) 1.29.22 69 Wednesday, August 9, 2023 Approved
AWS Command Line Interface (Install) 1.29.16 66 Tuesday, August 1, 2023 Approved
AWS Command Line Interface (Install) 1.29.14 56 Friday, July 28, 2023 Approved
AWS Command Line Interface (Install) 1.29.11 54 Wednesday, July 26, 2023 Approved
AWS Command Line Interface (Install) 1.29.5 44 Wednesday, July 19, 2023 Approved
AWS Command Line Interface (Install) 1.29.4 45 Tuesday, July 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.2 103 Wednesday, July 12, 2023 Approved
AWS Command Line Interface (Install) 1.29.0 175 Friday, July 7, 2023 Approved
AWS Command Line Interface (Install) 1.28.0 49 Tuesday, July 4, 2023 Approved
AWS Command Line Interface (Install) 1.27.162 46 Wednesday, June 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.161 59 Tuesday, June 27, 2023 Approved
AWS Command Line Interface (Install) 1.27.159 53 Friday, June 23, 2023 Approved
AWS Command Line Interface (Install) 1.27.157 52 Wednesday, June 21, 2023 Approved
AWS Command Line Interface (Install) 1.27.156 51 Tuesday, June 20, 2023 Approved
AWS Command Line Interface (Install) 1.27.153 52 Wednesday, June 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.152 44 Tuesday, June 13, 2023 Approved
AWS Command Line Interface (Install) 1.27.150 55 Friday, June 9, 2023 Approved
AWS Command Line Interface (Install) 1.27.148 48 Wednesday, June 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.145 53 Friday, June 2, 2023 Approved
AWS Command Line Interface (Install) 1.27.143 47 Wednesday, May 31, 2023 Approved
AWS Command Line Interface (Install) 1.27.141 57 Friday, May 26, 2023 Approved
AWS Command Line Interface (Install) 1.27.139 48 Wednesday, May 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.138 49 Tuesday, May 23, 2023 Approved
AWS Command Line Interface (Install) 1.27.135 58 Thursday, May 18, 2023 Approved
AWS Command Line Interface (Install) 1.27.134 62 Tuesday, May 16, 2023 Approved
AWS Command Line Interface (Install) 1.27.133 50 Friday, May 12, 2023 Approved
AWS Command Line Interface (Install) 1.27.131 58 Wednesday, May 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.130 63 Tuesday, May 9, 2023 Approved
AWS Command Line Interface (Install) 1.27.127 45 Friday, May 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.125 48 Wednesday, May 3, 2023 Approved
AWS Command Line Interface (Install) 1.27.124 47 Tuesday, May 2, 2023 Approved
AWS Command Line Interface (Install) 1.27.122 43 Friday, April 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.120 64 Wednesday, April 26, 2023 Approved
AWS Command Line Interface (Install) 1.27.119 54 Tuesday, April 25, 2023 Approved
AWS Command Line Interface (Install) 1.27.113 56 Friday, April 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.110 53 Tuesday, April 11, 2023 Approved
AWS Command Line Interface (Install) 1.27.106 52 Wednesday, April 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.101 57 Wednesday, March 29, 2023 Approved
AWS Command Line Interface (Install) 1.27.100 58 Tuesday, March 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.98 53 Friday, March 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.93 54 Friday, March 17, 2023 Approved
AWS Command Line Interface (Install) 1.27.90 55 Tuesday, March 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.88 74 Friday, March 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.86 40 Wednesday, March 8, 2023 Approved
AWS Command Line Interface (Install) 1.27.85 60 Tuesday, March 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.81 59 Wednesday, March 1, 2023 Approved
AWS Command Line Interface (Install) 1.27.80 50 Tuesday, February 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.78 58 Friday, February 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.75 61 Tuesday, February 21, 2023 Approved
AWS Command Line Interface (Install) 1.27.73 64 Friday, February 17, 2023 Approved
AWS Command Line Interface (Install) 1.27.71 65 Wednesday, February 15, 2023 Approved
AWS Command Line Interface (Install) 1.27.70 59 Tuesday, February 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.68 59 Friday, February 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.66 56 Wednesday, February 8, 2023 Approved
AWS Command Line Interface (Install) 1.27.65 62 Tuesday, February 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.63 54 Friday, February 3, 2023 Approved
AWS Command Line Interface (Install) 1.27.61 59 Wednesday, February 1, 2023 Approved
AWS Command Line Interface (Install) 1.27.60 53 Tuesday, January 31, 2023 Approved
AWS Command Line Interface (Install) 1.27.58 55 Friday, January 27, 2023 Approved
AWS Command Line Interface (Install) 1.27.56 57 Wednesday, January 25, 2023 Approved
AWS Command Line Interface (Install) 1.27.53 63 Friday, January 20, 2023 Approved
AWS Command Line Interface (Install) 1.27.51 54 Wednesday, January 18, 2023 Approved
AWS Command Line Interface (Install) 1.27.49 61 Friday, January 13, 2023 Approved
AWS Command Line Interface (Install) 1.27.47 62 Wednesday, January 11, 2023 Approved
AWS Command Line Interface (Install) 1.27.46 55 Tuesday, January 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.43 56 Thursday, January 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.40 56 Friday, December 30, 2022 Approved
AWS Command Line Interface (Install) 1.27.38 59 Wednesday, December 28, 2022 Approved
AWS Command Line Interface (Install) 1.27.36 56 Friday, December 23, 2022 Approved
AWS Command Line Interface (Install) 1.27.33 64 Tuesday, December 20, 2022 Approved
AWS Command Line Interface (Install) 1.27.31 56 Friday, December 16, 2022 Approved
AWS Command Line Interface (Install) 1.27.29 61 Wednesday, December 14, 2022 Approved
AWS Command Line Interface (Install) 1.27.26 54 Friday, December 9, 2022 Approved
AWS Command Line Interface (Install) 1.27.24 59 Wednesday, December 7, 2022 Approved
AWS Command Line Interface (Install) 1.27.23 60 Tuesday, December 6, 2022 Approved
AWS Command Line Interface (Install) 1.27.15 80 Wednesday, November 23, 2022 Approved
AWS Command Line Interface (Install) 1.27.14 66 Tuesday, November 22, 2022 Approved
AWS Command Line Interface (Install) 1.27.12 53 Friday, November 18, 2022 Approved
AWS Command Line Interface (Install) 1.27.10 60 Wednesday, November 16, 2022 Approved
AWS Command Line Interface (Install) 1.27.9 55 Tuesday, November 15, 2022 Approved
AWS Command Line Interface (Install) 1.27.7 64 Friday, November 11, 2022 Approved
AWS Command Line Interface (Install) 1.27.4 58 Tuesday, November 8, 2022 Approved
AWS Command Line Interface (Install) 1.27.3 61 Saturday, November 5, 2022 Approved
AWS Command Line Interface (Install) 1.27.2 63 Friday, November 4, 2022 Approved
AWS Command Line Interface (Install) 1.27.0 70 Wednesday, November 2, 2022 Approved
AWS Command Line Interface (Install) 1.26.5 67 Tuesday, November 1, 2022 Approved
AWS Command Line Interface (Install) 1.26.3 54 Friday, October 28, 2022 Approved
AWS Command Line Interface (Install) 1.26.1 48 Wednesday, October 26, 2022 Approved
AWS Command Line Interface (Install) 1.26.0 75 Tuesday, October 25, 2022 Approved
AWS Command Line Interface (Install) 1.25.96 59 Friday, October 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.94 72 Wednesday, October 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.93 67 Tuesday, October 18, 2022 Approved
AWS Command Line Interface (Install) 1.25.92 59 Saturday, October 15, 2022 Approved
AWS Command Line Interface (Install) 1.25.89 73 Friday, October 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.87 49 Wednesday, October 5, 2022 Approved
AWS Command Line Interface (Install) 1.25.83 55 Wednesday, September 28, 2022 Approved
AWS Command Line Interface (Install) 1.25.82 61 Tuesday, September 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.78 68 Wednesday, September 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.77 64 Monday, September 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.75 69 Friday, September 16, 2022 Approved
AWS Command Line Interface (Install) 1.25.73 76 Wednesday, September 14, 2022 Approved
AWS Command Line Interface (Install) 1.25.68 64 Wednesday, September 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.66 72 Friday, September 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.64 80 Wednesday, August 31, 2022 Approved
AWS Command Line Interface (Install) 1.25.63 67 Tuesday, August 30, 2022 Approved
AWS Command Line Interface (Install) 1.25.62 58 Saturday, August 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.59 67 Wednesday, August 24, 2022 Approved
AWS Command Line Interface (Install) 1.25.58 76 Tuesday, August 23, 2022 Approved
AWS Command Line Interface (Install) 1.25.56 66 Friday, August 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.55 71 Thursday, August 18, 2022 Approved
AWS Command Line Interface (Install) 1.25.51 77 Saturday, August 13, 2022 Approved
AWS Command Line Interface (Install) 1.25.49 69 Thursday, August 11, 2022 Approved
AWS Command Line Interface (Install) 1.25.48 70 Wednesday, August 10, 2022 Approved
AWS Command Line Interface (Install) 1.25.46 68 Friday, August 5, 2022 Approved
AWS Command Line Interface (Install) 1.25.43 68 Tuesday, August 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.42 72 Monday, August 1, 2022 Approved
AWS Command Line Interface (Install) 1.25.40 73 Friday, July 29, 2022 Approved
AWS Command Line Interface (Install) 1.25.38 66 Wednesday, July 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.37 61 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 60 Tuesday, July 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.28 68 Wednesday, July 13, 2022 Approved
AWS Command Line Interface (Install) 1.25.25 58 Friday, July 8, 2022 Approved
AWS Command Line Interface (Install) 1.25.23 71 Wednesday, July 6, 2022 Approved
AWS Command Line Interface (Install) 1.25.22 72 Saturday, July 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.21 69 Friday, July 1, 2022 Approved
AWS Command Line Interface (Install) 1.25.19 66 Wednesday, June 29, 2022 Approved
AWS Command Line Interface (Install) 1.25.18 69 Tuesday, June 28, 2022 Approved
AWS Command Line Interface (Install) 1.25.16 71 Friday, June 24, 2022 Approved
AWS Command Line Interface (Install) 1.25.14 63 Wednesday, June 22, 2022 Approved
AWS Command Line Interface (Install) 1.25.13 72 Tuesday, June 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.10 82 Thursday, June 16, 2022 Approved
AWS Command Line Interface (Install) 1.25.9 54 Wednesday, June 15, 2022 Approved
AWS Command Line Interface (Install) 1.25.8 97 Tuesday, June 14, 2022 Approved
AWS Command Line Interface (Install) 1.25.7 72 Saturday, June 11, 2022 Approved
AWS Command Line Interface (Install) 1.25.6 64 Friday, June 10, 2022 Approved
AWS Command Line Interface (Install) 1.25.4 62 Wednesday, June 8, 2022 Approved
AWS Command Line Interface (Install) 1.25.3 72 Tuesday, June 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.2 72 Friday, June 3, 2022 Approved
AWS Command Line Interface (Install) 1.25.0 85 Wednesday, June 1, 2022 Approved
AWS Command Line Interface (Install) 1.24.9 71 Friday, May 27, 2022 Approved
AWS Command Line Interface (Install) 1.24.7 90 Wednesday, May 25, 2022 Approved
AWS Command Line Interface (Install) 1.24.6 81 Tuesday, May 24, 2022 Approved
AWS Command Line Interface (Install) 1.24.4 85 Friday, May 20, 2022 Approved
AWS Command Line Interface (Install) 1.24.2 79 Wednesday, May 18, 2022 Approved
AWS Command Line Interface (Install) 1.24.1 80 Tuesday, May 17, 2022 Approved
AWS Command Line Interface (Install) 1.23.13 84 Friday, May 13, 2022 Approved
AWS Command Line Interface (Install) 1.23.11 83 Wednesday, May 11, 2022 Approved
AWS Command Line Interface (Install) 1.23.6 111 Wednesday, May 4, 2022 Approved
AWS Command Line Interface (Install) 1.23.5 71 Tuesday, May 3, 2022 Approved
AWS Command Line Interface (Install) 1.23.3 66 Thursday, April 28, 2022 Approved
AWS Command Line Interface (Install) 1.23.1 76 Wednesday, April 27, 2022 Approved
AWS Command Line Interface (Install) 1.23.0 90 Tuesday, April 26, 2022 Approved
AWS Command Line Interface (Install) 1.22.101 78 Saturday, April 23, 2022 Approved
AWS Command Line Interface (Install) 1.22.98 67 Wednesday, April 20, 2022 Approved
AWS Command Line Interface (Install) 1.22.96 80 Friday, April 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.94 83 Wednesday, April 13, 2022 Approved
AWS Command Line Interface (Install) 1.22.93 80 Tuesday, April 12, 2022 Approved
AWS Command Line Interface (Install) 1.22.89 90 Wednesday, April 6, 2022 Approved
AWS Command Line Interface (Install) 1.22.88 79 Tuesday, April 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.86 83 Friday, April 1, 2022 Approved
AWS Command Line Interface (Install) 1.22.84 71 Wednesday, March 30, 2022 Approved
AWS Command Line Interface (Install) 1.22.81 78 Friday, March 25, 2022 Approved
AWS Command Line Interface (Install) 1.22.79 73 Wednesday, March 23, 2022 Approved
AWS Command Line Interface (Install) 1.22.78 74 Tuesday, March 22, 2022 Approved
AWS Command Line Interface (Install) 1.22.77 185 Saturday, March 19, 2022 Approved
AWS Command Line Interface (Install) 1.22.74 78 Tuesday, March 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.71 86 Thursday, March 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.69 80 Tuesday, March 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.68 79 Saturday, March 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.66 79 Thursday, March 3, 2022 Approved
AWS Command Line Interface (Install) 1.22.64 72 Tuesday, March 1, 2022 Approved
AWS Command Line Interface (Install) 1.22.63 76 Saturday, February 26, 2022 Approved
AWS Command Line Interface (Install) 1.22.61 76 Thursday, February 24, 2022 Approved
AWS Command Line Interface (Install) 1.22.59 87 Tuesday, February 22, 2022 Approved
AWS Command Line Interface (Install) 1.22.58 84 Saturday, February 19, 2022 Approved
AWS Command Line Interface (Install) 1.22.56 76 Thursday, February 17, 2022 Approved
AWS Command Line Interface (Install) 1.22.55 77 Tuesday, February 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.54 114 Saturday, February 12, 2022 Approved
AWS Command Line Interface (Install) 1.22.52 89 Thursday, February 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.50 74 Tuesday, February 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.49 69 Saturday, February 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.47 84 Thursday, February 3, 2022 Approved
AWS Command Line Interface (Install) 1.22.46 91 Saturday, January 29, 2022 Approved
AWS Command Line Interface (Install) 1.22.44 92 Thursday, January 27, 2022 Approved
AWS Command Line Interface (Install) 1.22.42 91 Monday, January 24, 2022 Approved
AWS Command Line Interface (Install) 1.22.39 99 Thursday, January 20, 2022 Approved
AWS Command Line Interface (Install) 1.22.37 101 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 83 Monday, January 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.31 90 Saturday, January 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.29 79 Thursday, January 6, 2022 Approved
AWS Command Line Interface (Install) 1.22.25 167 Tuesday, December 21, 2021 Approved
AWS Command Line Interface (Install) 1.22.24 83 Tuesday, December 14, 2021 Approved
AWS Command Line Interface (Install) 1.22.22 85 Thursday, December 9, 2021 Approved
AWS Command Line Interface (Install) 1.22.21 66 Tuesday, December 7, 2021 Approved
AWS Command Line Interface (Install) 1.22.13 104 Thursday, November 25, 2021 Approved
AWS Command Line Interface (Install) 1.22.11 90 Tuesday, November 23, 2021 Approved
AWS Command Line Interface (Install) 1.22.10 72 Saturday, November 20, 2021 Approved
AWS Command Line Interface (Install) 1.22.8 94 Thursday, November 18, 2021 Approved
AWS Command Line Interface (Install) 1.22.6 93 Tuesday, November 16, 2021 Approved
AWS Command Line Interface (Install) 1.22.5 92 Saturday, November 13, 2021 Approved
AWS Command Line Interface (Install) 1.22.3 113 Thursday, November 11, 2021 Approved
AWS Command Line Interface (Install) 1.22.1 92 Tuesday, November 9, 2021 Approved
AWS Command Line Interface (Install) 1.21.12 156 Saturday, November 6, 2021 Approved
AWS Command Line Interface (Install) 1.21.0 90 Thursday, October 21, 2021 Approved
AWS Command Line Interface (Install) 1.20.64 87 Tuesday, October 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.63 92 Saturday, October 16, 2021 Approved
AWS Command Line Interface (Install) 1.20.61 95 Thursday, October 14, 2021 Approved
AWS Command Line Interface (Install) 1.20.58 211 Saturday, October 9, 2021 Approved
AWS Command Line Interface (Install) 1.20.57 103 Friday, October 8, 2021 Approved
AWS Command Line Interface (Install) 1.20.56 96 Thursday, October 7, 2021 Approved
AWS Command Line Interface (Install) 1.20.54 93 Tuesday, October 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.53 87 Saturday, October 2, 2021 Approved
AWS Command Line Interface (Install) 1.20.51 90 Thursday, September 30, 2021 Approved
AWS Command Line Interface (Install) 1.20.49 98 Tuesday, September 28, 2021 Approved
AWS Command Line Interface (Install) 1.20.48 97 Saturday, September 25, 2021 Approved
AWS Command Line Interface (Install) 1.20.46 90 Thursday, September 23, 2021 Approved
AWS Command Line Interface (Install) 1.20.44 111 Saturday, September 18, 2021 Approved
AWS Command Line Interface (Install) 1.20.40 125 Saturday, September 11, 2021 Approved
AWS Command Line Interface (Install) 1.20.38 102 Thursday, September 9, 2021 Approved
AWS Command Line Interface (Install) 1.20.36 87 Saturday, September 4, 2021 Approved
AWS Command Line Interface (Install) 1.20.34 109 Thursday, September 2, 2021 Approved
AWS Command Line Interface (Install) 1.20.32 98 Tuesday, August 31, 2021 Approved
AWS Command Line Interface (Install) 1.20.31 89 Saturday, August 28, 2021 Approved
AWS Command Line Interface (Install) 1.20.29 86 Thursday, August 26, 2021 Approved
AWS Command Line Interface (Install) 1.20.27 98 Tuesday, August 24, 2021 Approved
AWS Command Line Interface (Install) 1.20.26 129 Saturday, August 21, 2021 Approved
AWS Command Line Interface (Install) 1.20.24 96 Thursday, August 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.23 116 Tuesday, August 17, 2021 Approved
AWS Command Line Interface (Install) 1.20.22 82 Tuesday, August 17, 2021 Approved
AWS Command Line Interface (Install) 1.20.21 103 Saturday, August 14, 2021 Approved
AWS Command Line Interface (Install) 1.20.19 99 Thursday, August 12, 2021 Approved
AWS Command Line Interface (Install) 1.20.17 99 Tuesday, August 10, 2021 Approved
AWS Command Line Interface (Install) 1.20.16 104 Saturday, August 7, 2021 Approved
AWS Command Line Interface (Install) 1.20.15 114 Thursday, August 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.14 105 Thursday, August 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.12 91 Tuesday, August 3, 2021 Approved
AWS Command Line Interface (Install) 1.20.9 96 Thursday, July 29, 2021 Approved
AWS Command Line Interface (Install) 1.20.7 107 Tuesday, July 27, 2021 Approved
AWS Command Line Interface (Install) 1.20.6 105 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 97 Monday, July 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.1 111 Saturday, July 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.111 80 Wednesday, July 14, 2021 Approved
AWS Command Line Interface (Install) 1.19.110 102 Tuesday, July 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.109 98 Saturday, July 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.107 83 Thursday, July 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.105 98 Friday, July 2, 2021 Approved
AWS Command Line Interface (Install) 1.19.103 1172 Thursday, July 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.102 100 Tuesday, June 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.101 96 Saturday, June 26, 2021 Approved
AWS Command Line Interface (Install) 1.19.99 113 Thursday, June 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.98 84 Tuesday, June 22, 2021 Approved
AWS Command Line Interface (Install) 1.19.96 96 Thursday, June 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.94 101 Tuesday, June 15, 2021 Approved
AWS Command Line Interface (Install) 1.19.93 99 Saturday, June 12, 2021 Approved
AWS Command Line Interface (Install) 1.19.92 96 Thursday, June 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.91 102 Thursday, June 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.89 97 Tuesday, June 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.88 94 Saturday, June 5, 2021 Approved
AWS Command Line Interface (Install) 1.19.86 96 Thursday, June 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.84 89 Saturday, May 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.82 96 Thursday, May 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.79 102 Tuesday, May 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.78 96 Saturday, May 22, 2021 Approved
AWS Command Line Interface (Install) 1.19.77 89 Friday, May 21, 2021 Approved
AWS Command Line Interface (Install) 1.19.76 91 Thursday, May 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.75 100 Wednesday, May 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.74 104 Tuesday, May 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.72 91 Friday, May 14, 2021 Approved
AWS Command Line Interface (Install) 1.19.70 105 Tuesday, May 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.69 110 Saturday, May 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.67 114 Thursday, May 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.64 105 Monday, May 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.62 113 Saturday, May 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.60 84 Thursday, April 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.58 98 Tuesday, April 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.57 88 Saturday, April 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.56 95 Friday, April 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.54 99 Tuesday, April 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.52 87 Thursday, April 15, 2021 Approved
AWS Command Line Interface (Install) 1.19.50 84 Tuesday, April 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.49 99 Saturday, April 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.45 105 Tuesday, April 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.44 89 Saturday, April 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.42 89 Thursday, April 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.40 86 Monday, March 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.39 111 Saturday, March 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.37 111 Thursday, March 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.35 118 Wednesday, March 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.34 105 Tuesday, March 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.32 94 Friday, March 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.30 113 Thursday, March 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.29 94 Wednesday, March 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.28 125 Tuesday, March 16, 2021 Approved
AWS Command Line Interface (Install) 1.19.27 111 Saturday, March 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.26 4330 Thursday, March 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.25 112 Thursday, March 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.23 116 Tuesday, March 9, 2021 Approved
AWS Command Line Interface (Install) 1.19.22 97 Saturday, March 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.21 109 Friday, March 5, 2021 Approved
AWS Command Line Interface (Install) 1.19.20 111 Thursday, March 4, 2021 Approved
AWS Command Line Interface (Install) 1.19.19 123 Wednesday, March 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.17 122 Saturday, February 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.16 113 Friday, February 26, 2021 Approved
AWS Command Line Interface (Install) 1.19.15 102 Thursday, February 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.13 90 Tuesday, February 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.12 99 Saturday, February 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.11 101 Friday, February 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.10 113 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 121 Saturday, February 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.4 133 Tuesday, February 9, 2021 Approved
AWS Command Line Interface (Install) 1.19.3 204 Saturday, February 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.1 124 Thursday, February 4, 2021 Approved
AWS Command Line Interface (Install) 1.18.223 112 Saturday, January 30, 2021 Approved
AWS Command Line Interface (Install) 1.18.221 118 Thursday, January 28, 2021 Approved
AWS Command Line Interface (Install) 1.18.220 119 Wednesday, January 27, 2021 Approved
AWS Command Line Interface (Install) 1.18.219 136 Saturday, January 23, 2021 Approved
AWS Command Line Interface (Install) 1.18.216 101 Saturday, January 16, 2021 Approved
AWS Command Line Interface (Install) 1.18.214 127 Thursday, January 14, 2021 Approved
AWS Command Line Interface (Install) 1.18.212 121 Tuesday, January 12, 2021 Approved
AWS Command Line Interface (Install) 1.18.210 113 Thursday, January 7, 2021 Approved
AWS Command Line Interface (Install) 1.18.208 122 Tuesday, January 5, 2021 Approved
AWS Command Line Interface (Install) 1.18.207 104 Friday, January 1, 2021 Approved
AWS Command Line Interface (Install) 1.18.206 116 Thursday, December 31, 2020 Approved
AWS Command Line Interface (Install) 1.18.205 117 Tuesday, December 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.204 104 Monday, December 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.201 103 Tuesday, December 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.200 104 Friday, December 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.197 104 Tuesday, December 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.196 107 Tuesday, December 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.195 1824 Saturday, December 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.193 98 Wednesday, December 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.191 98 Tuesday, December 8, 2020 Approved
AWS Command Line Interface (Install) 1.18.190 109 Saturday, December 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.184 119 Tuesday, November 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.183 116 Saturday, November 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.181 132 Thursday, November 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.179 124 Tuesday, November 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.178 127 Saturday, November 14, 2020 Approved
AWS Command Line Interface (Install) 1.18.176 104 Thursday, November 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.174 111 Monday, November 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.173 116 Saturday, November 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.171 187 Thursday, November 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.170 125 Tuesday, November 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.167 133 Thursday, October 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.165 242 Tuesday, October 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.164 139 Saturday, October 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.162 136 Thursday, October 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.160 127 Tuesday, October 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.159 107 Saturday, October 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.157 187 Saturday, October 10, 2020 Approved
AWS Command Line Interface (Install) 1.18.153 126 Tuesday, October 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.152 135 Saturday, October 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.150 119 Thursday, October 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.148 126 Tuesday, September 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.147 153 Saturday, September 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.146 108 Thursday, September 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.144 104 Wednesday, September 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.143 120 Tuesday, September 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.142 117 Saturday, September 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.141 411 Thursday, September 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.140 126 Thursday, September 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.138 107 Tuesday, September 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.137 123 Saturday, September 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.133 170 Saturday, September 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.131 131 Thursday, September 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.129 138 Tuesday, September 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.128 142 Saturday, August 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.126 179 Thursday, August 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.125 142 Tuesday, August 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.123 152 Thursday, August 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.121 179 Tuesday, August 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.120 131 Saturday, August 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.119 126 Thursday, August 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.116 6821 Monday, August 10, 2020 Approved
AWS Command Line Interface (Install) 1.18.115 145 Saturday, August 8, 2020 Approved
AWS Command Line Interface (Install) 1.18.113 180 Thursday, August 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.111 172 Tuesday, August 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.110 177 Saturday, August 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.108 158 Thursday, July 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.106 180 Tuesday, July 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.105 180 Saturday, July 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.103 216 Thursday, July 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.101 1296 Tuesday, July 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.100 179 Saturday, July 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.96 204 Thursday, July 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.94 229 Tuesday, July 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.92 202 Thursday, July 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.90 201 Tuesday, June 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.89 248 Saturday, June 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.87 210 Thursday, June 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.85 214 Tuesday, June 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.84 240 Saturday, June 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.82 200 Thursday, June 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.80 281 Tuesday, June 16, 2020 Approved
AWS Command Line Interface (Install) 1.18.79 224 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 220 Saturday, June 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.72 223 Thursday, June 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.70 216 Tuesday, June 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.69 6577 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 27121 Thursday, May 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.63 191 Wednesday, May 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.62 236 Tuesday, May 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.61 214 Saturday, May 16, 2020 Approved
AWS Command Line Interface (Install) 1.18.57 200 Tuesday, May 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.56 262 Saturday, May 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.54 214 Thursday, May 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.52 208 Tuesday, May 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.51 280 Saturday, May 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.50 175 Friday, May 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.49 208 Thursday, April 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.46 381 Saturday, April 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.43 231 Wednesday, April 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.42 558 Tuesday, April 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.41 203 Friday, April 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.39 227 Thursday, April 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.36 335 Saturday, April 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.35 203 Friday, April 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.34 185 Thursday, April 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.31 233 Saturday, March 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.30 235 Thursday, March 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.29 193 Thursday, March 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.28 308 Wednesday, March 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.26 236 Saturday, March 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.25 231 Friday, March 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.24 222 Thursday, March 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.22 202 Tuesday, March 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.21 263 Saturday, March 14, 2020 Approved
AWS Command Line Interface (Install) 1.18.20 227 Friday, March 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.19 230 Thursday, March 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.16 181 Saturday, March 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.15 172 Friday, March 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.14 238 Thursday, March 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.11 22376 Saturday, February 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.9 5890 Friday, February 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.6 3726 Tuesday, February 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.5 4429 Friday, February 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.4 1224 Friday, February 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.3 1413 Thursday, February 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.2 1399 Wednesday, February 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.1 1671 Tuesday, February 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.0 1981 Saturday, February 15, 2020 Approved
AWS Command Line Interface (Install) 1.17.17 4230 Friday, February 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.16 2855 Thursday, February 13, 2020 Approved
AWS Command Line Interface (Install) 1.17.15 1550 Wednesday, February 12, 2020 Approved
AWS Command Line Interface (Install) 1.17.13 3050 Saturday, February 8, 2020 Approved
AWS Command Line Interface (Install) 1.17.12 1237 Friday, February 7, 2020 Approved
AWS Command Line Interface (Install) 1.17.11 171 Thursday, February 6, 2020 Approved
AWS Command Line Interface (Install) 1.17.10 191 Wednesday, February 5, 2020 Approved
AWS Command Line Interface (Install) 1.17.9 8285 Saturday, January 25, 2020 Approved
AWS Command Line Interface (Install) 1.17.8 957 Friday, January 24, 2020 Approved
AWS Command Line Interface (Install) 1.17.7 3047 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 2576 Saturday, January 18, 2020 Approved
AWS Command Line Interface (Install) 1.17.4 1216 Friday, January 17, 2020 Approved
AWS Command Line Interface (Install) 1.17.3 1113 Thursday, January 16, 2020 Approved
AWS Command Line Interface (Install) 1.17.2 2037 Tuesday, January 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.1 1192 Tuesday, January 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.0 2034 Saturday, January 11, 2020 Approved
AWS Command Line Interface (Install) 1.16.314 1396 Friday, January 10, 2020 Approved
AWS Command Line Interface (Install) 1.16.313 1421 Thursday, January 9, 2020 Approved
AWS Command Line Interface (Install) 1.16.312 1124 Wednesday, January 8, 2020 Approved
AWS Command Line Interface (Install) 1.16.311 1356 Tuesday, January 7, 2020 Approved
AWS Command Line Interface (Install) 1.16.310 193 Friday, January 3, 2020 Approved
AWS Command Line Interface (Install) 1.16.309 1442 Tuesday, December 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.308 5823 Saturday, December 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.307 1074 Friday, December 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.305 2045 Wednesday, December 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.303 2541 Saturday, December 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.302 1190 Friday, December 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.301 1538 Thursday, December 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.300 1300 Wednesday, December 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.299 1551 Tuesday, December 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.298 2567 Friday, December 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.297 1315 Thursday, December 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.296 1359 Wednesday, December 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.294 827 Tuesday, December 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.292 4737 Wednesday, November 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.291 1378 Tuesday, November 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.290 2080 Saturday, November 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.289 1215 Friday, November 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.287 1305 Thursday, November 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.286 1759 Wednesday, November 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.284 1560 Tuesday, November 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.283 2220 Saturday, November 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.282 1282 Friday, November 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.281 1567 Thursday, November 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.280 1524 Wednesday, November 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.279 1475 Tuesday, November 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.278 2095 Saturday, November 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.277 2682 Friday, November 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.276 1404 Thursday, November 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.274 1653 Tuesday, November 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.273 1307 Tuesday, November 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.272 2097 Saturday, November 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.271 1022 Friday, November 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.270 1512 Thursday, October 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.269 1577 Wednesday, October 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.268 1629 Tuesday, October 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.266 2895 Friday, October 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.265 1812 Thursday, October 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.264 1553 Wednesday, October 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.263 3571 Friday, October 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.262 735 Friday, October 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.261 2361 Thursday, October 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.260 1578 Wednesday, October 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.259 1516 Tuesday, October 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.258 1967 Saturday, October 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.257 1338 Friday, October 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.256 2073 Thursday, October 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.255 1721 Wednesday, October 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.254 1403 Tuesday, October 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.253 2036 Saturday, October 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.252 1532 Friday, October 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.251 2154 Thursday, October 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.250 1647 Wednesday, October 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.249 1673 Tuesday, October 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.248 2378 Saturday, September 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.247 1147 Friday, September 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.246 1852 Wednesday, September 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.245 1457 Wednesday, September 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.244 1543 Tuesday, September 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.243 1868 Saturday, September 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.242 1245 Friday, September 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.241 2351 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 1165 Tuesday, September 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.238 7183 Friday, September 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.237 1834 Thursday, September 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.236 1404 Wednesday, September 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.235 1334 Tuesday, September 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.234 1813 Saturday, September 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.233 1230 Friday, September 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.232 1860 Thursday, September 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.231 1273 Wednesday, September 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.230 2522 Saturday, August 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.229 1896 Friday, August 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.228 2837 Thursday, August 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.227 2373 Wednesday, August 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.226 1286 Tuesday, August 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.225 2044 Friday, August 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.224 1099 Friday, August 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.223 1167 Thursday, August 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.222 1247 Wednesday, August 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.221 2604 Tuesday, August 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.220 1873 Saturday, August 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.219 1124 Friday, August 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.218 1202 Thursday, August 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.217 1689 Wednesday, August 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.216 1143 Tuesday, August 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.215 1672 Saturday, August 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.214 1039 Friday, August 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.213 2229 Thursday, August 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.212 560 Wednesday, August 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.211 1724 Tuesday, August 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.210 1682 Saturday, August 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.209 5135 Wednesday, July 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.208 1019 Tuesday, July 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.207 1632 Saturday, July 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.206 1193 Friday, July 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.205 1411 Thursday, July 25, 2019 Approved