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.
3531 3532 3533 3534 3535 3536 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 3531 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.
3531 3532 3533 3534 3535 3536 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 3531 class CaptureContentTypeHeader < Struct.new( :csv_content_types, :json_content_types) SENSITIVE = [] include Aws::Structure end |