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 Amazon SageMaker AI 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnInferenceExperiment.CaptureContentTypeHeaderProperty
static final class
An implementation forCfnInferenceExperiment.CaptureContentTypeHeaderProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The list of all content type headers that Amazon SageMaker AI will treat as CSV and capture accordingly.The list of all content type headers that SageMaker AI will treat as JSON and capture accordingly.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCsvContentTypes
The list of all content type headers that Amazon SageMaker AI will treat as CSV and capture accordingly.- See Also:
-
getJsonContentTypes
The list of all content type headers that SageMaker AI will treat as JSON and capture accordingly.- See Also:
-
builder
-