Module Values.CreateRemoteAccessSessionConfigurationSource

Configuration settings for a remote access session, including billing method.

Sourcetype nonrec t = {
  1. auxiliaryApps : AuxiliaryAppArnList.t option;
    (*

    A list of upload ARNs for app packages to be installed onto your device. (Maximum 3)

    *)
  2. billingMethod : BillingMethod.t option;
    (*

    The billing method for the remote access session.

    *)
  3. vpceConfigurationArns : AmazonResourceNames.t option;
    (*

    An array of ARNs included in the VPC endpoint configuration.

    *)
  4. deviceProxy : DeviceProxy.t option;
    (*

    The device proxy to be configured on the device for the remote access session.

    *)
}
Sourceval make : ?auxiliaryApps:??? -> ?billingMethod:??? -> ?vpceConfigurationArns:??? -> ?deviceProxy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of AmazonResourceName.t ] list | `Structure of (string * [> `Integer of DeviceProxyPort.t | `String of DeviceProxyHost.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