Module Values.AwsEcsTaskDefinitionContainerDefinitionsLogConfigurationDetailsSource

The log configuration specification for the container.

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

    The log driver to use for the container. Valid values on Fargate are as follows: awsfirelens awslogs splunk Valid values on Amazon EC2 are as follows: awsfirelens awslogs fluentd gelf journald json-file logentries splunk syslog

    *)
  2. options : FieldMap.t option;
    (*

    The configuration options to send to the log driver. Requires version 1.19 of the Docker Remote API or greater on your container instance.

    *)
  3. secretOptions : AwsEcsTaskDefinitionContainerDefinitionsLogConfigurationSecretOptionsList.t option;
    (*

    The secrets to pass to the log configuration.

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