interface CfnImagePipelineMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ImageBuilder.Mixins.CfnImagePipelineMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsimagebuilder/mixins#CfnImagePipelineMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.imagebuilder.mixins.CfnImagePipelineMixinProps |
Python | aws_cdk.mixins_preview.aws_imagebuilder.mixins.CfnImagePipelineMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_imagebuilder » mixins » CfnImagePipelineMixinProps |
Properties for CfnImagePipelinePropsMixin.
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 cfnImagePipelineMixinProps: imagebuilder_mixins.CfnImagePipelineMixinProps = {
containerRecipeArn: 'containerRecipeArn',
description: 'description',
distributionConfigurationArn: 'distributionConfigurationArn',
enhancedImageMetadataEnabled: false,
executionRole: 'executionRole',
imageRecipeArn: 'imageRecipeArn',
imageScanningConfiguration: {
ecrConfiguration: {
containerTags: ['containerTags'],
repositoryName: 'repositoryName',
},
imageScanningEnabled: false,
},
imageTestsConfiguration: {
imageTestsEnabled: false,
timeoutMinutes: 123,
},
infrastructureConfigurationArn: 'infrastructureConfigurationArn',
loggingConfiguration: {
imageLogGroupName: 'imageLogGroupName',
pipelineLogGroupName: 'pipelineLogGroupName',
},
name: 'name',
schedule: {
autoDisablePolicy: {
failureCount: 123,
},
pipelineExecutionStartCondition: 'pipelineExecutionStartCondition',
scheduleExpression: 'scheduleExpression',
},
status: 'status',
tags: {
tagsKey: 'tags',
},
workflows: [{
onFailure: 'onFailure',
parallelGroup: 'parallelGroup',
parameters: [{
name: 'name',
value: ['value'],
}],
workflowArn: 'workflowArn',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| container | string | The Amazon Resource Name (ARN) of the container recipe that is used for this pipeline. |
| description? | string | The description of this image pipeline. |
| distribution | string | The Amazon Resource Name (ARN) of the distribution configuration associated with this image pipeline. |
| enhanced | boolean | IResolvable | Collects additional information about the image being created, including the operating system (OS) version and package list. |
| execution | string | The name or Amazon Resource Name (ARN) for the IAM role you create that grants Image Builder access to perform workflow actions. |
| image | string | The Amazon Resource Name (ARN) of the image recipe associated with this image pipeline. |
| image | IResolvable | Image | Contains settings for vulnerability scans. |
| image | IResolvable | Image | The configuration of the image tests that run after image creation to ensure the quality of the image that was created. |
| infrastructure | string | The Amazon Resource Name (ARN) of the infrastructure configuration associated with this image pipeline. |
| logging | IResolvable | Pipeline | Defines logging configuration for the output image. |
| name? | string | The name of the image pipeline. |
| schedule? | IResolvable | Schedule | The schedule of the image pipeline. |
| status? | string | The status of the image pipeline. |
| tags? | { [string]: string } | The tags of this image pipeline. |
| workflows? | IResolvable | (IResolvable | Workflow)[] | Contains the workflows that run for the image pipeline. |
containerRecipeArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the container recipe that is used for this pipeline.
description?
Type:
string
(optional)
The description of this image pipeline.
distributionConfigurationArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the distribution configuration associated with this image pipeline.
enhancedImageMetadataEnabled?
Type:
boolean | IResolvable
(optional)
Collects additional information about the image being created, including the operating system (OS) version and package list.
This information is used to enhance the overall experience of using EC2 Image Builder. Enabled by default.
executionRole?
Type:
string
(optional)
The name or Amazon Resource Name (ARN) for the IAM role you create that grants Image Builder access to perform workflow actions.
imageRecipeArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the image recipe associated with this image pipeline.
imageScanningConfiguration?
Type:
IResolvable | Image
(optional)
Contains settings for vulnerability scans.
imageTestsConfiguration?
Type:
IResolvable | Image
(optional)
The configuration of the image tests that run after image creation to ensure the quality of the image that was created.
infrastructureConfigurationArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the infrastructure configuration associated with this image pipeline.
loggingConfiguration?
Type:
IResolvable | Pipeline
(optional)
Defines logging configuration for the output image.
name?
Type:
string
(optional)
The name of the image pipeline.
schedule?
Type:
IResolvable | Schedule
(optional)
The schedule of the image pipeline.
A schedule configures how often and when a pipeline automatically creates a new image.
status?
Type:
string
(optional)
The status of the image pipeline.
tags?
Type:
{ [string]: string }
(optional)
The tags of this image pipeline.
workflows?
Type:
IResolvable | (IResolvable | Workflow)[]
(optional)
Contains the workflows that run for the image pipeline.

.NET
Go
Java
Python
TypeScript