Class: Aws::Personalize::Types::ListSchemasRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::ListSchemasRequest
- Defined in:
- gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb
Overview
Note:
When making an API call, you may pass ListSchemasRequest data as a hash:
{
next_token: "NextToken",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of schemas to return.
-
#next_token ⇒ String
A token returned from the previous call to
ListSchemas
for getting the next set of schemas (if they exist).
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of schemas to return.
4502 4503 4504 4505 4506 4507 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 4502 class ListSchemasRequest < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token returned from the previous call to ListSchemas
for getting
the next set of schemas (if they exist).
4502 4503 4504 4505 4506 4507 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 4502 class ListSchemasRequest < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |