AWS CDK Construct Library to manage AWS Code Artifact resources
Project description
AWS::CodeArtifact Construct Library
---All classes with the
Cfnprefix in this module (CFN Resources) are always stable and safe to use.
The APIs of higher level constructs in this module are experimental and under active development. They are subject to non-backward compatible changes or removal in any future version. These are not subject to the Semantic Versioning model and breaking changes will be announced in the release notes. This means that while you may use them, you may need to update your source code when upgrading to a newer version of this package.
AWS CodeArtifact is a fully managed artifact repository service that makes it easy for organizations of any size to securely store, publish, and share software packages used in their software development process. CodeArtifact can be configured to automatically fetch software packages and dependencies from public artifact repositories so developers have access to the latest versions. CodeArtifact works with commonly used package managers and build tools like Maven, Gradle, npm, yarn, twine, pip, and NuGet making it easy to integrate into existing development workflows.
For further information on AWS CodeArtifact, see the AWS CodeArtifact documentation.
Add a CodeArtifact Domain to your stack:
import * as codeartifact from '@renovosolutions/cdk-library-aws-codeartifact';
new codeartifact.Domain(stack, 'domain', { name: 'example-domain' });
Add a CodeArtifact Repository to your stack:
import * as codeartifact from '@renovosolutions/cdk-library-aws-codeartifact';
const domain = new codeartifact.Domain(stack, 'domain', { name: 'example-domain' });
const repository = new codeartifact.Repository(stack, 'repository', {
name: 'repository',
domain,
});
It is also possible to use the addRepository method on codeartifact.Domain to add a repository.
import * as codeartifact from '@renovosolutions/cdk-library-aws-codeartifact';
const domain = new codeartifact.Domain(stack, 'domain', { name: 'example-domain' });
domain.addRepository('repo', {
name: 'repository'
});
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file renovosolutions_aws_cdk_aws_codeartifact-0.0.2.tar.gz.
File metadata
- Download URL: renovosolutions_aws_cdk_aws_codeartifact-0.0.2.tar.gz
- Upload date:
- Size: 54.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b885d5fe8892d4f41c2797da085c8d48d64615ad344cc3ecc1769c438fb0020a
|
|
| MD5 |
edad226dce5d2fb5fb80805a958d51e2
|
|
| BLAKE2b-256 |
1a32f03b138c143f52f30ffae4dab15807012b2926dfc544cb4f5a116bf47435
|
File details
Details for the file renovosolutions.aws_cdk_aws_codeartifact-0.0.2-py3-none-any.whl.
File metadata
- Download URL: renovosolutions.aws_cdk_aws_codeartifact-0.0.2-py3-none-any.whl
- Upload date:
- Size: 54.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
500d560b34d34096125ff68a9a20a707efd395403a4ddd1345eec9a31117e53c
|
|
| MD5 |
947ef004a4a7ee358641383cccc67d39
|
|
| BLAKE2b-256 |
cc1cbf8947409265070bd7412578711ed8f41d20f4e00e243e8cf2044a5d0b3d
|