Module Values.DelegationMetadataSource

The metadata that's associated with the delegation.

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

    The unique identifier for the delegation.

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

    The name of the associated assessment.

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

    The unique identifier for the assessment.

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

    The current status of the delegation.

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

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

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

    Specifies when the delegation was created.

    *)
  7. controlSetName : NonEmptyString.t option;
    (*

    Specifies the name of the control set that was delegated for review.

    *)
}
Sourceval make : ?id:??? -> ?assessmentName:??? -> ?assessmentId:??? -> ?status:??? -> ?roleArn:??? -> ?creationTime:??? -> ?controlSetName:??? -> 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