Values_1.CreateColumnStatisticsTaskSettingsRequestSourceCreates settings for a column statistics task.
type nonrec t = {databaseName : Values_0.NameString.t;The name of the database where the table resides.
*)tableName : Values_0.NameString.t;The name of the table for which to generate column statistics.
*)role : Values_0.NameString.t;The role used for running the column statistics.
*)schedule : Values_0.CronExpression.t option;A schedule for running the column statistics, specified in CRON syntax.
*)columnNameList : ColumnNameList.t option;A list of column names for which to run statistics.
*)sampleSize : SampleSizePercentage.t option;The percentage of data to sample.
*)catalogID : Values_0.NameString.t option;The ID of the Data Catalog in which the database resides.
*)securityConfiguration : Values_0.NameString.t option;Name of the security configuration that is used to encrypt CloudWatch logs.
*)}val make :
?schedule:??? ->
?columnNameList:??? ->
?sampleSize:??? ->
?catalogID:??? ->
?securityConfiguration:??? ->
?tags:??? ->
databaseName:Values_0.NameString.t ->
tableName:Values_0.NameString.t ->
role:Values_0.NameString.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Double of SampleSizePercentage.t
| `List of [> `String of Values_0.NameString.t ] list
| `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of Values_0.NameString.t ])
list ]