Module Values.CreateDelegationRequestSource

A collection of attributes that's used to create a delegation for an assessment in Audit Manager.

Sourcetype nonrec t = {
  1. comment : DelegationComment.t option;
    (*

    A comment that's related to the delegation request.

    *)
  2. controlSetId : ControlSetId.t option;
    (*

    The unique identifier for the control set.

    *)
  3. roleArn : IamArn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role.

    *)
  4. roleType : RoleType.t option;
    (*

    The type of customer persona. In CreateAssessment, roleType can only be PROCESS_OWNER. In UpdateSettings, roleType can only be PROCESS_OWNER. In BatchCreateDelegationByAssessment, roleType can only be RESOURCE_OWNER.

    *)
}
Sourceval make : ?comment:??? -> ?controlSetId:??? -> ?roleArn:??? -> ?roleType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DelegationComment.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