Module Values.LineItemAssetInformationSource

Information about a line item asset.

Sourcetype nonrec t = {
  1. assetId : AssetId.t option;
    (*

    The ID of the asset. An Outpost asset can be a single server within an Outposts rack or an Outposts server configuration.

    *)
  2. macAddressList : MacAddressList.t option;
    (*

    The MAC addresses of the asset.

    *)
}
Sourceval make : ?assetId:??? -> ?macAddressList:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of MacAddress.t ] list | `String of AssetId.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