Module Values.DelegationPermissionSource

Contains information about the permissions being delegated in a delegation request.

Sourcetype nonrec t = {
  1. policyTemplateArn : ArnType.t option;
    (*

    This ARN maps to a pre-registered policy content for this partner. See the partner onboarding documentation to understand how to create a delegation template.

    *)
  2. parameters : PolicyParameterListType.t option;
    (*

    A list of policy parameters that define the scope and constraints of the delegated permissions.

    *)
}
Sourceval make : ?policyTemplateArn:??? -> ?parameters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `List of [> `String of PolicyParameterValueType.t ] list | `String of PolicyParameterNameType.t ]) list ] list | `String of ArnType.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