Module Values.DescribeApplicableIndividualAssessmentsMessageSource

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

    Amazon Resource Name (ARN) of a migration task on which you want to base the default list of individual assessments.

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

    ARN of a replication instance on which you want to base the default list of individual assessments.

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

    Amazon Resource Name (ARN) of a serverless replication on which you want to base the default list of individual assessments.

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

    Name of a database engine that the specified replication instance supports as a source.

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

    Name of a database engine that the specified replication instance supports as a target.

    *)
  6. migrationType : MigrationTypeValue.t option;
    (*

    Name of the migration type that each provided individual assessment must support.

    *)
  7. maxRecords : IntegerOptional.t option;
    (*

    Maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.

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

    Optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

    *)
}
Sourceval make : ?replicationTaskArn:??? -> ?replicationInstanceArn:??? -> ?replicationConfigArn:??? -> ?sourceEngineName:??? -> ?targetEngineName:??? -> ?migrationType:??? -> ?maxRecords:??? -> ?marker:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of IntegerOptional.t | `String of String_.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