Module Values.UpdateThreatIntelSetRequestSource

Updates the ThreatIntelSet specified by the ThreatIntelSet ID.

Sourcetype nonrec t = {
  1. detectorId : DetectorId.t;
    (*

    The detectorID that specifies the GuardDuty service whose ThreatIntelSet you want to update. To find the detectorId in the current Region, see the Settings page in the GuardDuty console, or run the ListDetectors API.

    *)
  2. threatIntelSetId : String_.t;
    (*

    The unique ID that specifies the ThreatIntelSet that you want to update.

    *)
  3. name : Name.t option;
    (*

    The unique ID that specifies the ThreatIntelSet that you want to update.

    *)
  4. location : Location.t option;
    (*

    The updated URI of the file that contains the ThreateIntelSet.

    *)
  5. activate : Boolean.t option;
    (*

    The updated Boolean value that specifies whether the ThreateIntelSet is active or not.

    *)
  6. expectedBucketOwner : AccountId.t option;
    (*

    The Amazon Web Services account ID that owns the Amazon S3 bucket specified in the location parameter.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?location:??? -> ?activate:??? -> ?expectedBucketOwner:??? -> detectorId:DetectorId.t -> threatIntelSetId:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of DetectorId.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