Module Values.TemplateSummarySource

Template summary information.

Sourcetype nonrec t = {
  1. templateId : TemplateId.t option;
    (*

    The unique identifier for the template.

    *)
  2. templateArn : TemplateArn.t option;
    (*

    The Amazon Resource Name (ARN) of the template.

    *)
  3. name : TemplateName.t option;
    (*

    The template name.

    *)
  4. status : TemplateStatus.t option;
    (*

    The status of the template.

    *)
  5. tagPropagationConfigurations : TagPropagationConfigurationList.t option;
    (*

    Defines tag propagation configuration for resources created within a domain. Tags specified here will be automatically applied to resources being created for the specified resource type.

    *)
}
Sourceval make : ?templateId:??? -> ?templateArn:??? -> ?name:??? -> ?status:??? -> ?tagPropagationConfigurations:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `Map of ([> `String of MutableTagKey.t ] * [> `String of TagValueString.t ]) list ]) list ] list | `String of TemplateId.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