Module Values_2.MaterializedViewRefreshTaskRunSource

The object that shows the details of the materialized view refresh task run.

Sourcetype nonrec t = {
  1. customerId : Values_0.AccountId.t option;
    (*

    The Amazon Web Services account ID.

    *)
  2. materializedViewRefreshTaskRunId : UUIDv4.t option;
    (*

    The identifier of the materialized view refresh task run.

    *)
  3. databaseName : Values_0.DatabaseName.t option;
    (*

    The database where the table resides.

    *)
  4. tableName : Values_1.TableName.t option;
    (*

    The name of the table for which statistics is generated.

    *)
  5. catalogId : Values_0.CatalogIdString.t option;
    (*

    The ID of the Data Catalog where the table resides. If none is supplied, the account ID is used by default.

    *)
  6. role : Values_0.Role.t option;
    (*

    The IAM role that the service assumes to generate statistics.

    *)
  7. status : MaterializedViewRefreshState.t option;
    (*

    The status of the task run.

    *)
  8. creationTime : Values_0.Timestamp.t option;
    (*

    The time that this task was created.

    *)
  9. lastUpdated : Values_0.Timestamp.t option;
    (*

    The last point in time when this task was modified.

    *)
  10. startTime : Values_0.Timestamp.t option;
    (*

    The start time of the task.

    *)
  11. endTime : Values_0.Timestamp.t option;
    (*

    The end time of the task.

    *)
  12. errorMessage : Values_0.DescriptionString.t option;
    (*

    The error message for the job.

    *)
  13. dPUSeconds : Values_0.NonNegativeDouble.t option;
    (*

    The calculated DPU usage in seconds for all autoscaled workers.

    *)
  14. refreshType : MaterializedViewRefreshType.t option;
    (*

    The type of the refresh task run. Either FULL or INCREMENTAL.

    *)
  15. processedBytes : Values_0.ByteCount.t option;
    (*

    The number of bytes the refresh task run has scanned to refresh the materialized view.

    *)
}
Sourceval make : ?customerId:??? -> ?materializedViewRefreshTaskRunId:??? -> ?databaseName:??? -> ?tableName:??? -> ?catalogId:??? -> ?role:??? -> ?status:??? -> ?creationTime:??? -> ?lastUpdated:??? -> ?startTime:??? -> ?endTime:??? -> ?errorMessage:??? -> ?dPUSeconds:??? -> ?refreshType:??? -> ?processedBytes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Values_0.NonNegativeDouble.t | `Enum of string | `Long of Values_0.ByteCount.t | `String of Values_0.AccountId.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