interface DeployCdkStackActionOptions
Language | Type name |
---|---|
![]() | Amazon.CDK.Pipelines.DeployCdkStackActionOptions |
![]() | software.amazon.awscdk.pipelines.DeployCdkStackActionOptions |
![]() | aws_cdk.pipelines.DeployCdkStackActionOptions |
![]() | @aws-cdk/pipelines » DeployCdkStackActionOptions |
⚠️ Deprecated: This class is part of the old API. Use the API based on the CodePipeline
class instead
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 * as codepipeline from '@aws-cdk/aws-codepipeline';
import * as pipelines from '@aws-cdk/pipelines';
declare const artifact: codepipeline.Artifact;
const deployCdkStackActionOptions: pipelines.DeployCdkStackActionOptions = {
cloudAssemblyInput: artifact,
// the properties below are optional
baseActionName: 'baseActionName',
changeSetName: 'changeSetName',
executeRunOrder: 123,
output: artifact,
outputFileName: 'outputFileName',
prepareRunOrder: 123,
};
Properties
Name | Type | Description |
---|---|---|
cloud | Artifact | The CodePipeline artifact that holds the Cloud Assembly. |
base | string | Base name of the action. |
change | string | Name of the change set to create and deploy. |
execute | number | Run order for the Execute action. |
output? | Artifact | Artifact to write Stack Outputs to. |
output | string | Filename in output to write Stack outputs to. |
prepare | number | Run order for the Prepare action. |
cloudAssemblyInput
⚠️ Deprecated: This class is part of the old API. Use the API based on the CodePipeline
class instead
Type:
Artifact
The CodePipeline artifact that holds the Cloud Assembly.
baseActionName?
⚠️ Deprecated: This class is part of the old API. Use the API based on the CodePipeline
class instead
Type:
string
(optional, default: stackName)
Base name of the action.
changeSetName?
⚠️ Deprecated: This class is part of the old API. Use the API based on the CodePipeline
class instead
Type:
string
(optional, default: 'PipelineChange')
Name of the change set to create and deploy.
executeRunOrder?
⚠️ Deprecated: This class is part of the old API. Use the API based on the CodePipeline
class instead
Type:
number
(optional, default: prepareRunOrder + 1)
Run order for the Execute action.
output?
⚠️ Deprecated: This class is part of the old API. Use the API based on the CodePipeline
class instead
Type:
Artifact
(optional, default: No outputs)
Artifact to write Stack Outputs to.
outputFileName?
⚠️ Deprecated: This class is part of the old API. Use the API based on the CodePipeline
class instead
Type:
string
(optional, default: Required when 'output' is set)
Filename in output to write Stack outputs to.
prepareRunOrder?
⚠️ Deprecated: This class is part of the old API. Use the API based on the CodePipeline
class instead
Type:
number
(optional, default: 1)
Run order for the Prepare action.