UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

22 lines (21 loc) 721 B
import { ResourceBase, ResourceTag as Inner_ResourceTag } from "../../resource"; import { Value, List } from "../../data-types"; export declare class StageKey { RestApiId?: Value<string>; StageName?: Value<string>; constructor(properties: StageKey); } export interface ApiKeyProperties { CustomerId?: Value<string>; Description?: Value<string>; Enabled?: Value<boolean>; GenerateDistinctId?: Value<boolean>; Name?: Value<string>; StageKeys?: List<StageKey>; Tags?: List<Inner_ResourceTag>; Value?: Value<string>; } export default class Inner_ApiKey extends ResourceBase<ApiKeyProperties> { static StageKey: typeof StageKey; constructor(properties: ApiKeyProperties); }