Module Values.AssessmentSource

Contains detailed information about a directory assessment, including configuration parameters, status, and validation results.

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

    The unique identifier of the directory assessment.

    *)
  2. directoryId : DirectoryId.t option;
    (*

    The identifier of the directory associated with this assessment.

    *)
  3. dnsName : DirectoryName.t option;
    (*

    The fully qualified domain name (FQDN) of the Active Directory domain being assessed.

    *)
  4. startTime : AssessmentStartTime.t option;
    (*

    The date and time when the assessment was initiated.

    *)
  5. lastUpdateDateTime : LastUpdateDateTime.t option;
    (*

    The date and time when the assessment status was last updated.

    *)
  6. status : AssessmentStatus.t option;
    (*

    The current status of the assessment. Valid values include SUCCESS, FAILED, PENDING, and IN_PROGRESS.

    *)
  7. statusCode : AssessmentStatusCode.t option;
    (*

    A detailed status code providing additional information about the assessment state.

    *)
  8. statusReason : AssessmentStatusReason.t option;
    (*

    A human-readable description of the current assessment status, including any error details or progress information.

    *)
  9. customerDnsIps : CustomerDnsIps.t option;
    (*

    The IP addresses of the DNS servers or domain controllers in your self-managed AD environment.

    *)
  10. vpcId : VpcId.t option;
    (*

    Contains Amazon VPC information for the StartADAssessment operation.

    *)
  11. subnetIds : SubnetIds.t option;
    (*

    A list of subnet identifiers in the Amazon VPC in which the hybrid directory is created.

    *)
  12. securityGroupIds : SecurityGroupIds.t option;
    (*

    The security groups identifiers attached to the network interfaces.

    *)
  13. selfManagedInstanceIds : AssessmentInstanceIds.t option;
    (*

    The identifiers of the self-managed AD instances used to perform the assessment.

    *)
  14. reportType : AssessmentReportType.t option;
    (*

    The type of assessment report generated. Valid values are CUSTOMER and SYSTEM.

    *)
  15. version : AssessmentVersion.t option;
    (*

    The version of the assessment framework used to evaluate your self-managed AD environment.

    *)
}
Sourceval make : ?assessmentId:??? -> ?directoryId:??? -> ?dnsName:??? -> ?startTime:??? -> ?lastUpdateDateTime:??? -> ?status:??? -> ?statusCode:??? -> ?statusReason:??? -> ?customerDnsIps:??? -> ?vpcId:??? -> ?subnetIds:??? -> ?securityGroupIds:??? -> ?selfManagedInstanceIds:??? -> ?reportType:??? -> ?version:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of IpAddr.t ] list | `String of AssessmentId.t | `Timestamp of AssessmentStartTime.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