@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
27 lines (26 loc) • 1 kB
TypeScript
import { ResourceBase } from "../../resource";
import { Value, List } from "../../data-types";
export declare class GameProperty {
Value: Value<string>;
Key: Value<string>;
constructor(properties: GameProperty);
}
export interface MatchmakingConfigurationProperties {
GameSessionQueueArns: List<Value<string>>;
GameProperties?: List<GameProperty>;
AdditionalPlayerCount?: Value<number>;
Name: Value<string>;
RequestTimeoutSeconds: Value<number>;
BackfillMode?: Value<string>;
GameSessionData?: Value<string>;
RuleSetName: Value<string>;
CustomEventData?: Value<string>;
AcceptanceTimeoutSeconds?: Value<number>;
AcceptanceRequired: Value<boolean>;
NotificationTarget?: Value<string>;
Description?: Value<string>;
}
export default class Inner_MatchmakingConfiguration extends ResourceBase<MatchmakingConfigurationProperties> {
static GameProperty: typeof GameProperty;
constructor(properties: MatchmakingConfigurationProperties);
}