Show / Hide Table of Contents

Class CfnImage.ImageTestsConfigurationProperty

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.

Inheritance
System.Object
CfnImage.ImageTestsConfigurationProperty
Implements
CfnImage.IImageTestsConfigurationProperty
Namespace: Amazon.CDK.AWS.ImageBuilder
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ImageTestsConfigurationProperty : Object, CfnImage.IImageTestsConfigurationProperty
Syntax (vb)
Public Class ImageTestsConfigurationProperty
    Inherits Object
    Implements CfnImage.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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html

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

Constructors

ImageTestsConfigurationProperty()

Properties

ImageTestsEnabled

Determines if tests should run after building the image.

TimeoutMinutes

The maximum time in minutes that tests are permitted to run.

Constructors

ImageTestsConfigurationProperty()

public ImageTestsConfigurationProperty()

Properties

ImageTestsEnabled

Determines if tests should run after building the image.

public object ImageTestsEnabled { get; set; }
Property Value

System.Object

Remarks

Image Builder defaults to enable tests to run following the image build, before image distribution.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-imagetestsenabled

TimeoutMinutes

The maximum time in minutes that tests are permitted to run.

public Nullable<double> TimeoutMinutes { get; set; }
Property Value

System.Nullable<System.Double>

Remarks

The timeout property is not currently active. This value is ignored.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-timeoutminutes

Implements

CfnImage.IImageTestsConfigurationProperty
Back to top Generated by DocFX