Values.DescribeMetadataModelChildrenMessageSourceGets a list of child metadata models for the specified metadata model in the database hierarchy.
type nonrec t = {selectionRules : String_.t;The JSON string that specifies which metadata model's children to retrieve. Only one selection rule with "rule-action": "explicit" can be provided. For more information, see Selection Rules in the DMS User Guide.
*)migrationProjectIdentifier : MigrationProjectIdentifier.t;The migration project name or Amazon Resource Name (ARN).
*)origin : OriginTypeValue.t;Specifies whether to retrieve metadata from the source or target tree. Valid values: SOURCE | TARGET
*)marker : String_.t option;Specifies the unique pagination token that indicates where the next page should start. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
*)maxRecords : IntegerOptional.t option;The maximum number of metadata model children to include in the response. If more items exist than the specified MaxRecords value, a marker is included in the response so that the remaining results can be retrieved.
*)}val make :
?marker:??? ->
?maxRecords:??? ->
selectionRules:String_.t ->
migrationProjectIdentifier:MigrationProjectIdentifier.t ->
origin:OriginTypeValue.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of IntegerOptional.t
| `String of String_.t ])
list ]