UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

12 lines (11 loc) 393 B
import { ResourceBase } from "../../resource"; import { Value } from "../../data-types"; export interface ADMChannelProperties { ClientSecret: Value<string>; Enabled?: Value<boolean>; ClientId: Value<string>; ApplicationId: Value<string>; } export default class Inner_ADMChannel extends ResourceBase<ADMChannelProperties> { constructor(properties: ADMChannelProperties); }