Module Values.NetworkMigrationAnalysisResultSource

The result of a network migration analysis operation.

Sourcetype nonrec t = {
  1. jobID : NetworkMigrationJobID.t option;
    (*

    The unique identifier of the analysis job that generated this result.

    *)
  2. networkMigrationExecutionID : NetworkMigrationExecutionID.t option;
    (*

    The unique identifier of the network migration execution.

    *)
  3. networkMigrationDefinitionID : NetworkMigrationDefinitionID.t option;
    (*

    The unique identifier of the network migration definition.

    *)
  4. analyzerType : AnalyzerType.t option;
    (*

    The type of analyzer that generated this result.

    *)
  5. source : NetworkMigrationAnalysisResultSource.t option;
    (*

    The source resource that was analyzed.

    *)
  6. target : NetworkMigrationAnalysisResultTarget.t option;
    (*

    The target resource in the analysis.

    *)
  7. status : NetworkMigrationAnalysisResultStatus.t option;
    (*

    The status of the analysis result.

    *)
  8. analysisResult : String_.t option;
    (*

    The detailed analysis findings and recommendations.

    *)
}
Sourceval make : ?jobID:??? -> ?networkMigrationExecutionID:??? -> ?networkMigrationDefinitionID:??? -> ?analyzerType:??? -> ?source:??? -> ?target:??? -> ?status:??? -> ?analysisResult:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NetworkMigrationJobID.t | `Structure of (string * [> `String of VpcID.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