Module Values.ApprovalRuleTemplateSource

Returns information about an approval rule template.

Sourcetype nonrec t = {
  1. approvalRuleTemplateId : ApprovalRuleTemplateId.t option;
    (*

    The system-generated ID of the approval rule template.

    *)
  2. approvalRuleTemplateName : ApprovalRuleTemplateName.t option;
    (*

    The name of the approval rule template.

    *)
  3. approvalRuleTemplateDescription : ApprovalRuleTemplateDescription.t option;
    (*

    The description of the approval rule template.

    *)
  4. approvalRuleTemplateContent : ApprovalRuleTemplateContent.t option;
    (*

    The content of the approval rule template.

    *)
  5. ruleContentSha256 : RuleContentSha256.t option;
    (*

    The SHA-256 hash signature for the content of the approval rule template.

    *)
  6. lastModifiedDate : LastModifiedDate.t option;
    (*

    The date the approval rule template was most recently changed, in timestamp format.

    *)
  7. creationDate : CreationDate.t option;
    (*

    The date the approval rule template was created, in timestamp format.

    *)
  8. lastModifiedUser : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the user who made the most recent changes to the approval rule template.

    *)
}
Sourceval make : ?approvalRuleTemplateId:??? -> ?approvalRuleTemplateName:??? -> ?approvalRuleTemplateDescription:??? -> ?approvalRuleTemplateContent:??? -> ?ruleContentSha256:??? -> ?lastModifiedDate:??? -> ?creationDate:??? -> ?lastModifiedUser:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ApprovalRuleTemplateId.t | `Timestamp of LastModifiedDate.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