Module Values_0.ProvisioningTemplateSummarySource

A summary of information about a provisioning template.

Sourcetype nonrec t = {
  1. templateArn : TemplateArn.t option;
    (*

    The ARN of the provisioning template.

    *)
  2. templateName : TemplateName.t option;
    (*

    The name of the provisioning template.

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

    The description of the provisioning template.

    *)
  4. creationDate : DateType.t option;
    (*

    The date when the provisioning template summary was created.

    *)
  5. lastModifiedDate : DateType.t option;
    (*

    The date when the provisioning template summary was last modified.

    *)
  6. enabled : Enabled.t option;
    (*

    True if the fleet provision template is enabled, otherwise false.

    *)
  7. type_ : TemplateType.t option;
    (*

    The type you define in a provisioning template. You can create a template with only one type. You can't change the template type after its creation. The default value is FLEET_PROVISIONING. For more information about provisioning template, see: Provisioning template.

    *)
}
Sourceval make : ?templateArn:??? -> ?templateName:??? -> ?description:??? -> ?creationDate:??? -> ?lastModifiedDate:??? -> ?enabled:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Enabled.t | `Enum of string | `String of TemplateArn.t | `Timestamp of DateType.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