data_quality_profile_annotations
Creates, updates, deletes, gets or lists a data_quality_profile_annotations resource.
Overview
| Name | data_quality_profile_annotations |
| Type | Resource |
| Id | aws.glue.data_quality_profile_annotations |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
put_data_quality_profile_annotation | replace | region, ProfileId, InclusionAnnotation | Annotate all datapoints for a Profile. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
REPLACE examples
- put_data_quality_profile_annotation
Annotate all datapoints for a Profile.
REPLACE aws.glue.data_quality_profile_annotations
SET
ProfileId = '{{ ProfileId }}',
InclusionAnnotation = '{{ InclusionAnnotation }}'
WHERE
region = '{{ region }}' --required
AND ProfileId = '{{ ProfileId }}' --required
AND InclusionAnnotation = '{{ InclusionAnnotation }}' --required;