interface AdditionalArtifact
Language | Type name |
---|---|
![]() | Amazon.CDK.Pipelines.AdditionalArtifact |
![]() | software.amazon.awscdk.pipelines.AdditionalArtifact |
![]() | aws_cdk.pipelines.AdditionalArtifact |
![]() | @aws-cdk/pipelines » AdditionalArtifact |
⚠️ Deprecated: This class is part of the old API. Use the API based on the CodePipeline
class instead
Specification of an additional artifact to generate.
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 additionalArtifact: pipelines.AdditionalArtifact = {
artifact: artifact,
directory: 'directory',
};
Properties
Name | Type | Description |
---|---|---|
artifact | Artifact | Artifact to represent the build directory in the pipeline. |
directory | string | Directory to be packaged. |
artifact
⚠️ Deprecated: This class is part of the old API. Use the API based on the CodePipeline
class instead
Type:
Artifact
Artifact to represent the build directory in the pipeline.
directory
⚠️ Deprecated: This class is part of the old API. Use the API based on the CodePipeline
class instead
Type:
string
Directory to be packaged.