UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

16 lines (15 loc) 586 B
import { ResourceBase } from "../../resource"; import { Value } from "../../data-types"; export declare class MinimumHealthyHosts { Type: Value<string>; Value: Value<number>; constructor(properties: MinimumHealthyHosts); } export interface DeploymentConfigProperties { DeploymentConfigName?: Value<string>; MinimumHealthyHosts?: MinimumHealthyHosts; } export default class Inner_DeploymentConfig extends ResourceBase<DeploymentConfigProperties> { static MinimumHealthyHosts: typeof MinimumHealthyHosts; constructor(properties: DeploymentConfigProperties); }