graphql-transformer-core
Version:
A framework to transform from GraphQL SDL to AWS cloudFormation.
21 lines • 656 B
TypeScript
import { Template, NestedStacks } from '../DeploymentResources';
export type StackRules = Map<string, string>;
export interface SplitStackOptions {
stack: Template;
stackRules: StackRules;
rootStackName?: string;
defaultParameterValues?: {
[k: string]: any;
};
defaultParameterDefinitions?: {
[k: string]: any;
};
defaultDependencies?: string[];
importExportPrefix: any;
deployment: {
deploymentBucketParameterName: string;
deploymentKeyParameterName: string;
};
}
export default function splitStack(opts: SplitStackOptions): NestedStacks;
//# sourceMappingURL=splitStack.d.ts.map