This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import logging | |
| from logging import LogRecord | |
| from typing import override | |
| from rich.logging import RichHandler | |
| from rich.text import Text | |
| class CustomRichHandler(RichHandler): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"Changes": .ResourceRecordSets | map({"Action": "UPSERT", "ResourceRecordSet": .})} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { strict as assert } from 'node:assert' | |
| import { Transform } from 'node:stream' | |
| import os from 'node:os' | |
| export class ParallelAsyncTransform extends Transform { | |
| constructor(maxParallel = os.availableParallelism(), options = {}) { | |
| super({ | |
| highWaterMark: maxParallel, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as cdk from 'aws-cdk-lib' | |
| import * as codebuild from 'aws-cdk-lib/aws-codebuild' | |
| import * as pipelines from 'aws-cdk-lib/pipelines' | |
| import { Construct } from 'constructs' | |
| export class PipelineStack extends cdk.Stack { | |
| public readonly pipeline: pipelines.CodePipeline |