Class: Aws::Connect::Types::ExtractionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::ExtractionConfiguration
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
The extraction configuration that defines how data is extracted from customer interactions.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#not_found_behavior ⇒ Types::ExtractionDefinitionNotFoundBehavior
The behavior when the extraction cannot find the specified data in the interaction.
-
#prompt_hint ⇒ String
The prompt hint that guides the extraction.
Instance Attribute Details
#not_found_behavior ⇒ Types::ExtractionDefinitionNotFoundBehavior
The behavior when the extraction cannot find the specified data in the interaction.
15596 15597 15598 15599 15600 15601 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 15596 class ExtractionConfiguration < Struct.new( :prompt_hint, :not_found_behavior) SENSITIVE = [] include Aws::Structure end |
#prompt_hint ⇒ String
The prompt hint that guides the extraction. This text tells the generative AI model what data to look for in the customer interaction.
15596 15597 15598 15599 15600 15601 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 15596 class ExtractionConfiguration < Struct.new( :prompt_hint, :not_found_behavior) SENSITIVE = [] include Aws::Structure end |