Button for AWS Lambda
Hook-up UI components directly to AWS Lambda functions. Just install Buttonize and deploy your CDK. That's it.
No credit card required.
CloudFront Invalidation Panel
Delegate cache invalidations to those without access to AWS, like the marketing team handling all the websites.
Cognito Management Panel
Create a management panel for Cognito User Pool. List, Create, Enable, Disable, Remove and Search for users.
EC2 Instance Control Panel
Let your L1 support or even non-technical colleagues handle the basic operations around EC2 instances.
Build your own app
Create internal apps with CDK from scratch. Get up and running in minutes.
import { Distribution } from 'aws-cdk-lib/aws-cloudfront'
import { HttpOrigin } from 'aws-cdk-lib/aws-cloudfront-origins'
import { Buttonize } from 'buttonize/cdk'
import { CloudFrontInvalidationPanel } from 'buttonize/library'
Buttonize.init(this, { apiKey: 'YOUR_API_KEY' })
const yourDistribution = new Distribution(this, 'YourDistribution', {
defaultBehavior: { origin: new HttpOrigin('google.com') }
})
new CloudFrontInvalidationPanel(this, 'CloudFrontPanel', {
distribution: yourDistribution,
paths: ['/*', '/users', '/en/lp/mega-campaign']
})
At Buttonize we realize how important IaC is and that's why we decided to embrace it as a first class citizen. Our fully-managed "Frontend-as-a-Service" platform is completely driven by IaC and fully integrated with popular IaC tools such as AWS CDK.
Watch demoRun actions directly in your AWS environment from your apps, without any data passing through Buttonize servers. Simply connect your form inputs and actions to lambda functions. From there, the possibilities are endless.
Use primitives built by AWS such as Lambda Functions, and integrate with our UI component platform, all while keeping their access secure thanks to AWS IAM.
By utilizing AWS IAM we are able to interact with resources in your AWS account directly from the browser. No data flows through our infrastructure.
Learn moreDeveloper Experience is the number one priority and that's why we support local development with hot reloading of the CDK code.
Learn more