Module Values_1.InboundIntegrationSource

A structure for an integration that writes data into a resource.

Sourcetype nonrec t = {
  1. sourceArn : String512.t option;
    (*

    The ARN of the source resource for the integration.

    *)
  2. targetArn : String512.t option;
    (*

    The ARN of the target resource for the integration.

    *)
  3. integrationArn : String128.t option;
    (*

    The ARN of the zero-ETL integration.

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

    The possible statuses are: CREATING: The integration is being created. ACTIVE: The integration creation succeeds. MODIFYING: The integration is being modified. FAILED: The integration creation fails. DELETING: The integration is deleted. SYNCING: The integration is synchronizing. NEEDS_ATTENTION: The integration needs attention, such as synchronization.

    *)
  5. createTime : IntegrationTimestamp.t option;
    (*

    The time that the integration was created, in UTC.

    *)
  6. integrationConfig : IntegrationConfig.t option;
    (*

    Properties associated with the integration.

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

    A list of errors associated with the integration.

    *)
}
Sourceval make : ?sourceArn:??? -> ?targetArn:??? -> ?integrationArn:??? -> ?status:??? -> ?createTime:??? -> ?integrationConfig:??? -> ?errors:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of String128.t ]) list ] list | `String of String512.t | `Structure of (string * [> `Boolean of ContinuousSync.t | `Map of ([> `String of IntegrationString.t ] * [> `String of IntegrationString.t ]) list | `String of String128.t ]) list | `Timestamp of IntegrationTimestamp.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