Interface DeployCdkStackActionOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Subinterfaces:
CdkStackActionFromArtifactOptions, DeployCdkStackActionProps
All Known Implementing Classes:
CdkStackActionFromArtifactOptions.Jsii$Proxy, DeployCdkStackActionOptions.Jsii$Proxy, DeployCdkStackActionProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:49.817Z") @Stability(Deprecated) @Deprecated public interface DeployCdkStackActionOptions extends software.amazon.jsii.JsiiSerializable
Deprecated.
This class is part of the old API. Use the API based on the CodePipeline class instead
(deprecated) Customization options for a DeployCdkStackAction.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.codepipeline.*;
 import software.amazon.awscdk.pipelines.*;
 Artifact artifact;
 DeployCdkStackActionOptions deployCdkStackActionOptions = DeployCdkStackActionOptions.builder()
         .cloudAssemblyInput(artifact)
         // the properties below are optional
         .baseActionName("baseActionName")
         .changeSetName("changeSetName")
         .executeRunOrder(123)
         .output(artifact)
         .outputFileName("outputFileName")
         .prepareRunOrder(123)
         .build();
 

  • Method Details

    • getCloudAssemblyInput

      @Stability(Deprecated) @Deprecated @NotNull Artifact getCloudAssemblyInput()
      Deprecated.
      (deprecated) The CodePipeline artifact that holds the Cloud Assembly.
    • getBaseActionName

      @Stability(Deprecated) @Deprecated @Nullable default String getBaseActionName()
      Deprecated.
      (deprecated) Base name of the action.

      Default: stackName

    • getChangeSetName

      @Stability(Deprecated) @Deprecated @Nullable default String getChangeSetName()
      Deprecated.
      (deprecated) Name of the change set to create and deploy.

      Default: 'PipelineChange'

    • getExecuteRunOrder

      @Stability(Deprecated) @Deprecated @Nullable default Number getExecuteRunOrder()
      Deprecated.
      (deprecated) Run order for the Execute action.

      Default: - prepareRunOrder + 1

    • getOutput

      @Stability(Deprecated) @Deprecated @Nullable default Artifact getOutput()
      Deprecated.
      (deprecated) Artifact to write Stack Outputs to.

      Default: - No outputs

    • getOutputFileName

      @Stability(Deprecated) @Deprecated @Nullable default String getOutputFileName()
      Deprecated.
      (deprecated) Filename in output to write Stack outputs to.

      Default: - Required when 'output' is set

    • getPrepareRunOrder

      @Stability(Deprecated) @Deprecated @Nullable default Number getPrepareRunOrder()
      Deprecated.
      (deprecated) Run order for the Prepare action.

      Default: 1

    • builder

      @Stability(Deprecated) @Deprecated static DeployCdkStackActionOptions.Builder builder()
      Deprecated.
      Returns:
      a DeployCdkStackActionOptions.Builder of DeployCdkStackActionOptions