23 lines
969 B
TypeScript
23 lines
969 B
TypeScript
import type { Construct } from 'constructs';
|
|
import type * 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;
|
|
}
|