AWS CDK Construct Library to manage AWS Code Artifact resources
Project description
AWS::CodeArtifact Construct Library
---All classes with the
Cfn
prefix 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
File details
Details for the file renovosolutions.aws-cdk-aws-codeartifact-0.0.1.tar.gz
.
File metadata
- Download URL: renovosolutions.aws-cdk-aws-codeartifact-0.0.1.tar.gz
- Upload date:
- Size: 56.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f96346014ebc69da37da7bfafa334acec2f79cc171ac64c7b7f4c078d5075cc2 |
|
MD5 | cc91863b65640ba38098199bc631c2b9 |
|
BLAKE2b-256 | 30fc26fab62769cd1f1a301de6d2f13bf129ce6b01f02ec57c5de52977fe9fab |
File details
Details for the file renovosolutions.aws_cdk_aws_codeartifact-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: renovosolutions.aws_cdk_aws_codeartifact-0.0.1-py3-none-any.whl
- Upload date:
- Size: 54.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8fd2c2a2a1a3e7a257f8af331fac12a497acbecd4487dfbfe7b03af29a23eb3d |
|
MD5 | 9c6cc29bf8501044795a9e7e6804df29 |
|
BLAKE2b-256 | 0c3cbbcd429259f1702b2c923ab40fdb17b413b5a32608c79303896cccaad833 |