Module Values.CreateServiceTemplateInputSource

Create a service template. The administrator creates a service template to define standardized infrastructure and an optional CI/CD service pipeline. Developers, in turn, select the service template from Proton. If the selected service template includes a service pipeline definition, they provide a link to their source code repository. Proton then deploys and manages the infrastructure defined by the selected service template. For more information, see Proton templates in the Proton User Guide.

Sourcetype nonrec t = {
  1. description : Description.t option;
    (*

    A description of the service template.

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

    The name of the service template as displayed in the developer interface.

    *)
  3. encryptionKey : Arn.t option;
    (*

    A customer provided encryption key that's used to encrypt data.

    *)
  4. name : ResourceName.t;
    (*

    The name of the service template.

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

    By default, Proton provides a service pipeline for your service. When this parameter is included, it indicates that an Proton service pipeline isn't provided for your service. After it's included, it can't be changed. For more information, see Template bundles in the Proton User Guide.

    *)
  6. tags : TagList.t option;
    (*

    An optional list of metadata items that you can associate with the Proton service template. A tag is a key-value pair. For more information, see Proton resources and tagging in the Proton User Guide.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?displayName:??? -> ?encryptionKey:??? -> ?pipelineProvisioning:??? -> ?tags:??? -> name:ResourceName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of Description.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