AWS CDK Construct Library for Amazon Managed Service for Prometheus
Project description
@robhan-cdk-lib/aws_aps
AWS Cloud Development Kit (CDK) constructs for Amazon Managed Service for Prometheus.
In aws-cdk-lib.aws_aps, there currently only exist L1 constructs for Amazon Managed Service for Prometheus.
While helpful, they miss convenience like:
- advanced parameter checking (min/max number values, string lengths, array lengths...) before CloudFormation deployment
- proper parameter typing, e.g. enum values instead of strings
- simply referencing other constructs instead of e.g. ARN strings
Those features are implemented here.
The CDK maintainers explain that publishing your own package is "by far the strongest signal you can give to the CDK team that a feature should be included within the core aws-cdk packages".
This project aims to develop aws_aps constructs to a maturity that can potentially be accepted to the CDK core.
It is not supported by AWS and is not endorsed by them. Please file issues in the GitHub repository if you find any.
Example use
import * as cdk from 'aws-cdk-lib';
import { Subnet } from 'aws-cdk-lib/aws-ec2';
import { Cluster } from 'aws-cdk-lib/aws-eks';
import { Construct } from 'constructs';
import { Workspace, RuleGroupsNamespace, Scraper } from '@robhan-cdk-lib/aws_aps';
export class AwsApsCdkStack extends cdk.Stack {
constructor(scope: Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props);
const workspace = new Workspace(this, 'MyWorkspace', {});
new RuleGroupsNamespace(this, 'MyRuleGroupsNamespace', { workspace, data: '<myRulesFileData>', name: 'myRuleGroupsNamespace' });
new Scraper(this, 'MyScraper', {
destination: {
ampConfiguration: {
workspace,
},
},
source: {
eksConfiguration: {
cluster: Cluster.fromClusterAttributes(this, 'MyCluster', {
clusterName: 'clusterName',
}),
subnets: [
Subnet.fromSubnetAttributes(this, 'MySubnet', {
subnetId: 'subnetId',
}),
],
},
},
scrapeConfiguration: {
configurationBlob: '<myScrapeConfiguration>',
},
});
}
}
License
MIT
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 robhan_cdk_lib_aws_aps-0.0.45.tar.gz.
File metadata
- Download URL: robhan_cdk_lib_aws_aps-0.0.45.tar.gz
- Upload date:
- Size: 82.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e02aa982740a3969110b8da8c0a0b0a6b7e1a66e37c23526f4bc41579da081a
|
|
| MD5 |
e717760ed7fb556f4f646ddbf0c013c0
|
|
| BLAKE2b-256 |
a6f0b072312666a667354eabc2aa2a6e7fe205f206cad9793ec43a9c27564556
|
File details
Details for the file robhan_cdk_lib_aws_aps-0.0.45-py3-none-any.whl.
File metadata
- Download URL: robhan_cdk_lib_aws_aps-0.0.45-py3-none-any.whl
- Upload date:
- Size: 80.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1a406074a9347b569596d7ac185d5c12f9d792d74944967c39420ca04daf700
|
|
| MD5 |
37dea28db1d403afb9b176c6c6cc0f27
|
|
| BLAKE2b-256 |
86267b5ac937e84ac46c0a3a6675b6a3f804744654691d849e8a31d2dbc7c15d
|