Module Values.TemplateLinkedPolicyDefinitionDetailSource

Contains information about a policy that was created by instantiating a policy template.

Sourcetype nonrec t = {
  1. policyTemplateId : PolicyTemplateId.t option;
    (*

    The unique identifier of the policy template used to create this policy.

    *)
  2. principal : EntityIdentifier.t option;
    (*

    The principal associated with this template-linked policy. Verified Permissions substitutes this principal for the ?principal placeholder in the policy template when it evaluates an authorization request.

    *)
  3. resource : EntityIdentifier.t option;
    (*

    The resource associated with this template-linked policy. Verified Permissions substitutes this resource for the ?resource placeholder in the policy template when it evaluates an authorization request.

    *)
}
Sourceval make : ?policyTemplateId:??? -> ?principal:??? -> ?resource:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PolicyTemplateId.t | `Structure of (string * [> `String of EntityType.t ]) list ]) 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