@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
11 lines (10 loc) • 358 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface GCMChannelProperties {
ApiKey: Value<string>;
Enabled?: Value<boolean>;
ApplicationId: Value<string>;
}
export default class Inner_GCMChannel extends ResourceBase<GCMChannelProperties> {
constructor(properties: GCMChannelProperties);
}