typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
17 lines (16 loc) • 743 B
JavaScript
;
// CloudFormation Resource AWS::AutoScaling::LaunchConfiguration
Object.defineProperty(exports, "__esModule", { value: true });
exports.LaunchConfiguration_Type = void 0;
const base_1 = require("../../base");
exports.LaunchConfiguration_Type = 'AWS::AutoScaling::LaunchConfiguration';
/**
* The AWS::AutoScaling::LaunchConfiguration resource specifies the
* launch configuration that can be used by an Auto Scaling group to
* configure Amazon EC2 instances. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html}
*/
function LaunchConfiguration(props) {
return new base_1.CfnResource(exports.LaunchConfiguration_Type, props);
}
exports.default = LaunchConfiguration;