interface ImageTestsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ImageBuilder.CfnAllImageBuildVersionsPropsMixin.ImageTestsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsimagebuilder#CfnAllImageBuildVersionsPropsMixin_ImageTestsConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.imagebuilder.CfnAllImageBuildVersionsPropsMixin.ImageTestsConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_imagebuilder.CfnAllImageBuildVersionsPropsMixin.ImageTestsConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_imagebuilder » CfnAllImageBuildVersionsPropsMixin » ImageTestsConfigurationProperty |
The image tests configuration.
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/cfn-property-mixins';
const imageTestsConfigurationProperty: imagebuilder.CfnAllImageBuildVersionsPropsMixin.ImageTestsConfigurationProperty = {
imageTestsEnabled: false,
timeoutMinutes: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| image | boolean | IResolvable | Determines if tests should run after building the image. |
| timeout | number | The maximum time in minutes that tests are permitted to run. |
imageTestsEnabled?
Type:
boolean | IResolvable
(optional)
Determines if tests should run after building the image.
timeoutMinutes?
Type:
number
(optional)
The maximum time in minutes that tests are permitted to run.

.NET
Go
Java
Python
TypeScript