Module Values.LogConfigurationSource

A method for collecting container logs for the fleet. Amazon GameLift Servers saves all standard output for each container in logs, including game session logs. You can select from the following methods:

Sourcetype nonrec t = {
  1. logDestination : LogDestination.t option;
    (*

    The type of log collection to use for a fleet. CLOUDWATCH -- (default value) Send logs to an Amazon CloudWatch log group that you define. Each container emits a log stream, which is organized in the log group. S3 -- Store logs in an Amazon S3 bucket that you define. This bucket must reside in the fleet's home Amazon Web Services Region. NONE -- Don't collect container logs.

    *)
  2. s3BucketName : NonEmptyString.t option;
    (*

    If log destination is S3, logs are sent to the specified Amazon S3 bucket name.

    *)
  3. logGroupArn : LogGroupArnStringModel.t option;
    (*

    If log destination is CLOUDWATCH, logs are sent to the specified log group in Amazon CloudWatch.

    *)
}
Sourceval make : ?logDestination:??? -> ?s3BucketName:??? -> ?logGroupArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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