Values.ResourceSourceDescribes the resources available for a container instance.
type nonrec t = {name : String_.t option;The name of the resource, such as CPU, MEMORY, PORTS, PORTS_UDP, or a user-defined resource.
*)type_ : String_.t option;The type of the resource. Valid values: INTEGER, DOUBLE, LONG, or STRINGSET.
*)doubleValue : Double.t option;When the doubleValue type is set, the value of the resource must be a double precision floating-point type.
*)longValue : Long.t option;When the longValue type is set, the value of the resource must be an extended precision floating-point type.
*)integerValue : Integer.t option;When the integerValue type is set, the value of the resource must be an integer.
*)stringSetValue : StringList.t option;When the stringSetValue type is set, the value of the resource must be a string type.
*)}