Module Values.RegistrationOutputSource

Describes the status of an attempt from Amazon AppFlow to register a resource. When you run a flow that you've configured to use a metadata catalog, Amazon AppFlow registers a metadata table and data partitions with that catalog. This operation provides the status of that registration attempt. The operation also indicates how many related resources Amazon AppFlow created or updated.

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

    Explains the status of the registration attempt from Amazon AppFlow. If the attempt fails, the message explains why.

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

    Indicates the number of resources that Amazon AppFlow created or updated. Possible resources include metadata tables and data partitions.

    *)
  3. status : ExecutionStatus.t option;
    (*

    Indicates the status of the registration attempt from Amazon AppFlow.

    *)
}
Sourceval make : ?message:??? -> ?result:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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