Module Values.AwsEcsTaskDefinitionContainerDefinitionsFirelensConfigurationDetailsSource

The FireLens configuration for the container. The configuration specifies and configures a log router for container logs.

Sourcetype nonrec t = {
  1. options : FieldMap.t option;
    (*

    The options to use to configure the log router. The valid option keys are as follows: enable-ecs-log-metadata. The value can be true or false. config-file-type. The value can be s3 or file. config-file-value. The value is either an S3 ARN or a file path.

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

    The log router to use. Valid values are fluentbit or fluentd.

    *)
}
Sourceval make : ?options:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of NonEmptyString.t ] * [> `String of NonEmptyString.t ]) list | `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