import { ResourceBase } from '../resource'; import { Value, List } from '../dataTypes'; export declare class Tags { Value?: Value; Key?: Value; constructor(properties: Tags); } export interface DeploymentProperties { DeploymentStrategyId: Value; ConfigurationProfileId: Value; EnvironmentId: Value; KmsKeyIdentifier?: Value; Description?: Value; ConfigurationVersion: Value; ApplicationId: Value; Tags?: List; } export default class Deployment extends ResourceBase { static Tags: typeof Tags; constructor(properties: DeploymentProperties); }