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