UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

9 lines (8 loc) 293 B
import { ResourceBase } from "../../resource"; import { Value } from "../../data-types"; export interface KeyspaceProperties { KeyspaceName?: Value<string>; } export default class Inner_Keyspace extends ResourceBase<KeyspaceProperties> { constructor(properties: KeyspaceProperties); }