Module Values.AwsEcsTaskDefinitionContainerDefinitionsEnvironmentFilesDetailsSource

A file that contain environment variables to pass to a container.

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

    The type of environment file. The valid value is s3.

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

    The ARN of the S3 object that contains the environment variable file.

    *)
}
Sourceval make : ?type_:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure 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