Skip to content

Commit

Permalink
Generate docs
Browse files Browse the repository at this point in the history
  • Loading branch information
miensol committed Jun 25, 2024
1 parent e15057f commit a9b0640
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 24 deletions.
11 changes: 11 additions & 0 deletions API.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 0 additions & 24 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,30 +11,6 @@ export interface SelfSignedCertificateProps {
readonly tags?: Record<string, string>;
}


// class SelfSignedCertificateResourceProvider extends Construct {
// readonly provider: Provider;
//
// constructor(scope: Construct, id: string) {
// super(scope, id);
//
// const onEvent = new NodejsFunction(this, 'OnEventHandler', {
// runtime: Runtime.NODEJS_20_X,
// entry: path.join(__dirname, 'self-signed-certificate-lambda', 'lambda.ts'),
// });
//
// this.provider = new Provider(this, id, {
// onEventHandler: 'onEvent',
//
// });
// }
//
// static getOrCreate(scope: Construct) {
// const id = 'SelfSignedCertificateResourceProvider';
// return Stack.of(scope).node.tryFindChild(id) ?? new SelfSignedCertificateResourceProvider(scope, id, {});
// }
// }

const CustomResourceType = 'Custom::SelfSignedCertificate';

export class SelfSignedCertificate extends Construct {
Expand Down

0 comments on commit a9b0640

Please sign in to comment.