Module Values.ServiceTemplateVersionSummarySource

Summary data of an Proton service template version resource.

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

    The Amazon Resource Name (ARN) of the version of a service template.

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

    The time when the version of a service template was created.

    *)
  3. description : Description.t option;
    (*

    A description of the version of a service template.

    *)
  4. lastModifiedAt : Timestamp.t option;
    (*

    The time when the version of a service template was last modified.

    *)
  5. majorVersion : TemplateVersionPart.t option;
    (*

    The latest major version that's associated with the version of a service template.

    *)
  6. minorVersion : TemplateVersionPart.t option;
    (*

    The minor version of a service template.

    *)
  7. recommendedMinorVersion : TemplateVersionPart.t option;
    (*

    The recommended minor version of the service template.

    *)
  8. status : TemplateVersionStatus.t option;
    (*

    The service template minor version status.

    *)
  9. statusMessage : StatusMessage.t option;
    (*

    A service template minor version status message.

    *)
  10. templateName : ResourceName.t option;
    (*

    The name of the service template.

    *)
}
Sourceval make : ?arn:??? -> ?createdAt:??? -> ?description:??? -> ?lastModifiedAt:??? -> ?majorVersion:??? -> ?minorVersion:??? -> ?recommendedMinorVersion:??? -> ?status:??? -> ?statusMessage:??? -> ?templateName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ServiceTemplateVersionArn.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