Module Values.SimulationMetadataSource

A collection of data about the simulation.

Sourcetype nonrec t = {
  1. arn : SimSpaceWeaverArn.t option;
    (*

    The Amazon Resource Name (ARN) of the simulation. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.

    *)
  2. creationTime : Timestamp.t option;
    (*

    The time when the simulation was created, expressed as the number of seconds and milliseconds in UTC since the Unix epoch (0:0:0.000, January 1, 1970).

    *)
  3. name : SimSpaceWeaverResourceName.t option;
    (*

    The name of the simulation.

    *)
  4. status : SimulationStatus.t option;
    (*

    The current status of the simulation.

    *)
  5. targetStatus : SimulationTargetStatus.t option;
    (*

    The desired status of the simulation.

    *)
}
Sourceval make : ?arn:??? -> ?creationTime:??? -> ?name:??? -> ?status:??? -> ?targetStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SimSpaceWeaverArn.t | `Timestamp of Timestamp.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