Module Values.CustomLogSourceProviderSource

The details of the log provider for a third-party custom source.

Sourcetype nonrec t = {
  1. location : S3URI.t option;
    (*

    The location of the partition in the Amazon S3 bucket for Security Lake.

    *)
  2. roleArn : RoleArn.t option;
    (*

    The ARN of the IAM role to be used by the entity putting logs into your custom source partition. Security Lake will apply the correct access policies to this role, but you must first manually create the trust policy for this role. The IAM role name must start with the text 'Security Lake'. The IAM role must trust the logProviderAccountId to assume the role.

    *)
}
Sourceval make : ?location:??? -> ?roleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of S3URI.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