Module Values.ReplicationTaskAssessmentResultSource

The task assessment report in JSON format.

Sourcetype nonrec t = {
  1. replicationTaskIdentifier : String_.t option;
    (*

    The replication task identifier of the task on which the task assessment was run.

    *)
  2. replicationTaskArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the replication task.

    *)
  3. replicationTaskLastAssessmentDate : TStamp.t option;
    (*

    The date the task assessment was completed.

    *)
  4. assessmentStatus : String_.t option;
    (*

    The status of the task assessment.

    *)
  5. assessmentResultsFile : String_.t option;
    (*

    The file containing the results of the task assessment.

    *)
  6. assessmentResults : String_.t option;
    (*

    The task assessment results in JSON format. The response object only contains this field if you provide DescribeReplicationTaskAssessmentResultsMessage$ReplicationTaskArn in the request.

    *)
  7. s3ObjectUrl : SecretString.t option;
    (*

    The URL of the S3 object containing the task assessment results. The response object only contains this field if you provide DescribeReplicationTaskAssessmentResultsMessage$ReplicationTaskArn in the request.

    *)
}
Sourceval make : ?replicationTaskIdentifier:??? -> ?replicationTaskArn:??? -> ?replicationTaskLastAssessmentDate:??? -> ?assessmentStatus:??? -> ?assessmentResultsFile:??? -> ?assessmentResults:??? -> ?s3ObjectUrl:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Timestamp of TStamp.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