Module Values.DescribeMetadataModelResponseSource

Gets detailed information about the specified metadata model, including its definition and corresponding converted objects in the target database if applicable.

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

    The name of the metadata model.

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

    The type of the metadata model.

    *)
  3. targetMetadataModels : MetadataModelReferenceList.t option;
    (*

    A list of counterpart metadata models in the target. This field is populated only when Origin is SOURCE and after the object has been converted by DMS Schema Conversion.

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

    The SQL text of the metadata model. This field might not be populated for some metadata models.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedFault of AccessDeniedFault.t
  2. | `ResourceNotFoundFault of ResourceNotFoundFault.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?metadataModelName:??? -> ?metadataModelType:??? -> ?targetMetadataModels:??? -> ?definition:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedFault of AccessDeniedFault.t | `ResourceNotFoundFault of ResourceNotFoundFault.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedFault of AccessDeniedFault.t | `ResourceNotFoundFault of ResourceNotFoundFault.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `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