Class: Aws::Personalize::Types::ListBatchInferenceJobsRequest

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 ListBatchInferenceJobsRequest data as a hash:

{
  solution_version_arn: "Arn",
  next_token: "NextToken",
  max_results: 1,
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The maximum number of batch inference job results to return in each page. The default value is 100.

Returns:

  • (Integer)


2831
2832
2833
2834
2835
2836
2837
# File 'lib/aws-sdk-personalize/types.rb', line 2831

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

#next_tokenString

The token to request the next page of results.

Returns:

  • (String)


2831
2832
2833
2834
2835
2836
2837
# File 'lib/aws-sdk-personalize/types.rb', line 2831

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

#solution_version_arnString

The Amazon Resource Name (ARN) of the solution version from which the batch inference jobs were created.

Returns:

  • (String)


2831
2832
2833
2834
2835
2836
2837
# File 'lib/aws-sdk-personalize/types.rb', line 2831

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