List Rulesets
| gluedatabrew_list_rulesets | R Documentation |
List all rulesets available in the current account or rulesets associated with a specific resource (dataset)¶
Description¶
List all rulesets available in the current account or rulesets associated with a specific resource (dataset).
Usage¶
Arguments¶
TargetArnThe Amazon Resource Name (ARN) of a resource (dataset). Using this parameter indicates to return only those rulesets that are associated with the specified resource.
MaxResultsThe maximum number of results to return in this request.
NextTokenA token generated by DataBrew that specifies where to continue pagination if a previous request was truncated. To get the next set of pages, pass in the NextToken value from the response object of the previous page call.
Value¶
A list with the following syntax:
list(
Rulesets = list(
list(
AccountId = "string",
CreatedBy = "string",
CreateDate = as.POSIXct(
"2015-01-01"
),
Description = "string",
LastModifiedBy = "string",
LastModifiedDate = as.POSIXct(
"2015-01-01"
),
Name = "string",
ResourceArn = "string",
RuleCount = 123,
Tags = list(
"string"
),
TargetArn = "string"
)
),
NextToken = "string"
)