Module Values.SolutionVersionSummarySource

Provides a summary of the properties of a solution version. For a complete listing, call the DescribeSolutionVersion API.

Sourcetype nonrec t = {
  1. solutionVersionArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the solution version.

    *)
  2. status : Status.t option;
    (*

    The status of the solution version. A solution version can be in one of the following states: CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

    *)
  3. trainingMode : TrainingMode.t option;
    (*

    The scope of training to be performed when creating the solution version. A FULL training considers all of the data in your dataset group. An UPDATE processes only the data that has changed since the latest training. Only solution versions created with the User-Personalization recipe can use UPDATE.

    *)
  4. trainingType : TrainingType.t option;
    (*

    Whether the solution version was created automatically or manually.

    *)
  5. creationDateTime : Date.t option;
    (*

    The date and time (in Unix time) that this version of a solution was created.

    *)
  6. lastUpdatedDateTime : Date.t option;
    (*

    The date and time (in Unix time) that the solution version was last updated.

    *)
  7. failureReason : FailureReason.t option;
    (*

    If a solution version fails, the reason behind the failure.

    *)
}
Sourceval make : ?solutionVersionArn:??? -> ?status:??? -> ?trainingMode:??? -> ?trainingType:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> ?failureReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Arn.t | `Timestamp of Date.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