Module Values.PremigrationAssessmentStatusSource

The results returned in describe-replications to display the results of the premigration assessment from the replication configuration.

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

    The Amazon Resource Name (ARN) of this assessment run.

    *)
  2. failOnAssessmentFailure : Boolean.t option;
    (*

    A configurable setting you can set to true (the defualt setting) or false. Use this setting to to stop the replication from starting automatically if the assessment fails. This can help you evaluate the issue that is preventing the replication from running successfully.

    *)
  3. status : String_.t option;
    (*

    This describes the assessment run status. The status can be one of the following values: cancelling: The assessment run was canceled. deleting: The assessment run was deleted. failed: At least one individual assessment completed with a failed status. error-provisioning: An internal error occurred while resources were provisioned (during the provisioning status). error-executing An internal error occurred while individual assessments ran (during the running status). invalid state: The assessment run is in an unknown state. passed: All individual assessments have completed and none have a failed status. provisioning: The resources required to run individual assessments are being provisioned. running: Individual assessments are being run. starting: The assessment run is starting, but resources are not yet being provisioned for individual assessments. warning: At least one individual assessment completed with a warning status.

    *)
  4. premigrationAssessmentRunCreationDate : TStamp.t option;
    (*

    The date which the assessment run was created.

    *)
  5. assessmentProgress : ReplicationTaskAssessmentRunProgress.t option;
  6. lastFailureMessage : String_.t option;
    (*

    The last message generated by an individual assessment failure.

    *)
  7. resultLocationBucket : String_.t option;
    (*

    The Amazon S3 bucket that Database Migration Service Serverless created to store the results of this assessment run.

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

    The folder within an Amazon S3 bucket where you want Database Migration Service to store the results of this assessment run.

    *)
  9. resultEncryptionMode : String_.t option;
    (*

    The supported values are SSE_KMS and SSE_S3. If these values are not provided, then the files are not encrypted at rest. For more information, see Creating Amazon Web Services KMS keys to encrypt Amazon S3 target objects.

    *)
  10. resultKmsKeyArn : String_.t option;
    (*

    The ARN of a custom KMS encryption key that you specify when you set ResultEncryptionMode to SSE_KMS.

    *)
  11. resultStatistic : ReplicationTaskAssessmentRunResultStatistic.t option;
}
Sourceval make : ?premigrationAssessmentRunArn:??? -> ?failOnAssessmentFailure:??? -> ?status:??? -> ?premigrationAssessmentRunCreationDate:??? -> ?assessmentProgress:??? -> ?lastFailureMessage:??? -> ?resultLocationBucket:??? -> ?resultLocationFolder:??? -> ?resultEncryptionMode:??? -> ?resultKmsKeyArn:??? -> ?resultStatistic:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of String_.t | `Structure of (string * [> `Integer of Integer.t ]) list | `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