Module Values.ConnectionSource

Status of the connection between an endpoint and a replication instance, including Amazon Resource Names (ARNs) and the last error message issued.

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

    The ARN of the replication instance.

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

    The ARN string that uniquely identifies the endpoint.

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

    The connection status. This parameter can return one of the following values: "successful" "testing" "failed" "deleting"

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

    The error message when the connection last failed.

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

    The identifier of the endpoint. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens.

    *)
  6. replicationInstanceIdentifier : String_.t option;
    (*

    The replication instance identifier. This parameter is stored as a lowercase string.

    *)
}
Sourceval make : ?replicationInstanceArn:??? -> ?endpointArn:??? -> ?status:??? -> ?lastFailureMessage:??? -> ?endpointIdentifier:??? -> ?replicationInstanceIdentifier:??? -> unit -> t
Sourceval to_value : t -> [> `Structure 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