Class: Aws::Bedrock::Types::InvocationLogsConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::InvocationLogsConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-bedrock/types.rb
Overview
Settings for using invocation logs to customize a model.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#invocation_log_source ⇒ Types::InvocationLogSource
The source of the invocation logs.
-
#request_metadata_filters ⇒ Types::RequestMetadataFilters
Rules for filtering invocation logs based on request metadata.
-
#use_prompt_response ⇒ Boolean
Whether to use the model’s response for training, or just the prompt.
Instance Attribute Details
#invocation_log_source ⇒ Types::InvocationLogSource
The source of the invocation logs.
4259 4260 4261 4262 4263 4264 4265 |
# File 'lib/aws-sdk-bedrock/types.rb', line 4259 class InvocationLogsConfig < Struct.new( :use_prompt_response, :invocation_log_source, :request_metadata_filters) SENSITIVE = [] include Aws::Structure end |
#request_metadata_filters ⇒ Types::RequestMetadataFilters
Rules for filtering invocation logs based on request metadata.
4259 4260 4261 4262 4263 4264 4265 |
# File 'lib/aws-sdk-bedrock/types.rb', line 4259 class InvocationLogsConfig < Struct.new( :use_prompt_response, :invocation_log_source, :request_metadata_filters) SENSITIVE = [] include Aws::Structure end |
#use_prompt_response ⇒ Boolean
Whether to use the model’s response for training, or just the prompt. The default value is ‘False`.
4259 4260 4261 4262 4263 4264 4265 |
# File 'lib/aws-sdk-bedrock/types.rb', line 4259 class InvocationLogsConfig < Struct.new( :use_prompt_response, :invocation_log_source, :request_metadata_filters) SENSITIVE = [] include Aws::Structure end |