Module Values.UpdateTrustedEntitySetRequestSource

Updates the trusted entity set associated with the specified trustedEntitySetId.

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

    The unique ID of the GuardDuty detector associated with the threat entity set that 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. trustedEntitySetId : String_.t;
    (*

    The ID returned by GuardDuty after updating the trusted entity set resource.

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

    A user-friendly name to identify the trusted entity set. The name of your list can include lowercase letters, uppercase letters, numbers, dash (-), and underscore (_).

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

    The URI of the file that contains the trusted entity set.

    *)
  5. expectedBucketOwner : ExpectedBucketOwner.t option;
    (*

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

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

    A boolean value that indicates whether GuardDuty is to start using this updated trusted entity set. After you update an entity set, you will need to activate it again. It might take up to 15 minutes for the updated entity set to be effective.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?location:??? -> ?expectedBucketOwner:??? -> ?activate:??? -> detectorId:DetectorId.t -> trustedEntitySetId: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