Class: Aws::SageMaker::Types::CaptureContentTypeHeader
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::CaptureContentTypeHeader
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Configuration specifying how to treat different headers. If no headers are specified Amazon SageMaker AI will by default base64 encode when capturing the data.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #csv_content_types  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of all content type headers that Amazon SageMaker AI will treat as CSV and capture accordingly.
 - 
  
    
      #json_content_types  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of all content type headers that SageMaker AI will treat as JSON and capture accordingly.
 
Instance Attribute Details
#csv_content_types ⇒ Array<String>
The list of all content type headers that Amazon SageMaker AI will treat as CSV and capture accordingly.
      3536 3537 3538 3539 3540 3541  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 3536 class CaptureContentTypeHeader < Struct.new( :csv_content_types, :json_content_types) SENSITIVE = [] include Aws::Structure end  | 
  
#json_content_types ⇒ Array<String>
The list of all content type headers that SageMaker AI will treat as JSON and capture accordingly.
      3536 3537 3538 3539 3540 3541  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 3536 class CaptureContentTypeHeader < Struct.new( :csv_content_types, :json_content_types) SENSITIVE = [] include Aws::Structure end  |