interface FromStackArtifactOptions
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.Pipelines.FromStackArtifactOptions | 
|  Java | software.amazon.awscdk.pipelines.FromStackArtifactOptions | 
|  Python | aws_cdk.pipelines.FromStackArtifactOptions | 
|  TypeScript (source) | @aws-cdk/pipelines»FromStackArtifactOptions | 
⚠️ Deprecated: This class is part of the old API. Use the API based on the CodePipeline class instead
Options for CdkDeployAction.fromStackArtifact.
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 fromStackArtifactOptions: pipelines.FromStackArtifactOptions = {
  cloudAssemblyInput: artifact,
  // the properties below are optional
  executeRunOrder: 123,
  output: artifact,
  outputFileName: 'outputFileName',
  prepareRunOrder: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| cloud | Artifact | The CodePipeline artifact that holds the Cloud Assembly. | 
| 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 2 actions that will be created. | 
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.
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 2 actions that will be created.
