Module Values.EcrConfigurationSource

Settings that Image Builder uses to configure the ECR repository and the output container images that Amazon Inspector scans.

Sourcetype nonrec t = {
  1. repositoryName : NonEmptyString.t option;
    (*

    The name of the container repository that Amazon Inspector scans to identify findings for your container images. The name includes the path for the repository location. If you donโ€™t provide this information, Image Builder creates a repository in your account named image-builder-image-scanning-repository for vulnerability scans of your output container images.

    *)
  2. containerTags : StringList.t option;
    (*

    Tags for Image Builder to apply to the output container image that Amazon Inspector scans. Tags can help you identify and manage your scanned images.

    *)
}
Sourceval make : ?repositoryName:??? -> ?containerTags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of NonEmptyString.t ] list | `String of NonEmptyString.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