Module Values_1.ColumnStatisticsTaskRunSource

The object that shows the details of the column stats run.

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

    The Amazon Web Services account ID.

    *)
  2. columnStatisticsTaskRunId : Values_0.HashString.t option;
    (*

    The identifier for the particular column statistics task run.

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

    The database where the table resides.

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

    The name of the table for which column statistics is generated.

    *)
  5. columnNameList : ColumnNameList.t option;
    (*

    A list of the column names. If none is supplied, all column names for the table will be used by default.

    *)
  6. catalogID : Values_0.CatalogIdString.t option;
    (*

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

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

    The IAM role that the service assumes to generate statistics.

    *)
  8. sampleSize : SampleSizePercentage.t option;
    (*

    The percentage of rows used to generate statistics. If none is supplied, the entire table will be used to generate stats.

    *)
  9. securityConfiguration : Values_0.CrawlerSecurityConfiguration.t option;
    (*

    Name of the security configuration that is used to encrypt CloudWatch logs for the column stats task run.

    *)
  10. numberOfWorkers : PositiveInteger.t option;
    (*

    The number of workers used to generate column statistics. The job is preconfigured to autoscale up to 25 instances.

    *)
  11. workerType : Values_0.NameString.t option;
    (*

    The type of workers being used for generating stats. The default is g.1x.

    *)
  12. computationType : ComputationType.t option;
    (*

    The type of column statistics computation.

    *)
  13. status : ColumnStatisticsState.t option;
    (*

    The status of the task run.

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

    The time that this task was created.

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

    The last point in time when this task was modified.

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

    The start time of the task.

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

    The end time of the task.

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

    The error message for the job.

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

    The calculated DPU usage in seconds for all autoscaled workers.

    *)
}
Sourceval make : ?customerId:??? -> ?columnStatisticsTaskRunId:??? -> ?databaseName:??? -> ?tableName:??? -> ?columnNameList:??? -> ?catalogID:??? -> ?role:??? -> ?sampleSize:??? -> ?securityConfiguration:??? -> ?numberOfWorkers:??? -> ?workerType:??? -> ?computationType:??? -> ?status:??? -> ?creationTime:??? -> ?lastUpdated:??? -> ?startTime:??? -> ?endTime:??? -> ?errorMessage:??? -> ?dPUSeconds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of SampleSizePercentage.t | `Enum of string | `Integer of PositiveInteger.t | `List of [> `String of Values_0.NameString.t ] list | `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