typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
15 lines (14 loc) • 559 B
JavaScript
;
// CloudFormation Resource AWS::Route53::HealthCheck
Object.defineProperty(exports, "__esModule", { value: true });
exports.HealthCheck_Type = void 0;
const base_1 = require("../../base");
exports.HealthCheck_Type = 'AWS::Route53::HealthCheck';
/**
* Resource schema for AWS::Route53::HealthCheck. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html}
*/
function HealthCheck(props) {
return new base_1.CfnResource(exports.HealthCheck_Type, props);
}
exports.default = HealthCheck;