Module Values.DetectorFeatureConfigurationSource

Contains information about a GuardDuty feature. Specifying both EKS Runtime Monitoring (EKS_RUNTIME_MONITORING) and Runtime Monitoring (RUNTIME_MONITORING) will cause an error. You can add only one of these two features because Runtime Monitoring already includes the threat detection for Amazon EKS resources. For more information, see Runtime Monitoring.

Sourcetype nonrec t = {
  1. name : DetectorFeature.t option;
    (*

    The name of the feature.

    *)
  2. status : FeatureStatus.t option;
    (*

    The status of the feature.

    *)
  3. additionalConfiguration : DetectorAdditionalConfigurations.t option;
    (*

    Additional configuration for a resource.

    *)
}
Sourceval make : ?name:??? -> ?status:??? -> ?additionalConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string ]) list ] 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