Class: Aws::BedrockAgent::Types::ListPromptsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::ListPromptsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-bedrockagent/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results to return in the response.
-
#next_token ⇒ String
If the total number of results is greater than the ‘maxResults` value provided in the request, enter the token returned in the `nextToken` field in the response in this field to return the next batch of results.
-
#prompt_identifier ⇒ String
The unique identifier of the prompt for whose versions you want to return information.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the ‘nextToken` field when making another request to return the next batch of results.
7094 7095 7096 7097 7098 7099 7100 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 7094 class ListPromptsRequest < Struct.new( :prompt_identifier, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the total number of results is greater than the ‘maxResults` value provided in the request, enter the token returned in the `nextToken` field in the response in this field to return the next batch of results.
7094 7095 7096 7097 7098 7099 7100 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 7094 class ListPromptsRequest < Struct.new( :prompt_identifier, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#prompt_identifier ⇒ String
The unique identifier of the prompt for whose versions you want to return information. Omit this field to list information about all prompts in an account.
7094 7095 7096 7097 7098 7099 7100 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 7094 class ListPromptsRequest < Struct.new( :prompt_identifier, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |