Module Values.GetTrustedEntitySetResponseSource

Retrieves the trusted entity set associated with the specified trustedEntitySetId.

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

    The name of the threat entity set associated with the specified trustedEntitySetId.

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

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

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

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

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

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

    *)
  5. status : TrustedEntitySetStatus.t option;
    (*

    The status of the associated trusted entity set.

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

    The tags associated with trusted entity set resource.

    *)
  7. createdAt : Timestamp.t option;
    (*

    The timestamp when the associated trusted entity set was created.

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

    The timestamp when the associated trusted entity set was updated.

    *)
  9. errorDetails : String_.t option;
    (*

    The error details when the status is shown as ERROR.

    *)
}
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:??? -> ?expectedBucketOwner:??? -> ?status:??? -> ?tags:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?errorDetails:??? -> 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 | `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