Module Values.S3TableIntegrationSourceSource

Represents a data source association with an S3 Table Integration, including its status and metadata.

Sourcetype nonrec t = {
  1. identifier : S3TableIntegrationSourceIdentifier.t option;
    (*

    The unique identifier for this data source association.

    *)
  2. dataSource : DataSource.t option;
    (*

    The data source associated with the S3 Table Integration.

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

    The current status of the data source association.

    *)
  4. statusReason : S3TableIntegrationSourceStatusReason.t option;
    (*

    Additional information about the status of the data source association.

    *)
  5. createdTimeStamp : Timestamp.t option;
    (*

    The timestamp when the data source association was created.

    *)
  6. parentSourceIdentifier : S3TableIntegrationSourceIdentifier.t option;
    (*

    The identifier of the parent data source for this association.

    *)
}
Sourceval make : ?identifier:??? -> ?dataSource:??? -> ?status:??? -> ?statusReason:??? -> ?createdTimeStamp:??? -> ?parentSourceIdentifier:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Timestamp.t | `String of S3TableIntegrationSourceIdentifier.t | `Structure of (string * [> `String of DataSourceName.t ]) list ]) 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