Module Values.AwsAppSyncGraphQlApiLogConfigDetailsSource

Specifies the logging configuration when writing GraphQL operations and tracing to Amazon CloudWatch for an AppSync GraphQL API.

Sourcetype nonrec t = {
  1. cloudWatchLogsRoleArn : NonEmptyString.t option;
    (*

    The Amazon Resource Name (ARN) of the service role that AppSync assumes to publish to CloudWatch Logs in your account.

    *)
  2. excludeVerboseContent : Boolean.t option;
    (*

    Set to TRUE to exclude sections that contain information such as headers, context, and evaluated mapping templates, regardless of logging level.

    *)
  3. fieldLogLevel : NonEmptyString.t option;
    (*

    The field logging level.

    *)
}
Sourceval make : ?cloudWatchLogsRoleArn:??? -> ?excludeVerboseContent:??? -> ?fieldLogLevel:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of NonEmptyString.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