Class: Aws::Personalize::Types::ListSchemasRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#max_resultsInteger

The maximum number of schemas to return.

Returns:

  • (Integer)


3313
3314
3315
3316
3317
3318
# File 'lib/aws-sdk-personalize/types.rb', line 3313

class ListSchemasRequest < Struct.new(
  :next_token,
  :max_results)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

A token returned from the previous call to ‘ListSchemas` for getting the next set of schemas (if they exist).

Returns:

  • (String)


3313
3314
3315
3316
3317
3318
# File 'lib/aws-sdk-personalize/types.rb', line 3313

class ListSchemasRequest < Struct.new(
  :next_token,
  :max_results)
  SENSITIVE = []
  include Aws::Structure
end