Module Values.RepositoryScanningConfigurationSource

The details of the scanning configuration for a repository.

Sourcetype nonrec t = {
  1. repositoryArn : Arn.t option;
    (*

    The ARN of the repository.

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

    The name of the repository.

    *)
  3. scanOnPush : ScanOnPushFlag.t option;
    (*

    Whether or not scan on push is configured for the repository.

    *)
  4. scanFrequency : ScanFrequency.t option;
    (*

    The scan frequency for the repository.

    *)
  5. appliedScanFilters : ScanningRepositoryFilterList.t option;
    (*

    The scan filters applied to the repository.

    *)
}
Sourceval make : ?repositoryArn:??? -> ?repositoryName:??? -> ?scanOnPush:??? -> ?scanFrequency:??? -> ?appliedScanFilters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of ScanOnPushFlag.t | `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of ScanningRepositoryFilterValue.t ]) list ] list | `String of Arn.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