Module Values.DelegationSource

The assignment of a control set to a delegate for review.

Sourcetype nonrec t = {
  1. id : UUID.t option;
    (*

    The unique identifier for the delegation.

    *)
  2. assessmentName : AssessmentName.t option;
    (*

    The name of the assessment that's associated with the delegation.

    *)
  3. assessmentId : UUID.t option;
    (*

    The identifier for the assessment that's associated with the delegation.

    *)
  4. status : DelegationStatus.t option;
    (*

    The status of the delegation.

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

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

    *)
  6. 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.

    *)
  7. creationTime : Timestamp.t option;
    (*

    Specifies when the delegation was created.

    *)
  8. lastUpdated : Timestamp.t option;
    (*

    Specifies when the delegation was last updated.

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

    The identifier for the control set that's associated with the delegation.

    *)
  10. comment : DelegationComment.t option;
    (*

    The comment that's related to the delegation.

    *)
  11. createdBy : CreatedBy.t option;
    (*

    The user or role that created the delegation.

    *)
}
Sourceval make : ?id:??? -> ?assessmentName:??? -> ?assessmentId:??? -> ?status:??? -> ?roleArn:??? -> ?roleType:??? -> ?creationTime:??? -> ?lastUpdated:??? -> ?controlSetId:??? -> ?comment:??? -> ?createdBy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of UUID.t | `Timestamp of Timestamp.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