Class: Aws::Imagebuilder::Types::ImageTestsConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Imagebuilder::Types::ImageTestsConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-imagebuilder/types.rb
Overview
Configure image tests for your pipeline build. Tests run after building the image, to verify that the AMI or container image is valid before distributing it.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#image_tests_enabled ⇒ Boolean
Determines if tests should run after building the image.
-
#timeout_minutes ⇒ Integer
The maximum time in minutes that tests are permitted to run.
Instance Attribute Details
#image_tests_enabled ⇒ Boolean
Determines if tests should run after building the image. Image Builder defaults to enable tests to run following the image build, before image distribution.
4096 4097 4098 4099 4100 4101 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 4096 class ImageTestsConfiguration < Struct.new( :image_tests_enabled, :timeout_minutes) SENSITIVE = [] include Aws::Structure end |
#timeout_minutes ⇒ Integer
The maximum time in minutes that tests are permitted to run.
<note markdown=“1”> The timeoutMinutes attribute is not currently active. This value is ignored.
</note>
4096 4097 4098 4099 4100 4101 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 4096 class ImageTestsConfiguration < Struct.new( :image_tests_enabled, :timeout_minutes) SENSITIVE = [] include Aws::Structure end |