UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

23 lines (22 loc) 959 B
import { Construct } from 'constructs'; import * as codedeploy from '../../../aws-codedeploy'; import * as codepipeline from '../../../aws-codepipeline'; import { Action } from '../action'; /** * Construction properties of the `CodeDeployServerDeployAction CodeDeploy server deploy CodePipeline Action`. */ export interface CodeDeployServerDeployActionProps extends codepipeline.CommonAwsActionProps { /** * The source to use as input for deployment. */ readonly input: codepipeline.Artifact; /** * The CodeDeploy server Deployment Group to deploy to. */ readonly deploymentGroup: codedeploy.IServerDeploymentGroup; } export declare class CodeDeployServerDeployAction extends Action { private readonly deploymentGroup; constructor(props: CodeDeployServerDeployActionProps); protected bound(_scope: Construct, _stage: codepipeline.IStage, options: codepipeline.ActionBindOptions): codepipeline.ActionConfig; }