Module Values.ApprovalRuleSource

Returns information about an approval rule.

Sourcetype nonrec t = {
  1. approvalRuleId : ApprovalRuleId.t option;
    (*

    The system-generated ID of the approval rule.

    *)
  2. approvalRuleName : ApprovalRuleName.t option;
    (*

    The name of the approval rule.

    *)
  3. approvalRuleContent : ApprovalRuleContent.t option;
    (*

    The content of the approval rule.

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

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

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

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

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

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

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

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

    *)
  8. originApprovalRuleTemplate : OriginApprovalRuleTemplate.t option;
    (*

    The approval rule template used to create the rule.

    *)
}
Sourceval make : ?approvalRuleId:??? -> ?approvalRuleName:??? -> ?approvalRuleContent:??? -> ?ruleContentSha256:??? -> ?lastModifiedDate:??? -> ?creationDate:??? -> ?lastModifiedUser:??? -> ?originApprovalRuleTemplate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ApprovalRuleId.t | `Structure of (string * [> `String of ApprovalRuleTemplateId.t ]) list | `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