Reject Predictions
| datazone_reject_predictions | R Documentation |
Rejects automatically generated business-friendly metadata for your Amazon DataZone assets¶
Description¶
Rejects automatically generated business-friendly metadata for your Amazon DataZone assets.
Usage¶
datazone_reject_predictions(domainIdentifier, identifier, revision,
rejectRule, rejectChoices, clientToken)
Arguments¶
domainIdentifier |
[required] The identifier of the Amazon DataZone domain. |
identifier |
[required] The identifier of the prediction. |
revision |
The revision that is to be made to the asset. |
rejectRule |
Specifies the rule (or the conditions) under which a prediction can be rejected. |
rejectChoices |
Specifies the prediction (aka, the automatically generated piece of metadata) and the target (for example, a column name) that can be rejected. |
clientToken |
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request. |
Value¶
A list with the following syntax:
list(
domainId = "string",
assetId = "string",
assetRevision = "string"
)
Request syntax¶
svc$reject_predictions(
domainIdentifier = "string",
identifier = "string",
revision = "string",
rejectRule = list(
rule = "ALL"|"NONE",
threshold = 123.0
),
rejectChoices = list(
list(
predictionTarget = "string",
predictionChoices = list(
123
)
)
),
clientToken = "string"
)