Interface AddStageOptions

All Superinterfaces:
BaseStageOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
AddStageOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:49.745Z") @Stability(Deprecated) @Deprecated public interface AddStageOptions extends software.amazon.jsii.JsiiSerializable, BaseStageOptions
Deprecated.
This class is part of the old API. Use the API based on the CodePipeline class instead
(deprecated) Options for adding an application stage to a pipeline.

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.sns.*;
 import software.amazon.awscdk.pipelines.*;
 Topic topic;
 AddStageOptions addStageOptions = AddStageOptions.builder()
         .confirmBroadeningPermissions(false)
         .extraRunOrderSpace(123)
         .manualApprovals(false)
         .securityNotificationTopic(topic)
         .build();
 

  • Method Details

    • getExtraRunOrderSpace

      @Stability(Deprecated) @Deprecated @Nullable default Number getExtraRunOrderSpace()
      Deprecated.
      (deprecated) Add room for extra actions.

      You can use this to make extra room in the runOrder sequence between the changeset 'prepare' and 'execute' actions and insert your own actions there.

      Default: 0

    • getManualApprovals

      @Stability(Deprecated) @Deprecated @Nullable default Boolean getManualApprovals()
      Deprecated.
      (deprecated) Add manual approvals before executing change sets.

      This gives humans the opportunity to confirm the change set looks alright before deploying it.

      Default: false

    • builder

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