Module Values.DescribeMetadataModelCreationsMessageSource

Returns a paginated list of metadata model creation requests for a migration project.

Sourcetype nonrec t = {
  1. filters : FilterList.t option;
    (*

    Filters applied to the metadata model creation requests described in the form of key-value pairs. The supported filters are request-id and status.

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

    Specifies the unique pagination token that makes it possible to display the next page of metadata model creation requests. If Marker is returned by a previous response, there are more metadata model creation requests available.

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

    The maximum number of metadata model creation requests to include in the response. If more requests exist than the specified MaxRecords value, a pagination token is provided in the response so that you can retrieve the remaining results.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?filters:??? -> ?marker:??? -> ?maxRecords:??? -> migrationProjectIdentifier:MigrationProjectIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of IntegerOptional.t | `List of [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.t ]) list ] list | `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