Module Values_1.DataSourceSummarySource

A DataSourceSummary object that returns a summary of a data source.

Sourcetype nonrec t = {
  1. arn : Values_0.Arn.t option;
    (*

    The arn of the datasource.

    *)
  2. dataSourceId : ResourceId.t option;
    (*

    The unique ID of the data source.

    *)
  3. name : ResourceName.t option;
    (*

    The name of the data source.

    *)
  4. type_ : DataSourceType.t option;
    (*

    The type of the data source.

    *)
  5. createdTime : Values_0.Timestamp.t option;
    (*

    The date and time that the data source was created. This value is expressed in MM-DD-YYYY HH:MM:SS format.

    *)
  6. lastUpdatedTime : Values_0.Timestamp.t option;
    (*

    The date and time the data source was last updated. This value is expressed in MM-DD-YYYY HH:MM:SS format.

    *)
}
Sourceval make : ?arn:??? -> ?dataSourceId:??? -> ?name:??? -> ?type_:??? -> ?createdTime:??? -> ?lastUpdatedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.Arn.t | `Timestamp of Values_0.Timestamp.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