Module Values.RuntimePlatformSource

Information about the platform for the Amazon ECS service or task. For more information about RuntimePlatform, see RuntimePlatform in the Amazon Elastic Container Service Developer Guide.

Sourcetype nonrec t = {
  1. cpuArchitecture : CPUArchitecture.t option;
    (*

    The CPU architecture. You can run your Linux tasks on an ARM-based platform by setting the value to ARM64. This option is available for tasks that run on Linux Amazon EC2 instance, Amazon ECS Managed Instances, or Linux containers on Fargate.

    *)
  2. operatingSystemFamily : OSFamily.t option;
    (*

    The operating system.

    *)
}
Sourceval make : ?cpuArchitecture:??? -> ?operatingSystemFamily:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string ]) 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