@codification/cutwater-build-aws
Version:
Tasks for working with AWS.
14 lines • 332 B
TypeScript
export interface CloudFormationTemplate {
Parameters?: any;
Conditions?: any;
Globals?: any;
Resources: {
[key: string]: CloudFormationResource;
};
Outputs?: any;
}
export interface CloudFormationResource {
Type: string;
Properties: any;
}
//# sourceMappingURL=CloudFormationTemplate.d.ts.map