interface ImagePipelineExecutionSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ImageBuilder.Mixins.CfnImagePropsMixin.ImagePipelineExecutionSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsimagebuilder/mixins#CfnImagePropsMixin_ImagePipelineExecutionSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.imagebuilder.mixins.CfnImagePropsMixin.ImagePipelineExecutionSettingsProperty |
Python | aws_cdk.mixins_preview.aws_imagebuilder.mixins.CfnImagePropsMixin.ImagePipelineExecutionSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_imagebuilder » mixins » CfnImagePropsMixin » 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 { mixins as imagebuilder_mixins } from '@aws-cdk/mixins-preview/aws-imagebuilder';
const imagePipelineExecutionSettingsProperty: imagebuilder_mixins.CfnImagePropsMixin.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