We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
join
IPure<T>
The lib supports stack construction using following syntax
const app = new cdk.App() const stack = (): cdk.StackProps => ({}) pure.iaac(cdk.Stack)(stack) .effect(x => { pure.join(x, RestApi) pure.join(x, LogGroup) pure.join(x, CodeBuildEvents) }) app.synth()
The code become cleaner if join is part of IPure
pure.iaac(cdk.Stack)(stack) .join(RestApi) .join(LogGroup) .join(CodeBuildEvents)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The lib supports stack construction using following syntax
The code become cleaner if
join
is part of IPureThe text was updated successfully, but these errors were encountered: