Module Values.PutImageScanningConfigurationRequestSource

The PutImageScanningConfiguration API is being deprecated, in favor of specifying the image scanning configuration at the registry level. For more information, see PutRegistryScanningConfiguration. Updates the image scanning configuration for the specified repository.

Sourcetype nonrec t = {
  1. registryId : RegistryId.t option;
    (*

    The Amazon Web Services account ID associated with the registry that contains the repository in which to update the image scanning configuration setting. If you do not specify a registry, the default registry is assumed.

    *)
  2. repositoryName : RepositoryName.t;
    (*

    The name of the repository in which to update the image scanning configuration setting.

    *)
  3. imageScanningConfiguration : ImageScanningConfiguration.t;
    (*

    The image scanning configuration for the repository. This setting determines whether images are scanned for known vulnerabilities after being pushed to the repository.

    *)
}
Sourceval context_ : string
Sourceval make : ?registryId:??? -> repositoryName:RepositoryName.t -> imageScanningConfiguration:ImageScanningConfiguration.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RegistryId.t | `Structure of (string * [> `Boolean of ScanOnPushFlag.t ]) list ]) 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