Interface CfnImage.IImageTestsConfigurationProperty
When you create an image or container recipe with Image Builder , you can add the build or test components that are used to create the final image.
Namespace: Amazon.CDK.AWS.ImageBuilder
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IImageTestsConfigurationProperty
Syntax (vb)
Public Interface IImageTestsConfigurationProperty
Remarks
You must have at least one build component to create a recipe, but test components are not required. If you have added tests, they run after the image is created, to ensure that the target image is functional and can be used reliably for launching Amazon EC2 instances.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ImageBuilder;
var imageTestsConfigurationProperty = new ImageTestsConfigurationProperty {
ImageTestsEnabled = false,
TimeoutMinutes = 123
};
Synopsis
Properties
ImageTestsEnabled | Determines if tests should run after building the image. |
TimeoutMinutes | The maximum time in minutes that tests are permitted to run. |
Properties
ImageTestsEnabled
Determines if tests should run after building the image.
virtual object ImageTestsEnabled { get; }
Property Value
System.Object
Remarks
Image Builder defaults to enable tests to run following the image build, before image distribution.
TimeoutMinutes
The maximum time in minutes that tests are permitted to run.
virtual Nullable<double> TimeoutMinutes { get; }
Property Value
System.Nullable<System.Double>
Remarks
The timeout attribute is not currently active. This value is ignored.