Class: Aws::Bedrock::Types::ListInferenceProfilesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::ListInferenceProfilesRequest
- Defined in:
- gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/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 thenextToken
field in the response in this field to return the next batch of results. -
#type_equals ⇒ String
Filters for inference profiles that match the type you specify.
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.
5967 5968 5969 5970 5971 5972 5973 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 5967 class ListInferenceProfilesRequest < Struct.new( :max_results, :next_token, :type_equals) 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.
5967 5968 5969 5970 5971 5972 5973 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 5967 class ListInferenceProfilesRequest < Struct.new( :max_results, :next_token, :type_equals) SENSITIVE = [] include Aws::Structure end |
#type_equals ⇒ String
Filters for inference profiles that match the type you specify.
SYSTEM_DEFINED
– The inference profile is defined by Amazon Bedrock. You can route inference requests across regions with these inference profiles.APPLICATION
– The inference profile was created by a user. This type of inference profile can track metrics and costs when invoking the model in it. The inference profile may route requests to one or multiple regions.
5967 5968 5969 5970 5971 5972 5973 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 5967 class ListInferenceProfilesRequest < Struct.new( :max_results, :next_token, :type_equals) SENSITIVE = [] include Aws::Structure end |