import { ResourceBase } from '../resource'; import { Value, List } from '../dataTypes'; export declare class Tags { Value?: Value; Key?: Value; constructor(properties: Tags); } export interface DeploymentStrategyProperties { ReplicateTo: Value; GrowthType?: Value; Description?: Value; DeploymentDurationInMinutes: Value; GrowthFactor: Value; FinalBakeTimeInMinutes?: Value; Tags?: List; Name: Value; } export default class DeploymentStrategy extends ResourceBase { static Tags: typeof Tags; constructor(properties: DeploymentStrategyProperties); }