enum ImagePipelineStatus
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ImageBuilder.Alpha.ImagePipelineStatus |
Go | github.com/aws/aws-cdk-go/awsimagebuilderalpha/v2#ImagePipelineStatus |
Java | software.amazon.awscdk.services.imagebuilder.alpha.ImagePipelineStatus |
Python | aws_cdk.aws_imagebuilder_alpha.ImagePipelineStatus |
TypeScript (source) | @aws-cdk/aws-imagebuilder-alpha ยป ImagePipelineStatus |
Indicates whether the pipeline is enabled to be triggered by the provided schedule.
Example
const advancedSchedulePipeline = new imagebuilder.ImagePipeline(this, 'AdvancedSchedulePipeline', {
recipe: exampleImageRecipe,
schedule: {
expression: events.Schedule.rate(Duration.days(7)),
// Only trigger when dependencies are updated (new base images, components, etc.)
startCondition: imagebuilder.ScheduleStartCondition.EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE,
// Automatically disable after 3 consecutive failures
autoDisableFailureCount: 3
},
// Start enabled
status: imagebuilder.ImagePipelineStatus.ENABLED
});
Members
| Name | Description |
|---|---|
| ENABLED | Indicates that the pipeline is enabled for scheduling. |
| DISABLED | Indicates that the pipeline is disabled and will not be triggered on the schedule. |
ENABLED
Indicates that the pipeline is enabled for scheduling.
DISABLED
Indicates that the pipeline is disabled and will not be triggered on the schedule.

.NET
Go
Java
Python
TypeScript (