Module Values.QueryLoggingConfigSource

A complex type that contains information about a configuration for DNS query logging.

Sourcetype nonrec t = {
  1. id : QueryLoggingConfigId.t option;
    (*

    The ID for a configuration for DNS query logging.

    *)
  2. hostedZoneId : ResourceId.t option;
    (*

    The ID of the hosted zone that CloudWatch Logs is logging queries for.

    *)
  3. cloudWatchLogsLogGroupArn : CloudWatchLogsLogGroupArn.t option;
    (*

    The Amazon Resource Name (ARN) of the CloudWatch Logs log group that Amazon Route 53 is publishing logs to.

    *)
}
Sourceval make : ?id:??? -> ?hostedZoneId:??? -> ?cloudWatchLogsLogGroupArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of QueryLoggingConfigId.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