Module Values.ImageTestsConfigurationSource

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.

Sourcetype nonrec t = {
  1. imageTestsEnabled : NullableBoolean.t option;
    (*

    Determines if tests should run after building the image. Image Builder defaults to enable tests to run following the image build, before image distribution.

    *)
  2. timeoutMinutes : ImageTestsTimeoutMinutes.t option;
    (*

    The maximum time in minutes that tests are permitted to run. The timeout property is not currently active. This value is ignored.

    *)
}
Sourceval make : ?imageTestsEnabled:??? -> ?timeoutMinutes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NullableBoolean.t | `Integer of ImageTestsTimeoutMinutes.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t