Module Values.CustomLogSourceAttributesSource

The attributes of a third-party custom source.

Sourcetype nonrec t = {
  1. crawlerArn : AmazonResourceName.t option;
    (*

    The ARN of the Glue crawler.

    *)
  2. databaseArn : AmazonResourceName.t option;
    (*

    The ARN of the Glue database where results are written, such as: arn:aws:daylight:us-east-1::database/sometable/*.

    *)
  3. tableArn : AmazonResourceName.t option;
    (*

    The ARN of the Glue table.

    *)
}
Sourceval make : ?crawlerArn:??? -> ?databaseArn:??? -> ?tableArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AmazonResourceName.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