Module Values.CapacityTaskSummarySource

The summary of the capacity task.

Sourcetype nonrec t = {
  1. capacityTaskId : CapacityTaskId.t option;
    (*

    The ID of the specified capacity task.

    *)
  2. outpostId : OutpostId.t option;
    (*

    The ID of the Outpost associated with the specified capacity task.

    *)
  3. orderId : OrderId.t option;
    (*

    The ID of the Amazon Web Services Outposts order of the host associated with the capacity task.

    *)
  4. 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.

    *)
  5. capacityTaskStatus : CapacityTaskStatus.t option;
    (*

    The status of the capacity task.

    *)
  6. creationDate : ISO8601Timestamp.t option;
    (*

    The date that the specified capacity task was created.

    *)
  7. completionDate : ISO8601Timestamp.t option;
    (*

    The date that the specified capacity task successfully ran.

    *)
  8. lastModifiedDate : ISO8601Timestamp.t option;
    (*

    The date that the specified capacity was last modified.

    *)
}
Sourceval make : ?capacityTaskId:??? -> ?outpostId:??? -> ?orderId:??? -> ?assetId:??? -> ?capacityTaskStatus:??? -> ?creationDate:??? -> ?completionDate:??? -> ?lastModifiedDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of CapacityTaskId.t | `Timestamp of ISO8601Timestamp.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