Add a swagger endpoint to your EdgeAPI
Project description
@reapit-cdk/edge-api-swagger
Add a swagger endpoint to your EdgeAPI
Package Installation:
yarn add --dev @reapit-cdk/edge-api-swagger
# or
npm install @reapit-cdk/edge-api-swagger --save-dev
Usage
import { Stack, App } from 'aws-cdk-lib'
import { EdgeAPI, EdgeAPILambda, LambdaEndpoint, ProxyEndpoint } from '@reapit-cdk/edge-api'
import { Code, Runtime } from 'aws-cdk-lib/aws-lambda'
import { EdgeAPISwaggerEndpoint } from '@reapit-cdk/edge-api-swagger'
import { Certificate } from 'aws-cdk-lib/aws-certificatemanager'
import * as path from 'path'
const app = new App()
const stack = new Stack(app, 'stack-name')
const certificate = new Certificate(stack, 'certificate', {
domainName: 'example.org',
})
const api = new EdgeAPI(stack, 'api', {
certificate,
domains: ['example.org', 'example.com'],
devMode: false,
defaultEndpoint: new ProxyEndpoint({
destination: 'example.com',
pathPattern: '/*',
}),
})
const lambdaFunction = new EdgeAPILambda(stack, 'lambda', {
code: Code.fromAsset(path.resolve('../lambda/dist')),
codePath: path.resolve('../lambda/src/index.ts'), // gets added to the docs
handler: 'index.handler',
runtime: Runtime.NODEJS_18_X,
environment: {
aVariable: 'contents',
},
})
api.addEndpoint(
new LambdaEndpoint({
pathPattern: '/api/lambda',
lambdaFunction,
}),
)
api.addEndpoint(
new EdgeAPISwaggerEndpoint(stack, 'docs', {
api,
url: 'https://example.org',
pathPattern: '/swagger', // optional, defaults to /swagger
// optional
info: {
title: '', // defaults to Edge API
version: '', // defaults to 1.0.0
},
}),
)
Project details
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 reapit-cdk.edge-api-swapper-0.1.5.tar.gz.
File metadata
- Download URL: reapit-cdk.edge-api-swapper-0.1.5.tar.gz
- Upload date:
- Size: 134.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f93bf46c7ba0cc9e272b6ada2aa8f3ad87be961b13868ee45e0ab0e07d086547
|
|
| MD5 |
dda8186d89d26fb2968fcc6a01dd6252
|
|
| BLAKE2b-256 |
857aaf17156e71319b1ee7fa7b43cbc1d2edd2f9a9af35cc7e4b0d6574c41694
|
File details
Details for the file reapit_cdk.edge_api_swapper-0.1.5-py3-none-any.whl.
File metadata
- Download URL: reapit_cdk.edge_api_swapper-0.1.5-py3-none-any.whl
- Upload date:
- Size: 132.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95103270644d854d99b8c400032fec24070a513d40ddc55b92e9ea75dd59fc71
|
|
| MD5 |
9203ecc429e396e4e504c6961c3cc6f3
|
|
| BLAKE2b-256 |
beff48e157a82442ed457c6e952f5c8106ab952077a21fff9e3e6c36070a693d
|