Package software.amazon.awscdk.pipelines
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.
(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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classDeprecated.static final classDeprecated. -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCloudAssemblyInput
Deprecated.(deprecated) The CodePipeline artifact that holds the Cloud Assembly. -
getBaseActionName
Deprecated.(deprecated) Base name of the action.Default: stackName
-
getChangeSetName
Deprecated.(deprecated) Name of the change set to create and deploy.Default: 'PipelineChange'
-
getExecuteRunOrder
Deprecated.(deprecated) Run order for the Execute action.Default: - prepareRunOrder + 1
-
getOutput
Deprecated.(deprecated) Artifact to write Stack Outputs to.Default: - No outputs
-
getOutputFileName
Deprecated.(deprecated) Filename in output to write Stack outputs to.Default: - Required when 'output' is set
-
getPrepareRunOrder
Deprecated.(deprecated) Run order for the Prepare action.Default: 1
-
builder
Deprecated.
-
CodePipelineclass instead