Module Values.UpdateAssessmentRequestSource

Edits an Audit Manager assessment.

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

    The unique identifier for the assessment.

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

    The name of the assessment to be updated.

    *)
  3. assessmentDescription : AssessmentDescription.t option;
    (*

    The description of the assessment.

    *)
  4. scope : Scope.t;
    (*

    The scope of the assessment.

    *)
  5. assessmentReportsDestination : AssessmentReportsDestination.t option;
    (*

    The assessment report storage destination for the assessment that's being updated.

    *)
  6. roles : Roles.t option;
    (*

    The list of roles for the assessment.

    *)
}
Sourceval context_ : string
Sourceval make : ?assessmentName:??? -> ?assessmentDescription:??? -> ?assessmentReportsDestination:??? -> ?roles:??? -> assessmentId:UUID.t -> scope:Scope.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of IamArn.t ]) list ] list | `String of UUID.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of AccountId.t ]) list ] list | `String of S3Url.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