Module Values.CreateLogStreamRequestSource

Creates a log stream for the specified log group. A log stream is a sequence of log events that originate from a single source, such as an application instance or a resource that is being monitored. There is no limit on the number of log streams that you can create for a log group. There is a limit of 50 TPS on CreateLogStream operations, after which transactions are throttled. You must use the following guidelines when naming a log stream: Log stream names must be unique within the log group. Log stream names can be between 1 and 512 characters long. Don't use ':' (colon) or '*' (asterisk) characters.

Sourcetype nonrec t = {
  1. logGroupName : LogGroupName.t;
    (*

    The name of the log group.

    *)
  2. logStreamName : LogStreamName.t;
    (*

    The name of the log stream.

    *)
}
Sourceval context_ : string
Sourceval make : logGroupName:LogGroupName.t -> logStreamName:LogStreamName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of LogGroupName.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