Module Values.ContainerConfigurationSource

Describes the container configurations within the tasks of your Amazon ECS service.

Sourcetype nonrec t = {
  1. containerName : ContainerName.t option;
    (*

    The name of the container.

    *)
  2. memorySizeConfiguration : MemorySizeConfiguration.t option;
    (*

    The memory size configurations for the container.

    *)
  3. cpu : NullableCpu.t option;
    (*

    The number of CPU units reserved for the container.

    *)
}
Sourceval make : ?containerName:??? -> ?memorySizeConfiguration:??? -> ?cpu:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of NullableCpu.t | `String of ContainerName.t | `Structure of (string * [> `Integer of NullableMemory.t ]) list ]) 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