Module Values.ServiceTemplateSummarySource

Summary data of an Proton service template resource.

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

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

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

    The time when the service template was created.

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

    A description of the service template.

    *)
  4. displayName : DisplayName.t option;
    (*

    The service template name as displayed in the developer interface.

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

    The time when the service template was last modified.

    *)
  6. name : ResourceName.t option;
    (*

    The name of the service template.

    *)
  7. pipelineProvisioning : Provisioning.t option;
    (*

    If pipelineProvisioning is true, a service pipeline is included in the service template, otherwise a service pipeline isn't included in the service template.

    *)
  8. recommendedVersion : FullTemplateVersionNumber.t option;
    (*

    The recommended version of the service template.

    *)
}
Sourceval make : ?arn:??? -> ?createdAt:??? -> ?description:??? -> ?displayName:??? -> ?lastModifiedAt:??? -> ?name:??? -> ?pipelineProvisioning:??? -> ?recommendedVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ServiceTemplateArn.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