Interface CodeDeployServerDeployActionProps

All Superinterfaces:
CommonActionProps, CommonAwsActionProps, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CodeDeployServerDeployActionProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-09-24T10:56:29.322Z") @Stability(Stable) public interface CodeDeployServerDeployActionProps extends software.amazon.jsii.JsiiSerializable, CommonAwsActionProps
Construction properties of the CodeDeployServerDeployAction CodeDeploy server deploy CodePipeline Action.

Example:

 ServerDeploymentGroup deploymentGroup;
 Pipeline pipeline = Pipeline.Builder.create(this, "MyPipeline")
         .pipelineName("MyPipeline")
         .build();
 // add the source and build Stages to the Pipeline...
 Artifact buildOutput = new Artifact();
 CodeDeployServerDeployAction deployAction = CodeDeployServerDeployAction.Builder.create()
         .actionName("CodeDeploy")
         .input(buildOutput)
         .deploymentGroup(deploymentGroup)
         .build();
 pipeline.addStage(StageOptions.builder()
         .stageName("Deploy")
         .actions(List.of(deployAction))
         .build());