Module Values.GetThreatIntelSetResponseSource

Retrieves the ThreatIntelSet that is specified by the ThreatIntelSet ID.

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

    A user-friendly ThreatIntelSet name displayed in all findings that are generated by activity that involves IP addresses included in this ThreatIntelSet.

    *)
  2. format : ThreatIntelSetFormat.t option;
    (*

    The format of the threatIntelSet.

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

    The URI of the file that contains the ThreatIntelSet.

    *)
  4. status : ThreatIntelSetStatus.t option;
    (*

    The status of threatIntelSet file uploaded.

    *)
  5. tags : TagMap.t option;
    (*

    The tags of the threat list resource.

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

    The Amazon Web Services account ID that owns the Amazon S3 bucket specified in the location parameter. This field appears in the response only if it was provided during ThreatIntelSet creation or update.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `InternalServerErrorException of InternalServerErrorException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?name:??? -> ?format:??? -> ?location:??? -> ?status:??? -> ?tags:??? -> ?expectedBucketOwner:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of BadRequestException.t | `InternalServerErrorException of InternalServerErrorException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of BadRequestException.t | `InternalServerErrorException of InternalServerErrorException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Name.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