Values.CreateNetworkProfileRequestSourceCreates a network profile.
type nonrec t = {projectArn : AmazonResourceName.t;The Amazon Resource Name (ARN) of the project for which you want to create a network profile.
*)name : Name.t;The name for the new network profile.
*)description : Message.t option;The description of the network profile.
*)type_ : NetworkProfileType.t option;The type of network profile to create. Valid values are listed here.
*)uplinkBandwidthBits : Long.t option;The data throughput rate in bits per second, as an integer from 0 to 104857600.
*)downlinkBandwidthBits : Long.t option;The data throughput rate in bits per second, as an integer from 0 to 104857600.
*)uplinkDelayMs : Long.t option;Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
*)downlinkDelayMs : Long.t option;Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
*)uplinkJitterMs : Long.t option;Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
*)downlinkJitterMs : Long.t option;Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
*)uplinkLossPercent : PercentInteger.t option;Proportion of transmitted packets that fail to arrive from 0 to 100 percent.
*)downlinkLossPercent : PercentInteger.t option;Proportion of received packets that fail to arrive from 0 to 100 percent.
*)}val make :
?description:??? ->
?type_:??? ->
?uplinkBandwidthBits:??? ->
?downlinkBandwidthBits:??? ->
?uplinkDelayMs:??? ->
?downlinkDelayMs:??? ->
?uplinkJitterMs:??? ->
?downlinkJitterMs:??? ->
?uplinkLossPercent:??? ->
?downlinkLossPercent:??? ->
projectArn:AmazonResourceName.t ->
name:Name.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of PercentInteger.t
| `Long of Long.t
| `String of AmazonResourceName.t ])
list ]