List Data Quality Statistic Annotations
| glue_list_data_quality_statistic_annotations | R Documentation |
Retrieve annotations for a data quality statistic¶
Description¶
Retrieve annotations for a data quality statistic.
Usage¶
glue_list_data_quality_statistic_annotations(StatisticId, ProfileId,
TimestampFilter, MaxResults, NextToken)
Arguments¶
StatisticIdThe Statistic ID.
ProfileIdThe Profile ID.
TimestampFilterA timestamp filter.
MaxResultsThe maximum number of results to return in this request.
NextTokenA pagination token to retrieve the next set of results.
Value¶
A list with the following syntax:
list(
Annotations = list(
list(
ProfileId = "string",
StatisticId = "string",
StatisticRecordedOn = as.POSIXct(
"2015-01-01"
),
InclusionAnnotation = list(
Value = "INCLUDE"|"EXCLUDE",
LastModifiedOn = as.POSIXct(
"2015-01-01"
)
)
)
),
NextToken = "string"
)