Module Values.CreateAssessmentRequestSource

Creates an assessment in Audit Manager.

Sourcetype nonrec t = {
  1. name : AssessmentName.t;
    (*

    The name of the assessment to be created.

    *)
  2. description : AssessmentDescription.t option;
    (*

    The optional description of the assessment to be created.

    *)
  3. assessmentReportsDestination : AssessmentReportsDestination.t;
    (*

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

    *)
  4. scope : Scope.t;
  5. roles : Roles.t;
    (*

    The list of roles for the assessment.

    *)
  6. frameworkId : UUID.t;
    (*

    The identifier for the framework that the assessment will be created from.

    *)
  7. tags : TagMap.t option;
    (*

    The tags that are associated with the assessment.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?tags:??? -> name:AssessmentName.t -> assessmentReportsDestination:AssessmentReportsDestination.t -> scope:Scope.t -> roles:Roles.t -> frameworkId:UUID.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of IamArn.t ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of AssessmentName.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