Module Values.PolicyTemplateItemSource

Contains details about a policy template This data type is used as a response parameter for the ListPolicyTemplates operation.

Sourcetype nonrec t = {
  1. policyStoreId : PolicyStoreId.t option;
    (*

    The unique identifier of the policy store that contains the template.

    *)
  2. policyTemplateId : PolicyTemplateId.t option;
    (*

    The unique identifier of the policy template.

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

    The description attached to the policy template.

    *)
  4. createdDate : TimestampFormat.t option;
    (*

    The date and time that the policy template was created.

    *)
  5. lastUpdatedDate : TimestampFormat.t option;
    (*

    The date and time that the policy template was most recently updated.

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

    The name of the policy template, if one was assigned when the policy template was created or last updated.

    *)
}
Sourceval make : ?policyStoreId:??? -> ?policyTemplateId:??? -> ?description:??? -> ?createdDate:??? -> ?lastUpdatedDate:??? -> ?name:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PolicyStoreId.t | `Timestamp of TimestampFormat.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