Module Values.CreateLoggingConfigurationRequestSource

Creates a logging configuration that allows clients to store and record sent messages.

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

    Logging-configuration name. The value does not need to be unique.

    *)
  2. destinationConfiguration : DestinationConfiguration.t;
    (*

    A complex type that contains a destination configuration for where chat content will be logged. There can be only one type of destination (cloudWatchLogs, firehose, or s3) in a destinationConfiguration.

    *)
  3. tags : Tags.t option;
    (*

    Tags to attach to the resource. Array of maps, each of the form string:string (key:value). See Best practices and strategies in Tagging Amazon Web Services Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no constraints on tags beyond what is documented there.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?tags:??? -> destinationConfiguration:DestinationConfiguration.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of LoggingConfigurationName.t | `Structure of (string * [> `Structure of (string * [> `String of BucketName.t ]) list ]) list ]) 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