Class: Aws::Imagebuilder::Types::ImageTestsConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Imagebuilder::Types::ImageTestsConfiguration
- Defined in:
- gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb
Overview
Note:
When making an API call, you may pass ImageTestsConfiguration data as a hash:
{
image_tests_enabled: false,
timeout_minutes: 1,
}
Image tests configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#image_tests_enabled ⇒ Boolean
Defines if tests should be executed when building this image.
-
#timeout_minutes ⇒ Integer
The maximum time in minutes that tests are permitted to run.
Instance Attribute Details
#image_tests_enabled ⇒ Boolean
Defines if tests should be executed when building this image.
2833 2834 2835 2836 2837 2838 |
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 2833 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.
2833 2834 2835 2836 2837 2838 |
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 2833 class ImageTestsConfiguration < Struct.new( :image_tests_enabled, :timeout_minutes) SENSITIVE = [] include Aws::Structure end |