Skip to content

Instantly share code, notes, and snippets.

View leegilmorecode's full-sized avatar
:atom:
Serverless Hero

Lee Gilmore leegilmorecode

:atom:
Serverless Hero
View GitHub Profile
import * as cdk from 'aws-cdk-lib';
import { Construct } from 'constructs';
import { EnvironmentConfig } from '../pipeline-types/pipeline-types';
import { StatefulStack } from '../../app/stateful/stateful-stack';
import { StatelessStack } from '../../app/stateless/stateless-stack';
// this is our stage made up of multiple stacks which will be deployed to various environments
// based on config i.e. feature-dev, staging, prod, which also includes our application config
export class PipelineStage extends cdk.Stage {
@leegilmorecode
leegilmorecode / create-customer.ts
Created January 29, 2023 15:49
Example of a AppSync Lambda function resolver using IAM and SigV4 to communicate with private API Gateways
import { AppSyncResolverEvent, AppSyncResolverHandler } from "aws-lambda";
import { Customer } from "../../types";
import { HttpRequest } from "@aws-sdk/protocol-http";
import { URL } from "url";
import fetch from "node-fetch";
import { signRequest } from "../../helpers/request-signer";
import { config } from "../../config";
import { v4 as uuid } from "uuid";
@leegilmorecode
leegilmorecode / internal-system-stack.ts
Created December 14, 2022 18:33
Example of using Amazon EventBridge API Destinations to integrate with an external REST API
// create the orders connection for the api destination
const externalOrdersConnection: events.Connection = new events.Connection(
this,
'ExternalOrdersApiDestinationsConnection',
{
authorization: events.Authorization.apiKey(
'x-api-key',
SecretValue.unsafePlainText('SuperSecretKey!12345') // this is for the demo only
),
description: 'External Orders API Destination Connection',
@leegilmorecode
leegilmorecode / delete-order.ts
Created December 14, 2022 18:25
Example of calling an Amazon Gateway REST API as a proxy to Amazon EventBridge as a direct integration
import * as AWS from 'aws-sdk';
import { APIGatewayProxyHandler, APIGatewayProxyResult } from 'aws-lambda';
import axios from 'axios';
import { v4 as uuid } from 'uuid';
const dynamoDb = new AWS.DynamoDB.DocumentClient();
export const handler: APIGatewayProxyHandler = async ({
@leegilmorecode
leegilmorecode / shared-resources-stack.ts
Created December 14, 2022 18:21
Direct integration between Amazon API Gateway and Amazon EventBridge
// .. creation of the eventbus above
const sharedEdaApi: apigw.RestApi = new apigw.RestApi(
this,
'SharedEdaApi',
{
description: 'shared eda api',
restApiName: 'shared-eda-api',
deploy: true,
deployOptions: {
@leegilmorecode
leegilmorecode / event-adapter.ts
Created December 3, 2022 05:53
Secondary adapter for publishing events to Amazon EventBridge
import * as AWS from 'aws-sdk';
import { PutEventsRequestEntry } from 'aws-sdk/clients/eventbridge';
import { config } from '@config/config';
import { logger } from '@packages/logger';
class NoEventBodyError extends Error {
constructor(message: string) {
super(message);
this.name = 'NoEventBodyError';
@leegilmorecode
leegilmorecode / publish-event-recipient.ts
Created December 3, 2022 05:52
Example repository for publishing domain events via a secondary adapter
import { DomainEvent } from '@entity/domain-event';
import { publishEvent } from '@adapters/secondary/event-adapter';
// this is the repository which the domain calls to utilise the adapter
// only working with domain entities, and translating dto's from the secondary adapters
// domain --> (repository) --> adapter
export async function publishDomainEvents(
events: DomainEvent[]
): Promise<void> {
const eventsToPublish: Promise<void>[] = events.map((item) =>
@leegilmorecode
leegilmorecode / create-customer-account.ts
Created December 3, 2022 05:47
Create customer account use case example
import {
CustomerAccountDto,
NewCustomerAccountDto,
} from '@dto/customer-account';
import { CustomerAccount } from '@domain/customer-account';
import { createCustomerAccount } from '@repositories/create-customer-account-repository';
import { logger } from '@packages/logger';
import { publishDomainEvents } from '@repositories/publish-event-recipient';
@leegilmorecode
leegilmorecode / customer-address.ts
Created December 3, 2022 05:19
Example implementation of our Customer Address value object
import { CustomerAddressDto } from '@dto/customer-address';
import { CustomerAddressProps } from '@models/customer-address-types';
import { ValueObject } from '@entity/value-object';
import { schema } from '@schemas/customer-address';
export class CustomerAddressInvalidError extends Error {
constructor(message: string) {
super(message);
this.name = 'CustomerAddressInvalidError';
}
@leegilmorecode
leegilmorecode / value-object.ts
Created December 3, 2022 05:16
A base class for our value objects
import { schemaValidator } from '@packages/schema-validator';
interface ValueObjectProps {
[index: string]: any;
}
export abstract class ValueObject<T extends ValueObjectProps> {
protected props: T;
constructor(props: T) {
this.props = Object.freeze(props);