Module Values.ScanSettingSource

Contains configuration settings for malware scanning, including the scanner type, target resource types, and scanner role.

Sourcetype nonrec t = {
  1. malwareScanner : MalwareScanner.t option;
    (*

    The malware scanner to use for scanning. Currently only GUARDDUTY is supported.

    *)
  2. resourceTypes : ResourceTypes.t option;
    (*

    An array of resource types to be scanned for malware.

    *)
  3. scannerRoleArn : IAMRoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role that the scanner uses to access resources; for example, arn:aws:iam::123456789012:role/ScannerRole.

    *)
}
Sourceval make : ?malwareScanner:??? -> ?resourceTypes:??? -> ?scannerRoleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of ResourceType.t ] list | `String of IAMRoleArn.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