Class: Aws::SageMaker::Types::CaptureContentTypeHeader

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb

Overview

Configuration specifying how to treat different headers. If no headers are specified Amazon SageMaker will by default base64 encode when capturing the data.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#csv_content_typesArray<String>

The list of all content type headers that Amazon SageMaker will treat as CSV and capture accordingly.

Returns:

  • (Array<String>)


3304
3305
3306
3307
3308
3309
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3304

class CaptureContentTypeHeader < Struct.new(
  :csv_content_types,
  :json_content_types)
  SENSITIVE = []
  include Aws::Structure
end

#json_content_typesArray<String>

The list of all content type headers that SageMaker will treat as JSON and capture accordingly.

Returns:

  • (Array<String>)


3304
3305
3306
3307
3308
3309
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3304

class CaptureContentTypeHeader < Struct.new(
  :csv_content_types,
  :json_content_types)
  SENSITIVE = []
  include Aws::Structure
end