Class: Aws::Bedrock::Types::CreateInferenceProfileRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::CreateInferenceProfileRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-bedrock/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:description]
Instance Attribute Summary collapse
-
#client_request_token ⇒ String
A unique, case-sensitive identifier to ensure that the API request completes no more than one time.
-
#description ⇒ String
A description for the inference profile.
-
#inference_profile_name ⇒ String
A name for the inference profile.
-
#model_source ⇒ Types::InferenceProfileModelSource
The foundation model or system-defined inference profile that the inference profile will track metrics and costs for.
-
#tags ⇒ Array<Types::Tag>
An array of objects, each of which contains a tag and its value.
Instance Attribute Details
#client_request_token ⇒ String
A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see [Ensuring idempotency].
**A suitable default value is auto-generated.** You should normally not need to pass this option.
[1]: docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
504 505 506 507 508 509 510 511 512 |
# File 'lib/aws-sdk-bedrock/types.rb', line 504 class CreateInferenceProfileRequest < Struct.new( :inference_profile_name, :description, :client_request_token, :model_source, :tags) SENSITIVE = [:description] include Aws::Structure end |
#description ⇒ String
A description for the inference profile.
504 505 506 507 508 509 510 511 512 |
# File 'lib/aws-sdk-bedrock/types.rb', line 504 class CreateInferenceProfileRequest < Struct.new( :inference_profile_name, :description, :client_request_token, :model_source, :tags) SENSITIVE = [:description] include Aws::Structure end |
#inference_profile_name ⇒ String
A name for the inference profile.
504 505 506 507 508 509 510 511 512 |
# File 'lib/aws-sdk-bedrock/types.rb', line 504 class CreateInferenceProfileRequest < Struct.new( :inference_profile_name, :description, :client_request_token, :model_source, :tags) SENSITIVE = [:description] include Aws::Structure end |
#model_source ⇒ Types::InferenceProfileModelSource
The foundation model or system-defined inference profile that the inference profile will track metrics and costs for.
504 505 506 507 508 509 510 511 512 |
# File 'lib/aws-sdk-bedrock/types.rb', line 504 class CreateInferenceProfileRequest < Struct.new( :inference_profile_name, :description, :client_request_token, :model_source, :tags) SENSITIVE = [:description] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
An array of objects, each of which contains a tag and its value. For more information, see [Tagging resources] in the [Amazon Bedrock User Guide].
[1]: docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html
504 505 506 507 508 509 510 511 512 |
# File 'lib/aws-sdk-bedrock/types.rb', line 504 class CreateInferenceProfileRequest < Struct.new( :inference_profile_name, :description, :client_request_token, :model_source, :tags) SENSITIVE = [:description] include Aws::Structure end |