Skip to content

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

gluedatabrew_list_rulesets(TargetArn, MaxResults, NextToken)

Arguments

TargetArn

The Amazon Resource Name (ARN) of a resource (dataset). Using this parameter indicates to return only those rulesets that are associated with the specified resource.

MaxResults

The maximum number of results to return in this request.

NextToken

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

Request syntax

svc$list_rulesets(
  TargetArn = "string",
  MaxResults = 123,
  NextToken = "string"
)