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 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 will treat as CSV and capture accordingly.
-
#json_content_types ⇒ Array<String>
The list of all content type headers that SageMaker 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 will treat as CSV and capture accordingly.
3524 3525 3526 3527 3528 3529 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 3524 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 will treat as JSON and capture accordingly.
3524 3525 3526 3527 3528 3529 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 3524 class CaptureContentTypeHeader < Struct.new( :csv_content_types, :json_content_types) SENSITIVE = [] include Aws::Structure end |