@Generated(value="jsii-pacmak/1.70.0 (build 03c2f6f)", date="2022-11-01T13:16:58.554Z") @Stability(value=Deprecated) @Deprecated public interface DeployCdkStackActionProps extends software.amazon.jsii.JsiiSerializable, DeployCdkStackActionOptions
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.services.iam.*;
import software.amazon.awscdk.pipelines.*;
Artifact artifact;
Role role;
DeployCdkStackActionProps deployCdkStackActionProps = DeployCdkStackActionProps.builder()
.actionRole(role)
.cloudAssemblyInput(artifact)
.stackName("stackName")
.templatePath("templatePath")
// the properties below are optional
.baseActionName("baseActionName")
.changeSetName("changeSetName")
.cloudFormationExecutionRole(role)
.dependencyStackArtifactIds(List.of("dependencyStackArtifactIds"))
.executeRunOrder(123)
.output(artifact)
.outputFileName("outputFileName")
.prepareRunOrder(123)
.region("region")
.stackArtifactId("stackArtifactId")
.templateConfigurationPath("templateConfigurationPath")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
DeployCdkStackActionProps.Builder
Deprecated.
|
static class |
DeployCdkStackActionProps.Jsii$Proxy
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static DeployCdkStackActionProps.Builder |
builder()
Deprecated.
|
IRole |
getActionRole()
Deprecated.
|
default IRole |
getCloudFormationExecutionRole()
Deprecated.
|
default List<String> |
getDependencyStackArtifactIds()
Deprecated.
|
default String |
getRegion()
Deprecated.
|
default String |
getStackArtifactId()
Deprecated.
|
String |
getStackName()
Deprecated.
|
default String |
getTemplateConfigurationPath()
Deprecated.
|
String |
getTemplatePath()
Deprecated.
|
getBaseActionName, getChangeSetName, getCloudAssemblyInput, getExecuteRunOrder, getOutput, getOutputFileName, getPrepareRunOrder@Stability(value=Deprecated) @Deprecated @NotNull IRole getActionRole()
This controls the account to deploy into
@Stability(value=Deprecated) @Deprecated @NotNull String getStackName()
@Stability(value=Deprecated) @Deprecated @NotNull String getTemplatePath()
@Stability(value=Deprecated) @Deprecated @Nullable default IRole getCloudFormationExecutionRole()
Default: - Execute CloudFormation using the action role
@Stability(value=Deprecated) @Deprecated @Nullable default List<String> getDependencyStackArtifactIds()
Used for pipeline order checking.
Default: - No dependencies
@Stability(value=Deprecated) @Deprecated @Nullable default String getRegion()
Default: - Same region as pipeline
@Stability(value=Deprecated) @Deprecated @Nullable default String getStackArtifactId()
Used for pipeline order checking.
Default: - Order will not be checked
@Stability(value=Deprecated) @Deprecated @Nullable default String getTemplateConfigurationPath()
Default: - No template configuration
@Stability(value=Deprecated) @Deprecated static DeployCdkStackActionProps.Builder builder()
builder in interface DeployCdkStackActionOptionsDeployCdkStackActionProps.Builder of DeployCdkStackActionPropsCopyright © 2022. All rights reserved.