Skip to content

Commit be93118

Browse files
committed
Updates documentation
* fix a typo in python example * add properties' description to API
1 parent 142d0d2 commit be93118

File tree

3 files changed

+33
-1
lines changed

3 files changed

+33
-1
lines changed

API.md

Lines changed: 26 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ from aws_cdk import (
165165
Stack,
166166
aws_ec2 as ec2,
167167
)
168-
from consturcts import Construct
168+
from constructs import Construct
169169
from cdk_image_pipeline import ImagePipeline
170170
171171
# ...

src/index.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,13 @@ export interface ImagePipelineProps {
129129

130130
export class ImagePipeline extends Construct {
131131
imageRecipeComponents: imagebuilder.CfnImageRecipe.ComponentConfigurationProperty[];
132+
/**
133+
* The internal image pipeline created by this construct.
134+
*/
132135
readonly pipeline: imagebuilder.CfnImagePipeline;
136+
/**
137+
* SNS Topic where the internal ImageBuilder will notify about new builds.
138+
*/
133139
readonly builderSnsTopic: sns.Topic;
134140

135141
constructor(scope: Construct, id: string, props: ImagePipelineProps) {

0 commit comments

Comments
 (0)