Module Values.SolutionSummarySource

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

Sourcetype nonrec t = {
  1. name : Name.t option;
    (*

    The name of the solution.

    *)
  2. solutionArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the solution.

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

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

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

    The date and time (in Unix time) that the solution was created.

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

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

    *)
  6. recipeArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the recipe used by the solution.

    *)
}
Sourceval make : ?name:??? -> ?solutionArn:??? -> ?status:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> ?recipeArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Name.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