Module Values.DetectorFeatureConfigurationResultSource

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 : DetectorFeatureResult.t option;
    (*

    Indicates the name of the feature that can be enabled for the detector.

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

    Indicates the status of the feature that is enabled for the detector.

    *)
  3. updatedAt : Timestamp.t option;
    (*

    The timestamp at which the feature object was updated.

    *)
  4. additionalConfiguration : DetectorAdditionalConfigurationResults.t option;
    (*

    Additional configuration for a resource.

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