Module Values.ContainerMountPointSource

A mount point that binds a container to a file or directory on the host system. Part of: GameServerContainerDefinition, https://docs.aws.amazon.com/gamelift/latest/apireference/API_GameServerContainerDefinitionInput.html, SupportContainerDefinition, https://docs.aws.amazon.com/gamelift/latest/apireference/API_SupportContainerDefinitionInput.html

Sourcetype nonrec t = {
  1. instancePath : InstancePathString.t;
    (*

    The path to the source file or directory.

    *)
  2. containerPath : ContainerPathString.t option;
    (*

    The mount path on the container. If this property isn't set, the instance path is used.

    *)
  3. accessLevel : ContainerMountPointAccessLevel.t option;
    (*

    The type of access for the container.

    *)
}
Sourceval context_ : string
Sourceval make : ?containerPath:??? -> ?accessLevel:??? -> instancePath:InstancePathString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of InstancePathString.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