Package software.amazon.awscdk.pipelines
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.
(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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
Deprecated.static final class
Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionstatic AddStageOptions.Builder
builder()
Deprecated.default Number
Deprecated.default Boolean
Deprecated.Methods inherited from interface software.amazon.awscdk.pipelines.BaseStageOptions
getConfirmBroadeningPermissions, getSecurityNotificationTopic
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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
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
Deprecated.- Returns:
- a
AddStageOptions.Builder
ofAddStageOptions
-
CodePipeline
class instead