Interface CfnInferenceExperiment.CaptureContentTypeHeaderProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnInferenceExperiment.CaptureContentTypeHeaderProperty.Jsii$Proxy
Enclosing class:
CfnInferenceExperiment

@Stability(Stable) public static interface CfnInferenceExperiment.CaptureContentTypeHeaderProperty extends software.amazon.jsii.JsiiSerializable
Configuration specifying how to treat different headers.

If no headers are specified SageMaker will by default base64 encode when capturing the data.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.sagemaker.*;
 CaptureContentTypeHeaderProperty captureContentTypeHeaderProperty = CaptureContentTypeHeaderProperty.builder()
         .csvContentTypes(List.of("csvContentTypes"))
         .jsonContentTypes(List.of("jsonContentTypes"))
         .build();