Module Values.RefreshSchemasStatusSource

Provides information that describes status of a schema at an endpoint specified by the DescribeRefreshSchemaStatus operation.

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

    The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.

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

    The Amazon Resource Name (ARN) of the replication instance.

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

    The status of the schema.

    *)
  4. lastRefreshDate : TStamp.t option;
    (*

    The date the schema was last refreshed.

    *)
  5. lastFailureMessage : String_.t option;
    (*

    The last failure message for the schema.

    *)
}
Sourceval make : ?endpointArn:??? -> ?replicationInstanceArn:??? -> ?status:??? -> ?lastRefreshDate:??? -> ?lastFailureMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of TStamp.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