Class: Aws::Bedrock::Types::ListModelInvocationJobsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::ListModelInvocationJobsResponse
- Defined in:
- gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#invocation_job_summaries ⇒ Array<Types::ModelInvocationJobSummary>
A list of items, each of which contains a summary about a batch inference job.
-
#next_token ⇒ String
If there are more results than can fit in the response, a
nextToken
is returned.
Instance Attribute Details
#invocation_job_summaries ⇒ Array<Types::ModelInvocationJobSummary>
A list of items, each of which contains a summary about a batch inference job.
5198 5199 5200 5201 5202 5203 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 5198 class ListModelInvocationJobsResponse < Struct.new( :next_token, :invocation_job_summaries) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If there are more results than can fit in the response, a
nextToken
is returned. Use the nextToken
in a request to return
the next batch of results.
5198 5199 5200 5201 5202 5203 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 5198 class ListModelInvocationJobsResponse < Struct.new( :next_token, :invocation_job_summaries) SENSITIVE = [] include Aws::Structure end |