Module Values.UpdateIPSetRequestSource

Updates the IPSet specified by the IPSet ID.

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

    The detectorID that specifies the GuardDuty service whose IPSet 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. ipSetId : String_.t;
    (*

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

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

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

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

    The updated URI of the file that contains the IPSet.

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

    The updated Boolean value that specifies whether the IPSet 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 -> ipSetId: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