A comprehensive AWS Cloud Development Kit (CDK) library that provides a collection of well-architected constructs, aspects, and patterns for accelerating your cloud infrastructure development.
This library is available in multiple programming languages through their respective package managers.
TypeScript/JavaScript
npm install @cdklabs/cdk-proserve-lib
Python
pip install cdklabs.cdk-proserve-lib
Java
Add the following to your pom.xml
:
<dependency>
<groupId>io.github.cdklabs</groupId>
<artifactId>cdk-proserve-lib</artifactId>
<version>[VERSION]</version>
</dependency>
Replace [VERSION]
with the desired version from Maven Central.
.NET
dotnet add package Cdklabs.CdkProserveLib
Go
go get github.com/cdklabs/cdk-proserve-lib-go/cdklabscdkproservelib
The library consists of constructs, aspects, and patterns that you can utilize in AWS CDK applications.
Total: 14
Constructs are the basic building blocks of AWS Cloud Development Kit (AWS CDK) applications. A construct is a component within your application that represents one or more AWS CloudFormation resources and their configuration. You build your application, piece by piece, by importing and configuring constructs. To learn more about constructs, check out the AWS CDK documentation.
Count: 9
- Ec2ImageBuilderGetImage: Retrieves an EC2 Image Builder image build version.
- Ec2ImageBuilderStart: Starts an EC2 Image Builder Pipeline and optionally waits for the build to complete.
- Ec2ImagePipeline: An EC2 Image Pipeline that can be used to build a Amazon Machine Image (AMI) automatically.
- FriendlyEmbrace: The Friendly Embrace construct can be used to remove CloudFormation stack dependencies that are based on stack exports and imports.
- IamServerCertificate: A construct that creates a Custom Resource to manage an AWS Identity and Access Management Server Certificate for use in regions/partitions where AWS Certificate Manager is not available.
- NetworkFirewall: Creates an AWS Network Firewall using a user-supplied Suricata rules file in a VPC.
- NetworkFirewallEndpoints: Retrieves Network Firewall endpoints so that you can reference them in your other resources.
- OpenSearchAdminUser: OpenSearchAdminUser construct creates a custom resource to manage an admin user for an Amazon OpenSearch domain.
- WebApplicationFirewall: Creates an AWS Web Application Firewall (WAF) that can be associated with resources such as an Application Load Balancer.
Aspects are a way to apply an operation to all constructs in a given scope. The aspect could modify the constructs, such as by adding tags. Or it could verify something about the state of the constructs, such as making sure that all buckets are encrypted. To learn more about aspects, check out the AWS CDK documentation.
Count: 4
- ApplyRemovalPolicy: Sets a user specified Removal Policy to all resources that the aspect applies to.
- CreateLambdaLogGroup: Ensures that Lambda log groups are created for all Lambda functions that the aspect applies to.
- SetLogRetention: Aspect that sets the log retention period for CloudWatch log groups to a user-supplied retention period.
- SqsRequireSsl: Enforces SSL/TLS requirements on Simple Queue Service (SQS) for all resources that the aspect applies to.
Patterns are higher-level abstractions that combine multiple constructs and their configurations to form an opinionated solution. They help developers implement best practices and reduce the amount of code needed to build well-architected infrastructure. Patterns typically orchestrate multiple AWS services together in a way that follows AWS best practices. To learn more about patterns, check out the AWS CDK documentation.
Count: 1
- Ec2LinuxImagePipeline: A pattern to build an EC2 Image Pipeline specifically for Linux.
This project is licensed under the Apache-2.0 License.