Note: You are viewing the documentation for an older major version of the AWS CLI (version 1).
AWS CLI version 2, the latest major version of AWS CLI, is now stable and recommended for general use. To view this page for the AWS CLI version 2, click here. For more information see the AWS CLI version 2 installation instructions and migration guide.
[ aws . codeartifact ]
Returns an asset (or file) that is in a package. For example, for a Maven package version, use GetPackageVersionAsset to download a JAR file, a POM file, or any other assets in the package version.
See also: AWS API Documentation
See 'aws help' for descriptions of global parameters.
get-package-version-asset
--domain <value>
[--domain-owner <value>]
--repository <value>
--format <value>
[--namespace <value>]
--package <value>
--package-version <value>
--asset <value>
[--package-version-revision <value>]
<outfile>
--domain (string)
The name of the domain that contains the repository that contains the package version with the requested asset.
--domain-owner (string)
The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
--repository (string)
The repository that contains the package version with the requested asset.
--format (string)
A format that specifies the type of the package version with the requested asset file. The valid values are:
- npm
- pypi
- maven
Possible values:
- npm
- pypi
- maven
- nuget
--namespace (string)
The namespace of the package. The package component that specifies its namespace depends on its type. For example:
- The namespace of a Maven package is its groupId .
- The namespace of an npm package is its scope .
- A Python package does not contain a corresponding component, so Python packages do not have a namespace.
--package (string)
The name of the package that contains the requested asset.
--package-version (string)
A string that contains the package version (for example, 3.5.2 ).
--asset (string)
The name of the requested asset.
--package-version-revision (string)
The name of the package version revision that contains the requested asset.
outfile (string) Filename where the content will be saved
See 'aws help' for descriptions of global parameters.
To get an asset from a package version
The following get-package-version-asset example retrieves the package.tgz asset for version 4.0.0 of an npm package named test-package.
aws codeartifact get-package-version-asset \
--domain test-domain \
--repository test-repo \
--format npm \
--package test-package \
--package-version 4.0.0 \
--asset 'package.tgz' \
outfileName
Output:
The output for this command will also store the raw asset in the file provided in place of outfileName.
{
"assetName": "package.tgz",
"packageVersion": "4.0.0",
"packageVersionRevision": "Ciqe5/9yicvkJT13b5/LdLpCyE6fqA7poa9qp+FilPs="
}
For more information, see List package version assets in the AWS CodeArtifact User Guide.
asset -> (blob)
The binary file, or asset, that is downloaded.
assetName -> (string)
The name of the asset that is downloaded.
packageVersion -> (string)
A string that contains the package version (for example, 3.5.2 ).
packageVersionRevision -> (string)
The name of the package version revision that contains the downloaded asset.