Class: Aws::GlueDataBrew::Types::ListRulesetsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::ListRulesetsRequest
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass ListRulesetsRequest data as a hash:
{
target_arn: "Arn",
max_results: 1,
next_token: "NextToken",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results to return in this request.
-
#next_token ⇒ String
A token generated by DataBrew that specifies where to continue pagination if a previous request was truncated.
-
#target_arn ⇒ String
The Amazon Resource Name (ARN) of a resource (dataset).
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results to return in this request.
3446 3447 3448 3449 3450 3451 3452 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 3446 class ListRulesetsRequest < Struct.new( :target_arn, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
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.
3446 3447 3448 3449 3450 3451 3452 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 3446 class ListRulesetsRequest < Struct.new( :target_arn, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#target_arn ⇒ String
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.
3446 3447 3448 3449 3450 3451 3452 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 3446 class ListRulesetsRequest < Struct.new( :target_arn, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |