Module Values.CreateNetworkAnalyzerConfigurationRequestSource

Creates a new network analyzer configuration.

Sourcetype nonrec t = {
  1. name : NetworkAnalyzerConfigurationName.t;
  2. traceContent : TraceContent.t option;
  3. wirelessDevices : WirelessDeviceList.t option;
    (*

    Wireless device resources to add to the network analyzer configuration. Provide the WirelessDeviceId of the resource to add in the input array.

    *)
  4. wirelessGateways : WirelessGatewayList.t option;
    (*

    Wireless gateway resources to add to the network analyzer configuration. Provide the WirelessGatewayId of the resource to add in the input array.

    *)
  5. description : Description.t option;
  6. tags : TagList.t option;
  7. clientRequestToken : ClientRequestToken.t option;
  8. multicastGroups : NetworkAnalyzerMulticastGroupList.t option;
    (*

    Multicast Group resources to add to the network analyzer configruation. Provide the MulticastGroupId of the resource to add in the input array.

    *)
}
Sourceval context_ : string
Sourceval make : ?traceContent:??? -> ?wirelessDevices:??? -> ?wirelessGateways:??? -> ?description:??? -> ?tags:??? -> ?clientRequestToken:??? -> ?multicastGroups:??? -> name:NetworkAnalyzerConfigurationName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of WirelessDeviceId.t | `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of NetworkAnalyzerConfigurationName.t | `Structure of (string * [> `Enum of string ]) 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