This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as cdk from '@aws-cdk/core'; | |
| import * as ec2 from '@aws-cdk/aws-ec2'; | |
| import * as secretsManager from '@aws-cdk/aws-secretsmanager'; | |
| import * as ssm from '@aws-cdk/aws-ssm'; | |
| import { ISecurityGroup, SecurityGroup } from '@aws-cdk/aws-ec2'; | |
| import * as rds from '@aws-cdk/aws-rds'; | |
| import * as cloud9 from '@aws-cdk/aws-cloud9'; | |
| export interface CdkBaseStackProps extends cdk.StackProps { | |
| stage: string, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fn mock<T: Into<String>, I: IntoIterator<Item = T>>(_: I) {} | |
| struct Merchant<'a> { | |
| name: &'a str, | |
| billing_portal: &'a str, | |
| billing_period: &'a str, | |
| stripe_id: Option<&'a str>, | |
| } | |
| fn merchant() -> Merchant { unimplemented!(); } |