interface ImagePipelineExecutionSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ImageBuilder.CfnImage.ImagePipelineExecutionSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsimagebuilder#CfnImage_ImagePipelineExecutionSettingsProperty |
Java | software.amazon.awscdk.services.imagebuilder.CfnImage.ImagePipelineExecutionSettingsProperty |
Python | aws_cdk.aws_imagebuilder.CfnImage.ImagePipelineExecutionSettingsProperty |
TypeScript | aws-cdk-lib » aws_imagebuilder » CfnImage » ImagePipelineExecutionSettingsProperty |
Contains settings for starting an image pipeline execution.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_imagebuilder as imagebuilder } from 'aws-cdk-lib';
const imagePipelineExecutionSettingsProperty: imagebuilder.CfnImage.ImagePipelineExecutionSettingsProperty = {
deploymentId: 'deploymentId',
onUpdate: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| deployment | string | The deployment identifier of the pipeline, utilized to initiate new image pipeline executions. |
| on | boolean | IResolvable | Defines whether the pipeline should be executed upon pipeline updates. |
deploymentId?
Type:
string
(optional)
The deployment identifier of the pipeline, utilized to initiate new image pipeline executions.
onUpdate?
Type:
boolean | IResolvable
(optional)
Defines whether the pipeline should be executed upon pipeline updates.
False by default.

.NET
Go
Java
Python
TypeScript