Package Exports
- cdk-fsx-ontap
- cdk-fsx-ontap/lib/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (cdk-fsx-ontap) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
CDK FSx ONTAP
Overview
An AWS Cloud Development Kit (CDK) construct for deploying shared file storage using Amazon FSx for Netapp ONTAP.
Installation
TypeScript
yarn add cdk-fsx-ontap
Python
pip install cdk-fsx-ontap
Usage
a) basic - going with all of the defaults
NB, check the full example in src/examples/basic.ts
declare const vpc: ec2.Vpc;
declare const securityGroupSource: ec2.SecurityGroup;
new FsxOntap(this, 'FsxOntap', {
vpc,
ec2SecurityGroup,
});Acknowledgements
This project utilizes projen (star it on GitHub) and was created by following this guide by hayao-k (like it on Dev.to).