Interface CfnEndpointConfig.CaptureContentTypeHeaderProperty

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

@Stability(Stable) public static interface CfnEndpointConfig.CaptureContentTypeHeaderProperty extends software.amazon.jsii.JsiiSerializable
Specifies the JSON and CSV content types of the data that the endpoint captures.

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: