Module Values.AssetInfoSource

Information about hardware assets.

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. rackId : RackId.t option;
    (*

    The rack ID of the asset.

    *)
  3. assetType : AssetType.t option;
    (*

    The type of the asset.

    *)
  4. computeAttributes : ComputeAttributes.t option;
    (*

    Information about compute hardware assets.

    *)
  5. assetLocation : AssetLocation.t option;
    (*

    The position of an asset in a rack.

    *)
}
Sourceval make : ?assetId:??? -> ?rackId:??? -> ?assetType:??? -> ?computeAttributes:??? -> ?assetLocation:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AssetId.t | `Structure of (string * [> `Enum of string | `Float of RackElevation.t | `Integer of VCPUCount.t | `List of [> `String of InstanceFamilyName.t | `Structure of (string * [> `Integer of InstanceTypeCount.t | `String of InstanceTypeName.t ]) list ] list | `String of HostId.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