Module Values.InboundIntegrationSource

The content of an inbound integration.

Sourcetype nonrec t = {
  1. integrationArn : InboundIntegrationArn.t option;
    (*

    The Amazon Resource Name (ARN) of an inbound integration.

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

    The Amazon Resource Name (ARN) of the source of an inbound integration.

    *)
  3. targetArn : TargetArn.t option;
    (*

    The Amazon Resource Name (ARN) of the target of an inbound integration.

    *)
  4. status : ZeroETLIntegrationStatus.t option;
    (*

    The status of an inbound integration.

    *)
  5. errors : IntegrationErrorList.t option;
    (*

    The outstanding errors of an inbound integration. Each item is an "IntegrationError". This is null if there is no error.

    *)
  6. createTime : TStamp.t option;
    (*

    The creation time of an inbound integration.

    *)
}
Sourceval make : ?integrationArn:??? -> ?sourceArn:??? -> ?targetArn:??? -> ?status:??? -> ?errors:??? -> ?createTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of InboundIntegrationArn.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