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 |
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
<script src="https://code.jquery.com/jquery-1.12.4.min.js" integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ=" crossorigin="anonymous"></script> | |
<script> | |
"use strict" | |
/* | |
Copyright 2017 Jim Nicholls, The University of Sydney. | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at |