I hereby claim:
- I am kcwinner on github.
- I am kenwin0x539 (https://keybase.io/kenwin0x539) on keybase.
- I have a public key ASAFpYqlp6kyMtWcqmMMSAKCjzvw81K7x91M_vjaefa0rQo
To claim this, I am signing this object:
| import { DatabaseCluster, CfnDBCluster } from "aws-cdk-lib/aws-rds"; | |
| export class ServerlessAuroraDB extends Construct { | |
| this.cluster = new DatabaseCluster(this, "AuroraCluster", { | |
| // If you're using Aurora PostgreSQL, the database engine must be running at least version 16.3, 15.7, 14.12, or 13.15. | |
| engine: DatabaseClusterEngine.auroraPostgres({ | |
| version: AuroraPostgresEngineVersion.VER_15_8, | |
| }), | |
| ..., | |
| serverlessV2MinCapacity: 0.5, |
| import { Map, CustomState } from "aws-cdk-lib/aws-stepfunctions"; | |
| export class MyStack extends Stack { | |
| constructor(scope: App, id: string, props: StackProps) { | |
| const mapJob = new Map(this, "Map", { | |
| itemsPath: "$.Items", | |
| parameters: { | |
| "Item.$": "$$.Map.Item.Value", | |
| ...props.mapProps.parameters, |
| import { execSync } from 'child_process'; | |
| import * as path from 'path'; | |
| import { Readable } from 'stream'; | |
| import * as zlib from 'zlib'; | |
| import * as fs from 'fs-extra'; | |
| import * as tar from 'tar-fs'; | |
| import * as yargs from 'yargs'; | |
| import { JsiiType } from '../../inventory'; |
| from lib import appsync | |
| def lambda_handler(event, context): | |
| print(event) | |
| input = { | |
| 'name': 'test123', | |
| 'description': 'some cool description' | |
| } |
| const path = require('path'); | |
| const { readFileSync, writeFileSync, ensureFileSync, pathExistsSync } = require('fs-extra'); | |
| const { parse } = require('graphql'); // Requires version ^14.5.8 | |
| const gqlCodeGen = require('@graphql-codegen/core'); // Requires version ^1.8.3 | |
| const appSyncDataStoreCodeGen = require('amplify-codegen-appsync-model-plugin'); | |
| const scalars = { | |
| ID: "string", | |
| String: "string", | |
| Int: "number", |
| const path = require('path'); | |
| const { readFileSync, writeFileSync, ensureFileSync, pathExistsSync } = require('fs-extra'); | |
| const { parse } = require('graphql'); | |
| const gqlCodeGen = require('@graphql-codegen/core'); | |
| const appSyncDataStoreCodeGen = require('amplify-codegen-appsync-model-plugin'); | |
| generate(); | |
| async function generate() { | |
| const schemaContent = loadSchema('./schema.graphql'); |
I hereby claim:
To claim this, I am signing this object: