UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

27 lines (26 loc) 1.29 kB
import { CfnResource, Resolvable } from '../../base'; export declare type MatchmakingRuleSet_Type = 'AWS::GameLift::MatchmakingRuleSet'; export declare const MatchmakingRuleSet_Type = "AWS::GameLift::MatchmakingRuleSet"; /** * Resource Type definition for AWS::GameLift::MatchmakingRuleSet {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html} */ export default function MatchmakingRuleSet(props: MatchmakingRuleSet_Properties): CfnResource<MatchmakingRuleSet_Properties>; /** * Resource Type definition for AWS::GameLift::MatchmakingRuleSet {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html} */ export declare type MatchmakingRuleSet_Properties = { /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody} */ RuleSetBody: Resolvable<string>; Id?: Resolvable<string>; Arn?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name} */ Name: Resolvable<string>; };