Skip to content

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

StatisticId

The Statistic ID.

ProfileId

The Profile ID.

TimestampFilter

A timestamp filter.

MaxResults

The maximum number of results to return in this request.

NextToken

A 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"
)

Request syntax

svc$list_data_quality_statistic_annotations(
  StatisticId = "string",
  ProfileId = "string",
  TimestampFilter = list(
    RecordedBefore = as.POSIXct(
      "2015-01-01"
    ),
    RecordedAfter = as.POSIXct(
      "2015-01-01"
    )
  ),
  MaxResults = 123,
  NextToken = "string"
)