Module Values.DescribeMetadataModelChildrenMessageSource

Gets a list of child metadata models for the specified metadata model in the database hierarchy.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. migrationProjectIdentifier : MigrationProjectIdentifier.t;
    (*

    The migration project name or Amazon Resource Name (ARN).

    *)
  3. origin : OriginTypeValue.t;
    (*

    Specifies whether to retrieve metadata from the source or target tree. Valid values: SOURCE | TARGET

    *)
  4. 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.

    *)
  5. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?marker:??? -> ?maxRecords:??? -> selectionRules:String_.t -> migrationProjectIdentifier:MigrationProjectIdentifier.t -> origin:OriginTypeValue.t -> 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