Class: Aws::BedrockAgent::Types::Transformation
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::BedrockAgent::Types::Transformation
 
 
- Defined in:
 - gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb
 
Overview
A custom processing step for documents moving through a data source
ingestion pipeline. To process documents after they have been
converted into chunks, set the step to apply to POST_CHUNKING.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #step_to_apply  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
When the service applies the transformation.
 - 
  
    
      #transformation_function  ⇒ Types::TransformationFunction 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A Lambda function that processes documents.
 
Instance Attribute Details
#step_to_apply ⇒ String
When the service applies the transformation.
      10299 10300 10301 10302 10303 10304  | 
    
      # File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 10299 class Transformation < Struct.new( :transformation_function, :step_to_apply) SENSITIVE = [] include Aws::Structure end  | 
  
#transformation_function ⇒ Types::TransformationFunction
A Lambda function that processes documents.
      10299 10300 10301 10302 10303 10304  | 
    
      # File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 10299 class Transformation < Struct.new( :transformation_function, :step_to_apply) SENSITIVE = [] include Aws::Structure end  |