typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
16 lines (15 loc) • 691 B
JavaScript
;
// CloudFormation Resource AWS::GameLift::MatchmakingConfiguration
Object.defineProperty(exports, "__esModule", { value: true });
exports.MatchmakingConfiguration_Type = void 0;
const base_1 = require("../../base");
exports.MatchmakingConfiguration_Type = 'AWS::GameLift::MatchmakingConfiguration';
/**
* Resource Type definition for AWS::GameLift::MatchmakingConfiguration
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html}
*/
function MatchmakingConfiguration(props) {
return new base_1.CfnResource(exports.MatchmakingConfiguration_Type, props);
}
exports.default = MatchmakingConfiguration;