UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

17 lines (16 loc) 569 B
import { ResourceBase } from "../../resource"; import { Value } from "../../data-types"; export interface APNSChannelProperties { TokenKeyId?: Value<string>; Enabled?: Value<boolean>; TokenKey?: Value<string>; ApplicationId: Value<string>; Certificate?: Value<string>; TeamId?: Value<string>; DefaultAuthenticationMethod?: Value<string>; PrivateKey?: Value<string>; BundleId?: Value<string>; } export default class Inner_APNSChannel extends ResourceBase<APNSChannelProperties> { constructor(properties: APNSChannelProperties); }